git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@2458 331e1502-861f-0410-8da2-ba01fb791d7f
This commit is contained in:
boufaras 2011-09-29 14:42:49 +00:00
commit 51e7af7807

View file

@ -1,10 +1,3 @@
###############################################################################
##
## CMakeLists file for OneMax Example/test
##
###############################################################################
###################################################################################### ######################################################################################
### 1) Include the sources ### 1) Include the sources
###################################################################################### ######################################################################################
@ -13,8 +6,6 @@ INCLUDE_DIRECTORIES(
# include CUDA source directory # include CUDA source directory
${CUDA_SRC_DIR} ${CUDA_SRC_DIR}
# include NVIDIA source directory
${NVIDIA_SRC_DIR}
# include EO source directory # include EO source directory
${PARADISEO_EO_SRC_DIR}/src ${PARADISEO_EO_SRC_DIR}/src
# include MO source directory # include MO source directory
@ -31,7 +22,7 @@ INCLUDE_DIRECTORIES(
### 2) Specify where CMake can find the libraries ### 2) Specify where CMake can find the libraries
###################################################################################### ######################################################################################
LINK_DIRECTORIES(${PARADISEO_EO_BIN_DIR}/lib ${NVIDIA_LIB_DIR} ${CUDA_LIB_DIR} ) LINK_DIRECTORIES(${PARADISEO_EO_BIN_DIR}/lib ${CUDA_LIB_DIR} )
###################################################################################### ######################################################################################
@ -70,7 +61,7 @@ IF(ENABLE_CMAKE_TESTING)
# Link the librairies # Link the librairies
FOREACH (test ${TEST_LIST}) FOREACH (test ${TEST_LIST})
TARGET_LINK_LIBRARIES(${test} ga es eoutils eo ${cutil}) TARGET_LINK_LIBRARIES(${test} ga es eoutils eo)
ENDFOREACH (test) ENDFOREACH (test)
ENDIF(ENABLE_CMAKE_TESTING) ENDIF(ENABLE_CMAKE_TESTING)