Blame view

tests/CMakeLists.txt 362 Bytes
86f177cf   Benjamin Renard   Lock system imple...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

PROJECT(testParallel)

include_directories(
  ${CMAKE_HOME_DIRECTORY}/src/INCLUDE/
)

#Configuration de l'exécutable
file(
        GLOB_RECURSE
        source_files
        ./*
)
  
ADD_EXECUTABLE (testParallel ${source_files} )

target_link_libraries(
  testParallel
  ${CMAKE_THREAD_LIBS_INIT}
  DD_Client
)

install (TARGETS testParallel DESTINATION tests)