forked from DUNE-DAQ/detdataformats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
31 lines (20 loc) · 993 Bytes
/
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
cmake_minimum_required(VERSION 3.12)
project(detdataformats VERSION 3.3.0)
find_package(daq-cmake REQUIRED)
find_package(Boost COMPONENTS unit_test_framework REQUIRED)
daq_setup_environment()
##############################################################################
# Main library
daq_add_library(LINK_LIBRARIES)
##############################################################################
daq_add_python_bindings(*.cpp LINK_LIBRARIES ${PROJECT_NAME})
##############################################################################
# Plugins
##############################################################################
# Integration tests
##############################################################################
# Unit Tests
daq_add_unit_test(WIBFrame_test LINK_LIBRARIES detdataformats)
daq_add_unit_test(WIB2Frame_test LINK_LIBRARIES detdataformats)
##############################################################################
daq_install()