FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
cpp.react/CMakeLists.txt at master · jchjava/cpp.react · GitHub
jchjava
/
cpp.react
Public
forked from
snakster/cpp.react
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
cpp.react
/
CMakeLists.txt
Copy path
More file actions
More file actions
Latest commit
History
History
History
40 lines (31 loc) · 953 Bytes
Breadcrumbs
cpp.react
/
CMakeLists.txt
Copy path
File metadata and controls
40 lines (31 loc) · 953 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
#
## Configuration
cmake_minimum_required
(
VERSION
2.6
)
project
(CppReact)
set
(
CMAKE_ARCHIVE_OUTPUT_DIRECTORY
${
CMAKE_BINARY_DIR
}
/lib)
set
(
CMAKE_LIBRARY_OUTPUT_DIRECTORY
${
CMAKE_BINARY_DIR
}
/lib)
set
(
CMAKE_RUNTIME_OUTPUT_DIRECTORY
${
CMAKE_BINARY_DIR
}
/bin)
set
(
CMAKE_CXX_FLAGS
"
${
CMAKE_CXX_FLAGS
}
-std=c++11 -Wall -Wpedantic"
)
include_directories
(
"
${
PROJECT_SOURCE_DIR
}
/include"
)
#
## CppReact
add_library
(
CppReact
src/engine/PulsecountEngine.cpp
src/engine/SubtreeEngine.cpp
src/engine/ToposortEngine.cpp
src/logging/EventLog.cpp
src/logging/EventRecords.cpp
)
target_link_libraries
(
CppReact
tbb
)
#
## examples/
option
(
build_examples
"Build examples?"
ON
)
if
(build_examples)
add_subdirectory
(
examples
)
endif
()
#
## benchmarks/
option
(
build_benchmarks
"Build benchmarks?"
OFF
)
if
(build_benchmarks)
add_subdirectory
(
benchmarks
)
endif
()
#
## tests/
option
(
build_tests
"Build unit tests?"
OFF
)
if
(build_tests)
add_subdirectory
(
tests
)
endif
()
Back
|
FazBrowse Home
|
New Git URL