git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@2507 331e1502-861f-0410-8da2-ba01fb791d7f
This commit is contained in:
parent
3f02e1b533
commit
844b41cb88
8 changed files with 1554 additions and 0 deletions
49
trunk/paradiseo-gpu/tutorial/OneMax/CMakeLists.txt
Normal file
49
trunk/paradiseo-gpu/tutorial/OneMax/CMakeLists.txt
Normal file
|
|
@ -0,0 +1,49 @@
|
|||
######################################################################################
|
||||
### 1) Include the sources
|
||||
######################################################################################
|
||||
|
||||
INCLUDE_DIRECTORIES(
|
||||
|
||||
# include CUDA source directory
|
||||
${CUDA_SRC_DIR}
|
||||
# include EO source directory
|
||||
${PARADISEO_EO_SRC_DIR}/src
|
||||
# include MO source directory
|
||||
${PARADISEO_MO_SRC_DIR}/src
|
||||
# include problems directory
|
||||
${PARADISEO_PROBLEMS_SRC_DIR}
|
||||
# include GPU directory
|
||||
${PARADISEO_GPU_SRC_DIR}
|
||||
# include your source directory
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/../src
|
||||
)
|
||||
|
||||
######################################################################################
|
||||
|
||||
######################################################################################
|
||||
### 2) Specify where CMake can find the libraries
|
||||
######################################################################################
|
||||
|
||||
LINK_DIRECTORIES(${PARADISEO_EO_BIN_DIR}/lib ${CUDA_LIB_DIR} )
|
||||
|
||||
######################################################################################
|
||||
|
||||
######################################################################################
|
||||
### 3) Define your targets and link the librairies
|
||||
######################################################################################
|
||||
|
||||
CUDA_ADD_EXECUTABLE(GPUtestFirstImpr testFirstImpr.cu)
|
||||
CUDA_ADD_EXECUTABLE(GPUtestNeutralHC testNeutralHC.cu)
|
||||
CUDA_ADD_EXECUTABLE(GPUtestSimpleHC testSimpleHC.cu)
|
||||
CUDA_ADD_EXECUTABLE(GPUtestSimpleHCByCpy testSimpleHCByCpy.cu)
|
||||
CUDA_ADD_EXECUTABLE(GPUtestSimpleTS testSimpleTS.cu)
|
||||
CUDA_ADD_EXECUTABLE(GPUtestSimulatedAnnealing testSimulatedAnnealing.cu)
|
||||
|
||||
TARGET_LINK_LIBRARIES(GPUtestFirstImpr eoutils ga eo)
|
||||
TARGET_LINK_LIBRARIES(GPUtestNeutralHC eoutils ga eo)
|
||||
TARGET_LINK_LIBRARIES(GPUtestSimpleHC eoutils ga eo)
|
||||
TARGET_LINK_LIBRARIES(GPUtestSimpleHCByCpy eoutils ga eo)
|
||||
TARGET_LINK_LIBRARIES(GPUtestSimpleTS eoutils ga eo)
|
||||
TARGET_LINK_LIBRARIES(GPUtestSimulatedAnnealing eoutils ga eo)
|
||||
|
||||
######################################################################################
|
||||
Loading…
Add table
Add a link
Reference in a new issue