forked from couchbase/couchbase-python-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
141 lines (124 loc) · 5.23 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
136
137
138
139
140
141
# Copyright 2016-2022. Couchbase, Inc.
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License")
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
cmake_minimum_required(VERSION 3.18)
# needed for CMAKE_MSVC_RUNTIME_LIBRARY
cmake_policy(SET CMP0091 NEW)
include(FetchContent)
set(CMAKE_CXX_STANDARD 17)
# MultiThreaded$<$<CONFIG:Debug>:Debug>DLL for /MD compile flag
# MultiThreaded$<$<CONFIG:Debug>:Debug> for /MT compile flag
set(CMAKE_MSVC_RUNTIME_LIBRARY "MultiThreaded$<$<CONFIG:Debug>:Debug>DLL")
if(WIN32)
add_definitions(/bigobj)
add_definitions(-D_WIN32_WINNT=0x0601)
endif()
project(couchbase_client)
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
if (PYTHON_VERSION_EXACT)
set(Python_FIND_VIRTUALENV FIRST)
message("finding python version ${PYTHON_VERSION_EXACT}")
else()
set(PYTHON_VERSION_EXACT 3.6)
endif()
find_package(Python3 ${PYTHON_VERSION_EXACT} COMPONENTS Interpreter Development.Module)
if(WIN32)
set(PYCBC_C_MOD_SUFFIX ".pyd")
else()
set(PYCBC_C_MOD_SUFFIX ".so")
endif()
if (OPENSSL_ROOT_DIR)
message(STATUS "OPENSSL_ROOT_DIR set to ${OPENSSL_ROOT_DIR}, calling finder...")
find_package(OpenSSL REQUIRED)
endif()
if(OPENSSL_FOUND)
message("OpenSSL found, OPENSSL_ROOT_DIR set to ${OPENSSL_ROOT_DIR}")
else()
if(WIN32)
if("${CMAKE_SIZEOF_VOID_P}" EQUAL "8")
MESSAGE("++ 64 bit architecture")
set(PKGARCH "amd64")
else()
MESSAGE("++ 32 bit architecture")
set(PKGARCH "win32")
endif()
if(NOT OPENSSL_VERSION)
message("No OpenSSL version set...cannot attempt to download.")
else()
# default version is currently 1.1.1g (see setup.py)
FetchContent_Declare(
openssl
URL https://github.com/python/cpython-bin-deps/archive/openssl-bin-${OPENSSL_VERSION}.zip
)
message("fetching OpenSSL version: ${OPENSSL_VERSION}")
FetchContent_Populate(openssl)
message("Downloaded OpenSSL: ${openssl_SOURCE_DIR}/${PKGARCH}")
set(OPENSSL_ROOT_DIR ${openssl_SOURCE_DIR}/${PKGARCH})
endif()
elseif(APPLE)
# we were not supplied an OPENSSL_ROOT_DIR, so for macos assume brew is how it is installed, if it is...
find_program(BREW_COMMAND brew)
if(BREW_COMMAND)
message(STATUS "brew command: ${BREW_COMMAND}")
execute_process(COMMAND ${BREW_COMMAND} --prefix [email protected] OUTPUT_VARIABLE BREW_OPENSSL_PREFIX RESULT_VARIABLE BREW_RESULT OUTPUT_STRIP_TRAILING_WHITESPACE)
message(STATUS "brew result: ${BREW_RESULT}, prefix: ${BREW_OPENSSL_PREFIX}")
if(BREW_RESULT EQUAL 0)
set(OPENSSL_ROOT_DIR ${BREW_OPENSSL_PREFIX} CACHE INTERNAL "" FORCE)
message(STATUS "brew set OPENSSL_ROOT_DIR to ${OPENSSL_ROOT_DIR}, finding OpenSSL...")
endif()
endif()
else()
message("Not mac or windows, so assuming OpenSSL v1.1 is installed and findable...")
endif()
find_package(OpenSSL REQUIRED)
endif()
message("Adding ${OPENSSL_INCLUDE_DIR} to include dirs...")
include_directories(${OPENSSL_INCLUDE_DIR})
set(COUCHBASE_CXX_CLIENT_PYTHON_WARNINGS ON CACHE INTERNAL "")
set(COUCHBASE_CXX_CLIENT_BUILD_TESTS OFF CACHE BOOL "" FORCE)
set(COUCHBASE_CXX_CLIENT_BUILD_EXAMPLES OFF CACHE BOOL "" FORCE)
set(COUCHBASE_CXX_CLIENT_BUILD_TOOLS OFF CACHE BOOL "" FORCE)
set(COUCHBASE_CXX_CLIENT_POST_LINKED_OPENSSL ON CACHE BOOL "" FORCE)
# PYCBC-1374 - issues finding static stdc++ 64-bit libs on RHEL, provide ability to dynamically link if needed
if(NOT DEFINED ENV{COUCHBASE_CXX_CLIENT_STATIC_STDLIB})
set(COUCHBASE_CXX_CLIENT_STATIC_STDLIB ON CACHE BOOL "" FORCE)
endif()
add_subdirectory(deps/couchbase-cxx-client)
set(CB_CXX_DIR "${PROJECT_SOURCE_DIR}/deps/couchbase-cxx-client")
if(Python3_FOUND)
message("Python executable: ${Python3_EXECUTABLE}")
message("Python include dir: ${Python3_INCLUDE_DIRS}")
message("Python libs: ${Python3_LIBRARIES}")
else()
message(FATAL_ERROR "Python3 not found.")
endif()
include_directories(SYSTEM ${Python3_INCLUDE_DIRS})
include_directories(BEFORE "${CB_CXX_DIR}/include")
include_directories(BEFORE "${CB_CXX_DIR}/third_party/asio/asio/include")
file(GLOB SOURCE_FILES "src/*.cxx" "src/management/*.cxx" "src/transactions/*.cxx")
add_library(pycbc_core SHARED ${SOURCE_FILES})
if(WIN32)
target_link_libraries(pycbc_core couchbase_cxx_client ${Python3_LIBRARIES} ${OPENSSL_LIBRARIES})
else()
target_link_libraries(pycbc_core couchbase_cxx_client ${OPENSSL_LIBRARIES})
if(APPLE)
target_link_options(pycbc_core PRIVATE -undefined dynamic_lookup)
endif()
endif()
set_target_properties(pycbc_core
PROPERTIES
PREFIX ""
OUTPUT_NAME pycbc_core
SUFFIX ${PYCBC_C_MOD_SUFFIX}
)