-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
135 lines (111 loc) · 5.08 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
# Orthanc - A Lightweight, RESTful DICOM Store
# Copyright (C) 2012-2015 Sebastien Jodogne, Medical Physics
# Department, University Hospital of Liege, 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 "1.0")
# 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")
# Advanced parameters to fine-tune linking against system libraries
set(USE_SYSTEM_JSONCPP ON CACHE BOOL "Use the system version of JsonCpp")
set(USE_SYSTEM_BOOST ON CACHE BOOL "Use the system version of Boost")
set(USE_SYSTEM_GOOGLE_TEST ON CACHE BOOL "Use the system version of Google Test")
set(USE_SYSTEM_LIBPQ ON CACHE BOOL "Use the system version of the PostgreSQL client library")
# Distribution-specific settings
set(USE_GTEST_DEBIAN_SOURCE_PACKAGE OFF CACHE BOOL "Use the sources of Google Test shipped with libgtest-dev (Debian only)")
mark_as_advanced(USE_GTEST_DEBIAN_SOURCE_PACKAGE)
include(CheckIncludeFiles)
include(CheckIncludeFileCXX)
include(CheckLibraryExists)
include(FindPythonInterp)
include(${CMAKE_SOURCE_DIR}/Resources/CMake/Compiler.cmake)
include(${CMAKE_SOURCE_DIR}/Resources/CMake/AutoGeneratedCode.cmake)
include(${CMAKE_SOURCE_DIR}/Resources/CMake/DownloadPackage.cmake)
include(${CMAKE_SOURCE_DIR}/Resources/CMake/BoostConfiguration.cmake)
include(${CMAKE_SOURCE_DIR}/Resources/CMake/PostgreSQLConfiguration.cmake)
include(${CMAKE_SOURCE_DIR}/Resources/CMake/JsonCppConfiguration.cmake)
include(${CMAKE_SOURCE_DIR}/Resources/CMake/GoogleTestConfiguration.cmake)
# Check that the Orthanc SDK headers are available or download them
if (STATIC_BUILD)
set(ORTHANC_SDK_URL "http://orthanc.googlecode.com/hg-history/Orthanc-0.8.6")
file(MAKE_DIRECTORY ${AUTOGENERATED_DIR}/orthanc)
file(DOWNLOAD "${ORTHANC_SDK_URL}/Plugins/Include/OrthancCPlugin.h"
"${AUTOGENERATED_DIR}/orthanc/OrthancCPlugin.h" SHOW_PROGRESS)
file(DOWNLOAD "${ORTHANC_SDK_URL}/Plugins/Include/OrthancCDatabasePlugin.h"
"${AUTOGENERATED_DIR}/orthanc/OrthancCDatabasePlugin.h" SHOW_PROGRESS)
file(DOWNLOAD "${ORTHANC_SDK_URL}/Plugins/Include/OrthancCppDatabasePlugin.h"
"${AUTOGENERATED_DIR}/orthanc/OrthancCppDatabasePlugin.h" SHOW_PROGRESS)
if (${MSVC})
add_definitions(-D_CRT_SECURE_NO_WARNINGS=1)
file(DOWNLOAD "${ORTHANC_SDK_URL}/Resources/ThirdParty/VisualStudio/stdint.h"
"${AUTOGENERATED_DIR}/stdint.h" SHOW_PROGRESS)
endif()
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()
# Embed the SQL files into the binaries
EmbedResources(
POSTGRESQL_PREPARE ${CMAKE_CURRENT_SOURCE_DIR}/IndexPlugin/PostgreSQLPrepare.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
${LIBPQ_SOURCES}
${BOOST_SOURCES}
${JSONCPP_SOURCES}
)
add_library(OrthancPostgreSQLStorage
SHARED
${CORE_SOURCES}
${CMAKE_SOURCE_DIR}/StoragePlugin/PostgreSQLStorageArea.cpp
${CMAKE_SOURCE_DIR}/StoragePlugin/Plugin.cpp
)
add_library(OrthancPostgreSQLIndex
SHARED
${CORE_SOURCES}
${AUTOGENERATED_SOURCES}
${CMAKE_SOURCE_DIR}/IndexPlugin/PostgreSQLWrapper.cpp
${CMAKE_SOURCE_DIR}/IndexPlugin/Plugin.cpp
)
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}
)
add_executable(UnitTests
${CORE_SOURCES}
${GTEST_SOURCES}
${AUTOGENERATED_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
)