-
-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
38 lines (30 loc) · 656 Bytes
/
CMakeLists.txt
File metadata and controls
38 lines (30 loc) · 656 Bytes
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
set(TARGET MethaneDataRangeSet)
include(MethaneModules)
get_module_dirs("Methane/Data")
set(SOURCES
${INCLUDE_DIR}/Range.hpp
${INCLUDE_DIR}/RangeUtils.hpp
${INCLUDE_DIR}/RangeSet.hpp
${SOURCES_DIR}/RangeSet.cpp
)
add_library(${TARGET} STATIC
${SOURCES}
)
target_include_directories(${TARGET}
PRIVATE
Sources
PUBLIC
Include
)
target_link_libraries(${TARGET}
PUBLIC
MethanePrimitives
MethaneInstrumentation
PRIVATE
MethaneBuildOptions
)
set_target_properties(${TARGET}
PROPERTIES
FOLDER Modules/Data
)
source_group(TREE ${CMAKE_CURRENT_SOURCE_DIR} FILES ${SOURCES})