Browse Source

prevent xercesc from being linked when no xml support is required

Former-commit-id: 63bf3c1a71
tempestpy_adaptions
sjunges 9 years ago
parent
commit
eaaa36928a
  1. 2
      CMakeLists.txt

2
CMakeLists.txt

@ -521,6 +521,7 @@ endif(ENABLE_MSAT)
## ##
############################################################# #############################################################
if(STORM_SUPPORT_XML_INPUT_FORMATS)
find_package(Xerces) find_package(Xerces)
if(NOT XERCES_FOUND) if(NOT XERCES_FOUND)
message(STATUS "Use shipped version of xerces") message(STATUS "Use shipped version of xerces")
@ -535,6 +536,7 @@ if(STORM_HAVE_XERCES)
include_directories(${XERCESC_INCLUDE}) include_directories(${XERCESC_INCLUDE})
list(APPEND STORM_LINK_LIBRARIES ${XERCESC_LIBRARIES}) list(APPEND STORM_LINK_LIBRARIES ${XERCESC_LIBRARIES})
endif() endif()
endif()
############################################################# #############################################################
## ##

Loading…
Cancel
Save