Blame view

tests/CMakeLists.txt 357 Bytes
86f177cf   Benjamin Renard   Lock system imple...
1
2
3
4

PROJECT(testParallel)

include_directories(
bab9407b   Benjamin Renard   DDClient is now a...
5
  ${DDCLIENTINCLUDE_DIR}
86f177cf   Benjamin Renard   Lock system imple...
6
7
8
9
10
11
12
13
14
15
16
17
18
19
)

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

target_link_libraries(
  testParallel
  ${CMAKE_THREAD_LIBS_INIT}
bab9407b   Benjamin Renard   DDClient is now a...
20
  ${DDCLIENTLIBRARY}
86f177cf   Benjamin Renard   Lock system imple...
21
22
23
)

install (TARGETS testParallel DESTINATION tests)