fixed process make file

This commit is contained in:
2019-11-07 13:28:03 +01:00
parent 142b184e62
commit 02a36a148f
5 changed files with 20 additions and 20 deletions

View File

@ -65,7 +65,6 @@ target_link_libraries(sls_detector_process
)
set_target_properties(sls_detector_process PROPERTIES
RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin
COMPILE_DEFINITIONS READOUT=1
COMPILE_DEFINITIONS PROCESS=1
)

View File

@ -19,27 +19,27 @@ int main(int argc, char *argv[])
return 0;
}
}
int action=slsDetectorDefs::HELP_ACTION;
#ifdef PUT
int action=slsDetectorDefs::PUT_ACTION;
action=slsDetectorDefs::PUT_ACTION;
#endif
#ifdef GET
int action=slsDetectorDefs::GET_ACTION;
action=slsDetectorDefs::GET_ACTION;
#endif
#ifdef READOUT
int action=slsDetectorDefs::READOUT_ACTION;
action=slsDetectorDefs::READOUT_ACTION;
#endif
#ifdef PROCESS
int action=slsDetectorDefs::PROCESS_ACTION;
action=slsDetectorDefs::PROCESS_ACTION;
#endif
#ifdef HELP
int action=slsDetectorDefs::HELP_ACTION;
action=slsDetectorDefs::HELP_ACTION;
#endif
multiSlsDetectorClient *cl;