-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
37 lines (21 loc) · 1.05 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
# This is a skeleton CMakeLists.txt file, auto-generated on
# Tue Apr 4 16:54:15 BST 2023. The developer(s) of this package should delete
# this comment as well as adding dependent targets, packages,
# etc. specific to the package. For details on how to write a package,
# please see
# https://dune-daq-sw.readthedocs.io/en/latest/packages/daq-cmake/
cmake_minimum_required(VERSION 3.12)
project(coremanager VERSION 0.0.0)
find_package(daq-cmake REQUIRED)
daq_setup_environment()
find_package(Boost COMPONENTS unit_test_framework REQUIRED)
find_package(ers REQUIRED)
find_package(logging REQUIRED)
find_package(dunedaqdal REQUIRED)
##############################################################################
daq_add_library(CoreManager.cpp LINK_LIBRARIES ers::ers logging::logging
dunedaqdal::dunedaqdal)
##############################################################################
daq_add_unit_test(CoreManager_test LINK_LIBRARIES coremanager ers::ers)
##############################################################################
daq_install()