mirror of
https://github.com/FairRootGroup/FairMQ.git
synced 2025-10-15 09:31:45 +00:00
feat(examples): Add new example with custom controller plugin (statically compiled in)
This commit is contained in:
committed by
Alexey Rybalchenko
parent
4587af2eb4
commit
faa309556f
20
examples/custom-controller/CMakeLists.txt
Normal file
20
examples/custom-controller/CMakeLists.txt
Normal file
@@ -0,0 +1,20 @@
|
||||
################################################################################
|
||||
# Copyright (C) 2022 GSI Helmholtzzentrum fuer Schwerionenforschung GmbH #
|
||||
# #
|
||||
# This software is distributed under the terms of the #
|
||||
# GNU Lesser General Public Licence (LGPL) version 3, #
|
||||
# copied verbatim in the file "LICENSE" #
|
||||
################################################################################
|
||||
|
||||
set(target fairmq-ex-custom-controller)
|
||||
add_executable(${target} main.cxx)
|
||||
target_link_libraries(${target} PRIVATE FairMQ)
|
||||
set_target_properties(${target} PROPERTIES
|
||||
CXX_VISIBILITY_PRESET hidden
|
||||
ENABLE_EXPORTS ON
|
||||
)
|
||||
|
||||
set(test Example.custom-controller)
|
||||
add_test(NAME ${test} COMMAND ${CMAKE_CURRENT_BINARY_DIR}/${target})
|
||||
set_tests_properties(${test} PROPERTIES TIMEOUT 30)
|
||||
|
Reference in New Issue
Block a user