forked from AliceO2Group/AliceO2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
39 lines (32 loc) · 829 Bytes
/
Copy pathCMakeLists.txt
File metadata and controls
39 lines (32 loc) · 829 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
39
set(MODULE_NAME "CommonUtils")
O2_SETUP(NAME ${MODULE_NAME})
set(SRCS
src/TreeStream.cxx
src/TreeStreamRedirector.cxx
src/RootChain.cxx
src/CompStream.cxx
src/ShmManager.cxx
)
Set(HEADERS
include/${MODULE_NAME}/TreeStream.h
include/${MODULE_NAME}/TreeStreamRedirector.h
include/${MODULE_NAME}/RootChain.h
include/${MODULE_NAME}/BoostSerializer.h
include/${MODULE_NAME}/ShmManager.h
include/${MODULE_NAME}/RngHelper.h
include/${MODULE_NAME}/StringUtils.h
)
Set(LINKDEF src/CommonUtilsLinkDef.h)
Set(LIBRARY_NAME ${MODULE_NAME})
set(BUCKET_NAME common_utils_bucket)
O2_GENERATE_LIBRARY()
set(TEST_SRCS
test/testTreeStream.cxx
test/testBoostSerializer.cxx
test/testCompStream.cxx
)
O2_GENERATE_TESTS(
MODULE_LIBRARY_NAME ${LIBRARY_NAME}
BUCKET_NAME ${BUCKET_NAME}
TEST_SRCS ${TEST_SRCS}
)