Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Riccardo Longo
JZCaPA
Commits
8912356f
Commit
8912356f
authored
Jan 29, 2019
by
Riccardo Longo
Browse files
Including the Xerces-C support
parent
74ce88ab
Changes
1
Hide whitespace changes
Inline
Side-by-side
CMakeLists.txt
View file @
8912356f
...
...
@@ -38,12 +38,22 @@ add_compile_options(-std=c++11)
set
(
CMAKE_MODULE_PATH
${
CMAKE_MODULE_PATH
}
${
PROJECT_SOURCE_DIR
}
/cmakeModules/
)
#Root support
find_package
(
ROOT REQUIRED
)
include_directories
(
${
ROOT_INCLUDE_DIR
}
)
#Xerces-C support
find_package
(
Xerces REQUIRED
)
include_directories
(
${
XERCESC_INCLUDE
}
)
#Test executable - does nothing
add_executable
(
test_JCaPA main.cpp
)
TARGET_LINK_LIBRARIES
(
test_JCaPA
${
ROOT_LIBRARIES
}
)
TARGET_LINK_LIBRARIES
(
test_JCaPA
${
XERCESC_LIBRARY
}
)
#Subdirectory structure
#Analysis libraries and user functions
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment