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
30 lines (25 loc) · 800 Bytes
/
CMakeLists.txt
File metadata and controls
30 lines (25 loc) · 800 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
o2_add_library(
DCStestWorkflow
SOURCES src/DCSRandomDataGeneratorSpec.cxx
src/DCSDataReplaySpec.cxx
PUBLIC_LINK_LIBRARIES O2::DetectorsDCS O2::Framework)
o2_add_executable(
proxy
COMPONENT_NAME dcs
SOURCES src/dcs-proxy.cxx
PUBLIC_LINK_LIBRARIES O2::DCStestWorkflow)
o2_add_executable(
data-client
COMPONENT_NAME dcs
SOURCES src/dcs-data-client-workflow.cxx
PUBLIC_LINK_LIBRARIES O2::DCStestWorkflow)
o2_add_executable(
config-proxy
COMPONENT_NAME dcs
SOURCES src/dcs-config-proxy.cxx
PUBLIC_LINK_LIBRARIES O2::Framework O2::DetectorsCommonDataFormats O2::CommonUtils)
o2_add_executable(
config-consumer-test-workflow
COMPONENT_NAME dcs
SOURCES src/dcs-config-test-workflow.cxx
PUBLIC_LINK_LIBRARIES O2::Framework O2::DetectorsCommonDataFormats)