mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2026-01-21 05:16:43 +01:00
- fix acquire fail in tests (adcreg test) - roi tests fail after overlapping invalid test and acquire after - print udp dest mac in server properly - fixed udp dst list get (server was not sending entry proper size to match proper struct size in client) - updated server binaries and updated hard links in serverBin - added documentation regarding gui: zmqport and zmqip in terms of gui, rx_zmqstream - removed print - probably ended there for debuggung --------- Co-authored-by: Alice <alice.mazzoleni@psi.ch>
50 lines
1.8 KiB
CMake
50 lines
1.8 KiB
CMake
# SPDX-License-Identifier: LGPL-3.0-or-other
|
|
# Copyright (C) 2021 Contributors to the SLS Detector Package
|
|
add_executable(jungfrauDetectorServer_virtual
|
|
slsDetectorFunctionList.c
|
|
../slsDetectorServer/src/slsDetectorServer.c
|
|
../slsDetectorServer/src/slsDetectorServer_funcs.c
|
|
../slsDetectorServer/src/communication_funcs.c
|
|
../slsDetectorServer/src/blackfin.c
|
|
../slsDetectorServer/src/common.c
|
|
../slsDetectorServer/src/commonServerFunctions.c
|
|
../slsDetectorServer/src/AD9257.c
|
|
../slsDetectorServer/src/ALTERA_PLL.c
|
|
../slsDetectorServer/src/LTC2620.c
|
|
../slsDetectorServer/src/MAX1932.c
|
|
../slsDetectorServer/src/programViaBlackfin.c
|
|
../slsDetectorServer/src/communication_funcs_UDP.c
|
|
../slsDetectorServer/src/sharedMemory.c
|
|
../../slsSupportLib/src/md5.c
|
|
)
|
|
|
|
target_include_directories(jungfrauDetectorServer_virtual
|
|
PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}
|
|
../slsDetectorServer/include
|
|
../../slsSupportLib/include
|
|
)
|
|
|
|
target_compile_definitions(jungfrauDetectorServer_virtual
|
|
PUBLIC JUNGFRAUD VIRTUAL STOP_SERVER #TEST_MOD_GEOMETRY
|
|
)
|
|
|
|
target_link_libraries(jungfrauDetectorServer_virtual
|
|
PUBLIC pthread rt slsProjectCSettings
|
|
)
|
|
|
|
set_target_properties(jungfrauDetectorServer_virtual PROPERTIES
|
|
RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin
|
|
)
|
|
|
|
# to compile fore 32 bit on a 64 bit machine
|
|
#target_compile_options(jungfrauDetectorServer_virtual PRIVATE -m32)
|
|
#target_link_options(jungfrauDetectorServer_virtual PRIVATE -m32)
|
|
|
|
install(TARGETS jungfrauDetectorServer_virtual
|
|
EXPORT "${TARGETS_EXPORT_NAME}"
|
|
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
|
|
)
|
|
|
|
configure_file(config_jungfrau.txt ${CMAKE_BINARY_DIR}/bin/config_jungfrau.txt COPYONLY)
|
|
configure_file(detid_jungfrau.txt ${CMAKE_BINARY_DIR}/bin/detid_jungfrau.txt COPYONLY)
|