feat(sdk): Remove unused fairmq executable

This commit is contained in:
Dennis Klein 2021-06-11 11:52:59 +02:00 committed by Dennis Klein
parent 2ebf67d727
commit 09d2574105
2 changed files with 0 additions and 25 deletions

View File

@ -78,13 +78,6 @@ set_target_properties(${target} PROPERTIES
############### ###############
# executables # # executables #
############### ###############
add_executable(fairmq runFairMQ.cxx)
target_link_libraries(fairmq
PRIVATE
SDK
Boost::program_options
)
add_executable(fairmq-dds-command-ui ${CMAKE_CURRENT_SOURCE_DIR}/runDDSCommandUI.cxx) add_executable(fairmq-dds-command-ui ${CMAKE_CURRENT_SOURCE_DIR}/runDDSCommandUI.cxx)
target_link_libraries(fairmq-dds-command-ui target_link_libraries(fairmq-dds-command-ui
FairMQ FairMQ
@ -96,7 +89,6 @@ target_link_libraries(fairmq-dds-command-ui
install( install(
TARGETS TARGETS
SDK SDK
fairmq
fairmq-dds-command-ui fairmq-dds-command-ui
EXPORT ${PROJECT_EXPORT_SET} EXPORT ${PROJECT_EXPORT_SET}

View File

@ -1,17 +0,0 @@
/********************************************************************************
* Copyright (C) 2019 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" *
********************************************************************************/
#include <fairmq/States.h>
#include <iostream>
int main(int /*argc*/, char ** /*argv*/)
{
std::cout << fair::mq::State::Idle << std::endl;
return 0;
}