Skip to content
Snippets Groups Projects
Commit 7ef0fa01 authored by Steven Murray's avatar Steven Murray
Browse files

Forgot to add vdqm CMakeLists.txt. Please note this only builds the vdqm client library.

parent ede65523
Branches
Tags
No related merge requests found
......@@ -58,3 +58,5 @@ install (TARGETS castortape DESTINATION ${CASTOR_DEST_LIB_DIR})
set (TAPED_SRC_FILES tpdaemon.c checkjobdied.c cvtden.c sendrep.c tplogit.c usrmsg.c)
add_executable(taped ${TAPED_SRC_FILES})
target_link_libraries (taped castorcommon castortape castorvdqm)
set (CONFDRIVE_SRC_FILES confdrive.c sendrep.c tplogit.c)
#
# vdqm/CMakeLists.txt
#
# This file is part of the Castor project.
# See http://castor.web.cern.ch/castor
#
# Copyright (C) 2003 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 2
# 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, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
#
# Steven.Murray@cern.ch
#
cmake_minimum_required (VERSION 2.6)
include_directories ("..")
include_directories ("../h")
set (VDQM_LIB_SRC_FILES vdqmapi.c vdqm_SendRecv.c)
add_library (castorvdqm SHARED ${VDQM_LIB_SRC_FILES})
set_target_properties (castorvdqm
PROPERTIES SOVERSION ${MAJOR_CASTOR_VERSION})
target_link_libraries (castorvdqm castorcommon)
install (TARGETS castorvdqm DESTINATION ${CASTOR_DEST_LIB_DIR})
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment