Mercurial > hg > orthanc
view Resources/CMake/PlustacheConfiguration.cmake @ 1068:f54a9c6fea5d
documentation of plugin sdk
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Mon, 28 Jul 2014 11:34:01 +0200 |
parents | 3a26bc6e4867 |
children |
line wrap: on
line source
if (USE_PLUSTACHE) add_definitions(-DORTHANC_PLUSTACHE_ENABLED=1) if (STATIC_BUILD OR NOT USE_SYSTEM_PLUSTACHE) set(PLUSTACHE_SOURCES_DIR ${CMAKE_BINARY_DIR}/plustache-0.3.0) DownloadPackage( "6162946bdb3dccf3b2185fcf149671ee" "http://www.montefiore.ulg.ac.be/~jodogne/Orthanc/ThirdPartyDownloads/plustache-0.3.0.tar.gz" "${PLUSTACHE_SOURCES_DIR}") list(APPEND THIRD_PARTY_SOURCES ${PLUSTACHE_SOURCES_DIR}/src/context.cpp ${PLUSTACHE_SOURCES_DIR}/src/template.cpp ) include_directories( ${PLUSTACHE_SOURCES_DIR} ) execute_process( COMMAND patch -p0 -i ${ORTHANC_ROOT}/Resources/CMake/PlustacheConfiguration.patch WORKING_DIRECTORY ${CMAKE_BINARY_DIR} ) source_group(ThirdParty\\Plustache REGULAR_EXPRESSION ${PLUSTACHE_SOURCES_DIR}/.*) else() message(FATAL_ERROR "Dynamic linking against plustache not implemented (a patch is required)") endif() else() add_definitions(-DORTHANC_PLUSTACHE_ENABLED=0) endif()