Mercurial > hg > orthanc-postgresql
view CMakeLists.txt @ 187:e2ea55a0dc24 default tip
migration to orthanc-databases
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 04 Jul 2018 08:18:50 +0200 (2018-07-04) |
parents | 38d4b8ff51ef |
children |
line wrap: on
line source
# Orthanc - A Lightweight, RESTful DICOM Store # Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics # Department, University Hospital of Liege, Belgium # Copyright (C) 2017-2018 Osimis S.A., Belgium # # This program is free software: you can redistribute it and/or # modify it under the terms of the GNU Affero General Public License # as published by the Free Software Foundation, either version 3 of # the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Affero General Public License for more details. # # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. cmake_minimum_required(VERSION 2.8) project(OrthancPostgreSQL) set(ORTHANC_POSTGRESQL_VERSION "mainline") if (ORTHANC_POSTGRESQL_VERSION STREQUAL "mainline") set(ORTHANC_FRAMEWORK_VERSION "mainline") set(ORTHANC_FRAMEWORK_DEFAULT_SOURCE "hg") else() set(ORTHANC_FRAMEWORK_VERSION "1.3.2") set(ORTHANC_FRAMEWORK_DEFAULT_SOURCE "web") endif() # Parameters of the build set(STATIC_BUILD OFF CACHE BOOL "Static build of the third-party libraries (necessary for Windows)") set(ALLOW_DOWNLOADS OFF CACHE BOOL "Allow CMake to download packages") set(BUILD_UNIT_TESTS ON CACHE BOOL "Build UnitTests") set(ORTHANC_FRAMEWORK_SOURCE "${ORTHANC_FRAMEWORK_DEFAULT_SOURCE}" CACHE STRING "Source of the Orthanc source code (can be \"hg\", \"archive\", \"web\" or \"path\")") set(ORTHANC_FRAMEWORK_ARCHIVE "" CACHE STRING "Path to the Orthanc archive, if ORTHANC_FRAMEWORK_SOURCE is \"archive\"") set(ORTHANC_FRAMEWORK_ROOT "" CACHE STRING "Path to the Orthanc source directory, if ORTHANC_FRAMEWORK_SOURCE is \"path\"") # Advanced parameters to fine-tune linking against system libraries set(USE_SYSTEM_LIBPQ ON CACHE BOOL "Use the system version of the PostgreSQL client library") set(USE_SYSTEM_ORTHANC_SDK ON CACHE BOOL "Use the system version of the Orthanc plugin SDK") # Download and setup the Orthanc framework include(${CMAKE_SOURCE_DIR}/Resources/Orthanc/DownloadOrthancFramework.cmake) set(ORTHANC_FRAMEWORK_PLUGIN ON) include(${ORTHANC_ROOT}/Resources/CMake/OrthancFrameworkParameters.cmake) set(ENABLE_LOCALE OFF) # Disable support for locales (notably in Boost) set(ENABLE_GOOGLE_TEST ON) include(${ORTHANC_ROOT}/Resources/CMake/OrthancFrameworkConfiguration.cmake) include_directories(${ORTHANC_ROOT}) # The CMake script in "Graveyard" was used up to release 2.0. The new # script makes auto-configuration of the variables. include(${CMAKE_SOURCE_DIR}/Resources/CMake/PostgreSQLConfiguration.cmake) #include(${CMAKE_SOURCE_DIR}/Resources/Graveyard/PostgreSQLConfiguration.cmake) if (STATIC_BUILD OR NOT USE_SYSTEM_ORTHANC_SDK) include_directories(${CMAKE_SOURCE_DIR}/Resources/Orthanc/Sdk-0.9.5) else () CHECK_INCLUDE_FILE_CXX(orthanc/OrthancCppDatabasePlugin.h HAVE_ORTHANC_H) if (NOT HAVE_ORTHANC_H) message(FATAL_ERROR "Please install the headers of the Orthanc plugins SDK") endif() endif() if (${CMAKE_SYSTEM_NAME} STREQUAL "Windows") link_libraries(secur32) execute_process( COMMAND ${PYTHON_EXECUTABLE} ${ORTHANC_ROOT}/Resources/WindowsResources.py ${ORTHANC_POSTGRESQL_VERSION} "PostgreSQL storage plugin" OrthancPostgreSQLStorage.dll "PostgreSQL as a database back-end to Orthanc (storage area)" ERROR_VARIABLE Failure OUTPUT_FILE ${AUTOGENERATED_DIR}/StorageVersion.rc ) if (Failure) message(FATAL_ERROR "Error while computing the version information: ${Failure}") endif() execute_process( COMMAND ${PYTHON_EXECUTABLE} ${ORTHANC_ROOT}/Resources/WindowsResources.py ${ORTHANC_POSTGRESQL_VERSION} "PostgreSQL index plugin" OrthancPostgreSQLIndex.dll "PostgreSQL as a database back-end to Orthanc (index area)" ERROR_VARIABLE Failure OUTPUT_FILE ${AUTOGENERATED_DIR}/IndexVersion.rc ) if (Failure) message(FATAL_ERROR "Error while computing the version information: ${Failure}") endif() set(INDEX_RESOURCES ${AUTOGENERATED_DIR}/IndexVersion.rc) set(STORAGE_RESOURCES ${AUTOGENERATED_DIR}/StorageVersion.rc) endif() # Embed the SQL files into the binaries EmbedResources( --system-exception --namespace=OrthancPlugins POSTGRESQL_PREPARE ${CMAKE_CURRENT_SOURCE_DIR}/IndexPlugin/PostgreSQLPrepare.sql POSTGRESQL_PREPARE_V5 ${CMAKE_CURRENT_SOURCE_DIR}/IndexPlugin/PostgreSQLVersion5.sql POSTGRESQL_PREPARE_V6 ${CMAKE_CURRENT_SOURCE_DIR}/IndexPlugin/PostgreSQLVersion6.sql ) set(CORE_SOURCES ${CMAKE_SOURCE_DIR}/Core/PostgreSQLConnection.cpp ${CMAKE_SOURCE_DIR}/Core/PostgreSQLLargeObject.cpp ${CMAKE_SOURCE_DIR}/Core/PostgreSQLResult.cpp ${CMAKE_SOURCE_DIR}/Core/PostgreSQLStatement.cpp ${CMAKE_SOURCE_DIR}/Core/PostgreSQLTransaction.cpp ${CMAKE_SOURCE_DIR}/Core/Configuration.cpp ${CMAKE_SOURCE_DIR}/Core/GlobalProperties.cpp ${AUTOGENERATED_DIR}/EmbeddedResources.cpp ${ORTHANC_CORE_SOURCES} ${LIBPQ_SOURCES} ) add_library(OrthancPostgreSQLStorage SHARED ${CORE_SOURCES} ${CMAKE_SOURCE_DIR}/StoragePlugin/PostgreSQLStorageArea.cpp ${CMAKE_SOURCE_DIR}/StoragePlugin/Plugin.cpp ${STORAGE_RESOURCES} ) add_library(OrthancPostgreSQLIndex SHARED ${CORE_SOURCES} ${CMAKE_SOURCE_DIR}/IndexPlugin/PostgreSQLWrapper.cpp ${CMAKE_SOURCE_DIR}/IndexPlugin/Plugin.cpp ${INDEX_RESOURCES} ) message("Setting the version of the libraries to ${ORTHANC_POSTGRESQL_VERSION}") add_definitions(-DORTHANC_POSTGRESQL_VERSION="${ORTHANC_POSTGRESQL_VERSION}") set_target_properties(OrthancPostgreSQLStorage PROPERTIES VERSION ${ORTHANC_POSTGRESQL_VERSION} SOVERSION ${ORTHANC_POSTGRESQL_VERSION} ) set_target_properties(OrthancPostgreSQLIndex PROPERTIES VERSION ${ORTHANC_POSTGRESQL_VERSION} SOVERSION ${ORTHANC_POSTGRESQL_VERSION} ) install( TARGETS OrthancPostgreSQLStorage OrthancPostgreSQLIndex RUNTIME DESTINATION lib # Destination for Windows LIBRARY DESTINATION share/orthanc/plugins # Destination for Linux ) if (BUILD_UNIT_TESTS) add_executable(UnitTests ${CORE_SOURCES} ${CMAKE_SOURCE_DIR}/IndexPlugin/PostgreSQLWrapper.cpp ${CMAKE_SOURCE_DIR}/StoragePlugin/PostgreSQLStorageArea.cpp ${CMAKE_SOURCE_DIR}/UnitTestsSources/UnitTestsMain.cpp ${CMAKE_SOURCE_DIR}/UnitTestsSources/PostgreSQLTests.cpp ${CMAKE_SOURCE_DIR}/UnitTestsSources/PostgreSQLWrapperTests.cpp ${GOOGLE_TEST_SOURCES} ) target_link_libraries(UnitTests ${GOOGLE_TEST_LIBRARIES}) endif()