Mercurial > hg > orthanc
view Resources/CMake/PlustacheConfiguration.cmake @ 1118:3709c03ec9f0
ALLOW_DOWNLOADS for OS X builds
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Tue, 02 Sep 2014 23:13:59 +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()