view Resources/CMake/PlustacheConfiguration.cmake @ 1072:1dffa9f44a94

conformance
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 28 Jul 2014 13:31:35 +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()