fairmq-uuid-gen: Move to tools directory

This commit is contained in:
Dennis Klein
2021-03-24 13:35:21 +01:00
parent d031b9e8ec
commit 58b440f9f5
3 changed files with 11 additions and 5 deletions

View File

@@ -62,6 +62,7 @@ if(BUILD_FAIRMQ OR BUILD_SDK)
target_link_libraries(${target} target_link_libraries(${target}
PRIVATE PRIVATE
FairLogger::FairLogger FairLogger::FairLogger
Threads::Threads
PUBLIC PUBLIC
Boost::boost Boost::boost
) )
@@ -385,8 +386,11 @@ if(BUILD_FAIRMQ)
$<BUILD_INTERFACE:${CMAKE_SOURCE_DIR}> $<BUILD_INTERFACE:${CMAKE_SOURCE_DIR}>
) )
add_executable(fairmq-uuid-gen run/runUuidGenerator.cxx) add_executable(fairmq-uuid-gen tools/runUuidGenerator.cxx)
target_link_libraries(fairmq-uuid-gen FairMQ) target_link_libraries(fairmq-uuid-gen PUBLIC
Boost::program_options
Tools
)
########### ###########

View File

@@ -1,5 +1,5 @@
/******************************************************************************** /********************************************************************************
* Copyright (C) 2014-2018 GSI Helmholtzzentrum fuer Schwerionenforschung GmbH * * Copyright (C) 2014-2021 GSI Helmholtzzentrum fuer Schwerionenforschung GmbH *
* * * *
* This software is distributed under the terms of the * * This software is distributed under the terms of the *
* GNU Lesser General Public Licence (LGPL) version 3, * * GNU Lesser General Public Licence (LGPL) version 3, *
@@ -9,8 +9,9 @@
#ifndef FAIRMQPOLLER_H_ #ifndef FAIRMQPOLLER_H_
#define FAIRMQPOLLER_H_ #define FAIRMQPOLLER_H_
#include <string>
#include <memory> #include <memory>
#include <stdexcept>
#include <string>
class FairMQPoller class FairMQPoller
{ {

View File

@@ -1,10 +1,11 @@
/******************************************************************************** /********************************************************************************
* Copyright (C) 2014 GSI Helmholtzzentrum fuer Schwerionenforschung GmbH * * Copyright (C) 2014-2021 GSI Helmholtzzentrum fuer Schwerionenforschung GmbH *
* * * *
* This software is distributed under the terms of the * * This software is distributed under the terms of the *
* GNU Lesser General Public Licence (LGPL) version 3, * * GNU Lesser General Public Licence (LGPL) version 3, *
* copied verbatim in the file "LICENSE" * * copied verbatim in the file "LICENSE" *
********************************************************************************/ ********************************************************************************/
#include <fairmq/tools/Unique.h> #include <fairmq/tools/Unique.h>
#include <boost/program_options.hpp> #include <boost/program_options.hpp>