-
Steven Murray authoredSteven Murray authored
CMakeLists.txt 3.66 KiB
# The CERN Tape Archive (CTA) project
# Copyright (C) 2015 CERN
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
cmake_minimum_required (VERSION 2.6)
add_subdirectory(reactor)
add_subdirectory(castorrmc)
find_package(openssl REQUIRED)
find_package(Protobuf3 REQUIRED)
find_package(zeromq REQUIRED)
file(GLOB ProtoFiles "${CMAKE_CURRENT_SOURCE_DIR}/*.proto")
PROTOBUF3_GENERATE_CPP(ProtoSources ProtoHeaders ${ProtoFiles})
include_directories (${PROTOBUF3_INCLUDE_DIRS})
add_library(ctamediachangerprotobuf ${ProtoSources})
target_link_libraries (ctamediachangerprotobuf
${PROTOBUF3_LIBRARIES})
set (MEDIACHANGER_LIB_SRC_FILES
AcsLibrarySlot.cpp
AcsProxy.cpp
CmdLine.cpp
CmdLineTool.cpp
CommonMarshal.cpp
DebugBuf.cpp
Frame.cpp
io.cpp
IpAndPort.cpp
LibrarySlot.cpp
LibrarySlotParser.cpp
ManualLibrarySlot.cpp
MediaChangerFacade.cpp
MediaChangerProxy.cpp
MessageHeader.cpp
messages.cpp
MmcProxy.cpp
RmcMarshal.cpp
RmcMarshal.hpp
RmcMountMsgBody.cpp
RmcProxy.cpp
RmcUnmountMsgBody.cpp
ScsiLibrarySlot.cpp
TapeLibraryType.cpp
ZmqContextSingleton.cpp
ZmqMsg.cpp
ZmqSocket.cpp
ZmqSocketST.cpp
ZmqSocketMT.cpp)
add_library (ctamediachanger SHARED
${MEDIACHANGER_LIB_SRC_FILES})
set_property(TARGET ctamediachanger PROPERTY SOVERSION "${CTA_SOVERSION}")
set_property(TARGET ctamediachanger PROPERTY VERSION "${CTA_LIBVERSION}")
target_link_libraries (ctamediachanger
ctacommon
ctamediachangerprotobuf
ssl
zmq)
install (TARGETS ctamediachanger DESTINATION usr/${CMAKE_INSTALL_LIBDIR})
set (MEDIACHANGER_UNIT_TESTS_LIB_SRC_FILES
AcsLibrarySlotTest.cpp
DismountCmdLine.cpp
DismountCmdLineTest.cpp
IoTest.cpp
LibrarySlotParserTest.cpp
ManualLibrarySlotTest.cpp
MountCmdLine.cpp
MountCmdLineTest.cpp
ScsiLibrarySlotTest.cpp)
add_library (ctamediachangerunittests SHARED
${MEDIACHANGER_UNIT_TESTS_LIB_SRC_FILES})
set_property(TARGET ctamediachangerunittests PROPERTY SOVERSION "${CTA_SOVERSION}")
set_property(TARGET ctamediachangerunittests PROPERTY VERSION "${CTA_LIBVERSION}")
target_link_libraries (ctamediachangerunittests
ctamediachanger)
install (TARGETS ctamediachangerunittests DESTINATION usr/${CMAKE_INSTALL_LIBDIR})
set (MEDIA_CHANGER_MOUNT_SRC_FILES
MountCmd.cpp
MountCmdLine.cpp
MountCmdMain.cpp)
add_executable (cta-mediachanger-mount ${MEDIA_CHANGER_MOUNT_SRC_FILES})
set_target_properties (cta-mediachanger-mount PROPERTIES
COMPILE_FLAGS -I/usr/include/CDK
COMPILE_DEFINITIONS LINUX)
set_property (TARGET cta-mediachanger-mount APPEND PROPERTY INSTALL_RPATH ${PROTOBUF3_RPATH})
target_link_libraries (cta-mediachanger-mount
ctacommon
ctamediachanger)
set (MEDIA_CHANGER_DISMOUNT_SRC_FILES
DismountCmd.cpp
DismountCmdLine.cpp
DismountCmdMain.cpp)
add_executable (cta-mediachanger-dismount
${MEDIA_CHANGER_DISMOUNT_SRC_FILES})
set_target_properties (cta-mediachanger-dismount PROPERTIES
COMPILE_FLAGS -I/usr/include/CDK
COMPILE_DEFINITIONS LINUX)
set_property (TARGET cta-mediachanger-dismount APPEND PROPERTY INSTALL_RPATH ${PROTOBUF3_RPATH})
target_link_libraries (cta-mediachanger-dismount
ctacommon
ctamediachanger)