-
Notifications
You must be signed in to change notification settings - Fork 80
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
47 lines (39 loc) · 1.15 KB
/
CMakeLists.txt
File metadata and controls
47 lines (39 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
GET_FILES(Examples_CPP Examples .cpp)
#TutorialApplication
add_executable(TutorialApplication)
target_include_directories(TutorialApplication
PRIVATE
.
${CMAKE_SOURCE_DIR}/quickfast/src)
target_sources(TutorialApplication
PRIVATE
${Examples_CPP}
TutorialApplication/main.cpp
TutorialApplication/TutorialApplication.cpp)
target_compile_definitions(TutorialApplication
PUBLIC
BOOST_BIND_GLOBAL_PLACEHOLDERS
ASIOSERVICE_FWD_H)
target_link_libraries(TutorialApplication
PUBLIC
QuickFAST)
#PerformanceTest
add_executable(PerformanceTest)
target_include_directories(PerformanceTest
PRIVATE
.
${CMAKE_SOURCE_DIR}/quickfast/src)
target_sources(PerformanceTest
PRIVATE
${Examples_CPP}
PerformanceTest/main.cpp
PerformanceTest/MessageCounter.cpp
PerformanceTest/NullMessage.cpp
PerformanceTest/PerformanceTest.cpp)
target_compile_definitions(PerformanceTest
PUBLIC
BOOST_BIND_GLOBAL_PLACEHOLDERS
ASIOSERVICE_FWD_H)
target_link_libraries(PerformanceTest
PUBLIC
QuickFAST)