Mercurial > hg > orthanc-python
annotate CMakeLists.txt @ 24:3bed39e4b85f
fix prefix and suffix for Windows Python libraries
author | Benjamin Golinvaux <bgo@osimis.io> |
---|---|
date | Fri, 03 Apr 2020 12:12:09 +0200 |
parents | 874a3fef26ff |
children | 3b59f5dd7e72 |
rev | line source |
---|---|
0 | 1 cmake_minimum_required(VERSION 2.8) |
2 project(OrthancPython) | |
3 | |
15 | 4 set(PLUGIN_VERSION "mainline") |
0 | 5 |
6 | |
7 set(PYTHON_VERSION "3.6" CACHE STRING "Version of Python to be used") | |
8 set(PYTHON_WINDOWS_ROOT "" CACHE STRING "") | |
9 set(USE_SYSTEM_BOOST ON CACHE BOOL "Use the system version of Boost") | |
10 set(USE_SYSTEM_JSONCPP ON CACHE BOOL "Use the system version of JsonCpp") | |
11 set(USE_LEGACY_JSONCPP OFF CACHE BOOL "Use the old branch 0.x.y of JsonCpp, that does not require a C++11 compiler (for LSB and old versions of Visual Studio)") | |
12 | |
13 include(CheckIncludeFile) | |
14 include(CheckIncludeFileCXX) | |
15 include(CheckIncludeFiles) | |
16 include(CheckLibraryExists) | |
16
777b677cc9fc
generation of windows resources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
14
diff
changeset
|
17 include(FindPythonInterp) |
0 | 18 |
21
67f48fc2fd69
fix linking with Python on Windows
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
17
diff
changeset
|
19 string(REGEX REPLACE "^([0-9]*)\\.([0-9]*)$" "\\1" PYTHON_VERSION_MAJOR ${PYTHON_VERSION}) |
67f48fc2fd69
fix linking with Python on Windows
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
17
diff
changeset
|
20 string(REGEX REPLACE "^([0-9]*)\\.([0-9]*)$" "\\2" PYTHON_VERSION_MINOR ${PYTHON_VERSION}) |
67f48fc2fd69
fix linking with Python on Windows
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
17
diff
changeset
|
21 |
67f48fc2fd69
fix linking with Python on Windows
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
17
diff
changeset
|
22 if (NOT PYTHON_VERSION STREQUAL |
67f48fc2fd69
fix linking with Python on Windows
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
17
diff
changeset
|
23 "${PYTHON_VERSION_MAJOR}.${PYTHON_VERSION_MINOR}") |
67f48fc2fd69
fix linking with Python on Windows
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
17
diff
changeset
|
24 message(FATAL_ERROR "Error in the (x.y) format of the Python version: ${PYTHON_VERSION}") |
67f48fc2fd69
fix linking with Python on Windows
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
17
diff
changeset
|
25 endif() |
67f48fc2fd69
fix linking with Python on Windows
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
17
diff
changeset
|
26 |
0 | 27 if (${CMAKE_SYSTEM_NAME} STREQUAL "Windows") |
23
874a3fef26ff
fix suffix of Windows library
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
21
diff
changeset
|
28 if (MSVC) |
24
3bed39e4b85f
fix prefix and suffix for Windows Python libraries
Benjamin Golinvaux <bgo@osimis.io>
parents:
23
diff
changeset
|
29 set(Prefix "") |
23
874a3fef26ff
fix suffix of Windows library
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
21
diff
changeset
|
30 set(Suffix ".lib") |
874a3fef26ff
fix suffix of Windows library
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
21
diff
changeset
|
31 else() |
24
3bed39e4b85f
fix prefix and suffix for Windows Python libraries
Benjamin Golinvaux <bgo@osimis.io>
parents:
23
diff
changeset
|
32 set(Prefix "lib") |
23
874a3fef26ff
fix suffix of Windows library
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
21
diff
changeset
|
33 set(Suffix ".a") |
874a3fef26ff
fix suffix of Windows library
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
21
diff
changeset
|
34 endif() |
874a3fef26ff
fix suffix of Windows library
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
21
diff
changeset
|
35 |
24
3bed39e4b85f
fix prefix and suffix for Windows Python libraries
Benjamin Golinvaux <bgo@osimis.io>
parents:
23
diff
changeset
|
36 set(PYTHON_LIBRARY_NAME ${Prefix}python${PYTHON_VERSION_MAJOR}${PYTHON_VERSION_MINOR}${Suffix}) |
0 | 37 set(PYTHON_INCLUDE_DIRS ${PYTHON_WINDOWS_ROOT}/include) |
21
67f48fc2fd69
fix linking with Python on Windows
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
17
diff
changeset
|
38 set(PYTHON_LIBRARIES ${PYTHON_WINDOWS_ROOT}/libs/${PYTHON_LIBRARY_NAME}) |
0 | 39 |
40 else() | |
41 find_package(PkgConfig REQUIRED) | |
42 pkg_check_modules(PYTHON_1 python-${PYTHON_VERSION}-embed) | |
43 | |
44 if (PYTHON_1_FOUND) | |
45 set(PYTHON_INCLUDE_DIRS ${PYTHON_1_INCLUDE_DIRS}) | |
46 set(PYTHON_LIBRARIES ${PYTHON_1_LIBRARIES}) | |
47 else() | |
48 pkg_check_modules(PYTHON_2 REQUIRED python-${PYTHON_VERSION}) | |
49 set(PYTHON_INCLUDE_DIRS ${PYTHON_2_INCLUDE_DIRS}) | |
50 set(PYTHON_LIBRARIES ${PYTHON_2_LIBRARIES}) | |
51 endif() | |
52 endif() | |
53 | |
54 set(ORTHANC_ROOT ${CMAKE_SOURCE_DIR}/Resources/Orthanc) | |
55 include(${ORTHANC_ROOT}/Resources/CMake/Compiler.cmake) | |
56 include(${ORTHANC_ROOT}/Resources/CMake/DownloadPackage.cmake) | |
57 include(${ORTHANC_ROOT}/Resources/CMake/BoostConfiguration.cmake) | |
58 include(${ORTHANC_ROOT}/Resources/CMake/JsonCppConfiguration.cmake) | |
59 | |
16
777b677cc9fc
generation of windows resources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
14
diff
changeset
|
60 |
777b677cc9fc
generation of windows resources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
14
diff
changeset
|
61 if (${CMAKE_SYSTEM_NAME} STREQUAL "Windows") |
777b677cc9fc
generation of windows resources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
14
diff
changeset
|
62 execute_process( |
777b677cc9fc
generation of windows resources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
14
diff
changeset
|
63 COMMAND |
777b677cc9fc
generation of windows resources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
14
diff
changeset
|
64 ${PYTHON_EXECUTABLE} ${ORTHANC_ROOT}/Resources/WindowsResources.py |
777b677cc9fc
generation of windows resources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
14
diff
changeset
|
65 ${PLUGIN_VERSION} "Python plugin" OrthancPython.dll |
777b677cc9fc
generation of windows resources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
14
diff
changeset
|
66 "Plugin to create Orthanc plugins using Python" |
777b677cc9fc
generation of windows resources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
14
diff
changeset
|
67 ERROR_VARIABLE Failure |
777b677cc9fc
generation of windows resources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
14
diff
changeset
|
68 OUTPUT_FILE ${CMAKE_CURRENT_BINARY_DIR}/Version.rc |
777b677cc9fc
generation of windows resources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
14
diff
changeset
|
69 ) |
777b677cc9fc
generation of windows resources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
14
diff
changeset
|
70 |
777b677cc9fc
generation of windows resources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
14
diff
changeset
|
71 if (Failure) |
777b677cc9fc
generation of windows resources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
14
diff
changeset
|
72 message(FATAL_ERROR "Error while computing the version information: ${Failure}") |
777b677cc9fc
generation of windows resources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
14
diff
changeset
|
73 endif() |
777b677cc9fc
generation of windows resources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
14
diff
changeset
|
74 |
777b677cc9fc
generation of windows resources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
14
diff
changeset
|
75 set(WINDOWS_RESOURCES ${CMAKE_CURRENT_BINARY_DIR}/Version.rc) |
777b677cc9fc
generation of windows resources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
14
diff
changeset
|
76 endif() |
777b677cc9fc
generation of windows resources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
14
diff
changeset
|
77 |
777b677cc9fc
generation of windows resources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
14
diff
changeset
|
78 |
4
e3128420249d
fixing the SDK version
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
79 include_directories( |
e3128420249d
fixing the SDK version
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
80 ${ORTHANC_ROOT}/Sdk-1.5.7 |
e3128420249d
fixing the SDK version
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
81 ) |
0 | 82 |
83 add_definitions( | |
84 -DHAS_ORTHANC_EXCEPTION=0 | |
85 ) | |
86 | |
87 include_directories( | |
88 ${ORTHANC_ROOT}/Plugins/Samples/Common | |
89 ${PYTHON_INCLUDE_DIRS} | |
90 ) | |
91 | |
92 add_library(OrthancPython SHARED | |
93 ${BOOST_SOURCES} | |
94 ${JSONCPP_SOURCES} | |
95 ${ORTHANC_ROOT}/Plugins/Samples/Common/OrthancPluginCppWrapper.cpp | |
16
777b677cc9fc
generation of windows resources
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
14
diff
changeset
|
96 ${WINDOWS_RESOURCES} |
0 | 97 Sources/Autogenerated/sdk.cpp |
98 Sources/OnChangeCallback.cpp | |
99 Sources/OnStoredInstanceCallback.cpp | |
100 Sources/Plugin.cpp | |
101 Sources/PythonFunction.cpp | |
102 Sources/PythonLock.cpp | |
103 Sources/PythonModule.cpp | |
104 Sources/PythonObject.cpp | |
105 Sources/PythonString.cpp | |
106 Sources/RestCallbacks.cpp | |
107 ) | |
108 | |
109 target_link_libraries(OrthancPython ${PYTHON_LIBRARIES}) | |
110 | |
111 add_definitions(-DPLUGIN_VERSION="${PLUGIN_VERSION}") | |
112 | |
113 set_target_properties(OrthancPython PROPERTIES | |
114 VERSION ${PLUGIN_VERSION} | |
115 SOVERSION ${PLUGIN_VERSION} | |
116 ) | |
117 | |
118 install( | |
119 TARGETS OrthancPython | |
120 RUNTIME DESTINATION lib # Destination for Windows | |
121 LIBRARY DESTINATION share/orthanc/plugins # Destination for Linux | |
122 ) |