openEMS/nf2ff/CMakeLists.txt

36 lines
603 B
CMake
Raw Normal View History

2014-09-18 19:12:50 +00:00
# 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()
2014-09-18 19:12:50 +00:00
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}
2014-09-18 19:12:50 +00:00
${Boost_LIBRARIES}
)
INSTALL(TARGETS nf2ff DESTINATION bin)
#TODO tarball, debug, release