openEMS/nf2ff/CMakeLists.txt
Thorsten Liebig dae788a2a4 cmake: cleanup, build type for nf2ff
Signed-off-by: Thorsten Liebig <Thorsten.Liebig@gmx.de>
2014-10-09 21:06:36 +02:00

36 lines
603 B
CMake

# define build type
IF( DEFINED CMAKE_BUILD_TYPE )
SET( CMAKE_BUILD_TYPE ${CMAKE_BUILD_TYPE} CACHE STRING "Set to either \"Release\" or \"Debug\"" )
ELSE()
SET( CMAKE_BUILD_TYPE Release CACHE STRING "Set to either \"Release\" or \"Debug\"" )
ENDIF()
PROJECT(nf2ff CXX)
cmake_minimum_required(VERSION 2.8)
set(SOURCES
main.cpp
nf2ff.cpp
nf2ff_calc.cpp
)
set(HEADERS
nf2ff.h
nf2ff_calc.h
)
ADD_EXECUTABLE( nf2ff ${SOURCES} )
TARGET_LINK_LIBRARIES( nf2ff
tools
tinyxml
${HDF5_LIBRARIES}
${Boost_LIBRARIES}
)
INSTALL(TARGETS nf2ff DESTINATION bin)
#TODO tarball, debug, release