paradiseo/test/CMakeLists.txt
Caner Candan 45a9cb88e0 + test
2010-07-05 20:39:41 +02:00

35 lines
1.3 KiB
CMake

###############################################################################
##
## CMakeLists file for unit test
##
###############################################################################
######################################################################################
### 1) Include the sources
######################################################################################
######################################################################################
######################################################################################
### 2) Specify where CMake can find the libraries
######################################################################################
######################################################################################
######################################################################################
### 3) Define your targets and link the librairies
######################################################################################
SET(SOURCES
)
FOREACH(current ${SOURCES})
ADD_EXECUTABLE(${current} ${current}.cpp)
TARGET_LINK_LIBRARIES(${current} ${PROJECT_NAME} ${EO_LIBRARIES})
ADD_CURRENT(${current} ${current})
ENDFOREACH()
######################################################################################