Page Menu
Home
HEPForge
Search
Configure Global Search
Log In
Files
F10664292
CMakeLists.txt
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
2 KB
Subscribers
None
CMakeLists.txt
View Options
#----------------------------------------------------------------------
# Copyright (c) 2010-11, Pierre-Antoine Delsart, Kurtis Geerlings, Joey Huston,
# Brian Martin, and Christopher Vermilion
#
#----------------------------------------------------------------------
# This file is part of SpartyJet.
#
# SpartyJet 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.
#
# SpartyJet 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 SpartyJet; if not, write to the Free Software
# Foundation, Inc.:
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#----------------------------------------------------------------------
# could get these more cleverly; not going to bother right now
set (PLUGINS ExamplePlugin Trimming FastPrune-0.4.1)
file (GLOB_RECURSE UserPlugins_HEADERS *.hh)
set (plugin_LIBS ${CMAKE_CURRENT_SOURCE_DIR}/FastPrune-0.4.1/lib/libFastPrunePlugin.a
${CMAKE_CURRENT_SOURCE_DIR}/FastPrune-0.4.1/lib/libFastPruneTool.a
${CMAKE_CURRENT_SOURCE_DIR}/Trimming/lib/libfjtrimmingplugins.a
)
# pass these to the outside world if needed
set (EXTERNAL_LIBRARIES ${plugin_LIBS} ${EXTERNAL_LIBRARIES} PARENT_SCOPE)
# custom targets to build plugins
foreach (plugin ${PLUGINS})
set (PATH_STRING "PATH=/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:${ROOTSYS}/bin:${fastjet_PREFIX}/bin")
add_custom_target (${plugin} ${PATH_STRING} make # so make can find root-config, fastjet-config
COMMAND echo "Building ${plugin}"
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/${plugin}
)
endforeach (plugin)
# include headers and Makefile so they show up in Xcode/VS project
add_library (UserPlugins UserPluginsDict.cpp ${UserPlugins_HEADERS} Makefile UserPluginsLinkDef.hpp)
target_link_libraries (UserPlugins ${SJ_LDFLAGS} ${plugin_LIBS})
add_dependencies (UserPlugins ${PLUGINS})
# Dictionary generation (ugh)
add_custom_command (OUTPUT UserPluginsDict.cpp
COMMAND ${ROOTCINT} -f UserPluginsDict.cpp -c -p -I${PROJECT_SOURCE_DIR} -I${PROJECT_SOURCE_DIR}/UserPlugins/FastPrune-0.4.1/include -I${ROOTSYS}/include -I${fastjet_INCLUDE_DIR} ${UserPlugins_HEADERS} ${CMAKE_CURRENT_SOURCE_DIR}/UserPluginsLinkDef.hpp
DEPENDS UserPluginsLinkDef.hpp ${UserPlugins_HEADERS}
COMMENT "Generating dictionary for UserPlugins"
VERBATIM
)
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Thu, Apr 24, 6:35 AM (1 d, 15 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
4836192
Default Alt Text
CMakeLists.txt (2 KB)
Attached To
rSPARTYJETSVN spartyjetsvn
Event Timeline
Log In to Comment