This repository has been archived by the owner on Apr 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
CMakeLists.txt
69 lines (64 loc) · 2.9 KB
/
CMakeLists.txt
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#####################################################################################
# (c) Copyright 1998-2019 CERN for the benefit of the LHCb and ATLAS collaborations #
# #
# This software is distributed under the terms of the Apache version 2 licence, #
# copied verbatim in the file "LICENSE". #
# #
# In applying this licence, CERN does not waive the privileges and immunities #
# granted to it by virtue of its status as an Intergovernmental Organization #
# or submit itself to any jurisdiction. #
#####################################################################################
# GaudiHive subdirectory
# Register the header only library (install include/)
#gaudi_add_header_only_library(GaudiHiveHeaders)
# Build the plugin
gaudi_add_module(DCMTSim
SOURCES src/DCMTSimAlg.cpp
src/HiveReadPodioAlg.cpp
src/HiveTestAlg.cpp
src/ReadPodioAlg.cpp
src/functional/DataMaker.cpp
src/functional/DataMakerEDM.cpp
#src/functional/DataMaker_v1.cpp
src/functional/DataConsumer.cpp
src/functional/DataConsumerVec.cpp
src/functional/DataConsumerEDM.cpp
src/functional/MakerIons.cpp
src/functional/SimWF.cpp
src/functional/MergeWF.cpp
LINK Gaudi::GaudiAlgLib
Gaudi::GaudiKernel
k4FWCore::k4FWCore
EDM4HEP::edm4hep
EDM4HEP::edm4hepDict
${podio_LIBRARIES} podio::podioRootIO
Boost::headers
Boost::system
Boost::filesystem
Boost::graph
ROOT::Hist
ROOT::RIO
TBB::tbb
Rangev3::rangev3
${rt_LIBRARY})
install(TARGETS DCMTSim
EXPORT CEPCSWTargets
RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}" COMPONENT bin
LIBRARY DESTINATION "${CMAKE_INSTALL_LIBDIR}" COMPONENT shlib
COMPONENT dev)
## Build executable
#gaudi_add_executable(makeThesis
# SOURCES src/bin/makeThesis.cpp)
#gaudi_add_executable(concurrentRun
# SOURCES src/bin/concurrentRun.cpp
# LINK GaudiKernel
# Boost::headers
# Boost::program_options)
#
## QMTest
#gaudi_add_tests(QMTest)
#
## Install python modules
#gaudi_install(PYTHON)
## Install other scripts
#gaudi_install(SCRIPTS)