mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-05-01 18:30:05 +02:00

* eiger: moved rate correction outside, fixed threshold energy bug in client (binaries not updated yet) * removed dr and deadtiem from shm * help for rx_status and status to point them to rx_Start, rx_stop, start and stop * moved progress to receiver * removed currentsettings from eiger shm * updated server binaries, and client api * moench and ctb virtual servers compile fix * gui: moved acquire to a concurrent qt thread so it doesnt block updateplot
44 lines
1.3 KiB
CMake
44 lines
1.3 KiB
CMake
add_executable(moenchDetectorServer_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/communication_funcs_UDP.c
|
|
../slsDetectorServer/src/UDPPacketHeaderGenerator.c
|
|
../slsDetectorServer/src/AD9257.c
|
|
../slsDetectorServer/src/ALTERA_PLL.c
|
|
../slsDetectorServer/src/LTC2620.c
|
|
../slsDetectorServer/src/MAX1932.c
|
|
../slsDetectorServer/src/programFpgaBlackfin.c
|
|
../slsDetectorServer/src/readDefaultPattern.c
|
|
)
|
|
|
|
include_directories(
|
|
../slsDetectorServer/include
|
|
../../slsSupportLib/include
|
|
)
|
|
|
|
target_include_directories(moenchDetectorServer_virtual
|
|
PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}
|
|
)
|
|
|
|
target_compile_definitions(moenchDetectorServer_virtual
|
|
PUBLIC MOENCHD VIRTUAL STOP_SERVER
|
|
)
|
|
|
|
target_link_libraries(moenchDetectorServer_virtual
|
|
PUBLIC pthread rt slsProjectCWarnings
|
|
m
|
|
)
|
|
|
|
set_target_properties(moenchDetectorServer_virtual PROPERTIES
|
|
RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin
|
|
)
|
|
|
|
install(TARGETS moenchDetectorServer_virtual
|
|
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
|
|
)
|