-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCMakeLists.txt
113 lines (85 loc) · 3.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
cmake_minimum_required(VERSION 3.0.0)
project(qore-pgsql-module)
set (VERSION_MAJOR 3)
set (VERSION_MINOR 2)
set (VERSION_PATCH 0)
if (${VERSION_PATCH})
set(PROJECT_VERSION "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}")
else()
set(PROJECT_VERSION "${VERSION_MAJOR}.${VERSION_MINOR}")
endif()
option(enable-scu "build as a single compilation unit" ON)
option(server-includes "build with pgsql server includes" OFF)
include(CheckCXXCompilerFlag)
include(CheckCXXSourceCompiles)
include(CheckCXXSymbolExists)
include(CheckIncludeFileCXX)
# Check for C++11.
CHECK_CXX_COMPILER_FLAG("-std=c++11" COMPILER_SUPPORTS_CXX11)
if(COMPILER_SUPPORTS_CXX11)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
else()
message(FATAL_ERROR "The compiler ${CMAKE_CXX_COMPILER} has no C++11 support. Please use a different C++ compiler.")
endif()
find_package(Qore 0.9 REQUIRED)
qore_find_pthreads()
if (DEFINED ENV{PostgreSQL_INCLUDE_DIR})
set(PostgreSQL_INCLUDE_DIR $ENV{PostgreSQL_INCLUDE_DIR})
endif()
if (DEFINED ENV{PostgreSQL_TYPE_INCLUDE_DIR})
set(PostgreSQL_TYPE_INCLUDE_DIR $ENV{PostgreSQL_TYPE_INCLUDE_DIR})
endif()
if (DEFINED ENV{PostgreSQL_LIBRARY})
set(PostgreSQL_LIBRARY $ENV{PostgreSQL_LIBRARY})
endif()
find_package(PostgreSQL 8.0.0 REQUIRED)
# check if the client library has PQLibVersion
set(CMAKE_REQUIRED_INCLUDES ${PostgreSQL_INCLUDE_DIRS})
set(CMAKE_REQUIRED_LIBRARIES ${PostgreSQL_LIBRARY})
check_cxx_symbol_exists(PQlibVersion libpq-fe.h HAVE_PQLIBVERSION)
unset(CMAKE_REQUIRED_INCLUDES)
unset(CMAKE_REQUIRED_LIBRARIES)
check_include_file_cxx(arpa/inet.h HAVE_ARPA_INET_H)
check_include_file_cxx(netinet/in.h HAVE_NETINET_IN_H)
include_directories(${CMAKE_SOURCE_DIR}/src)
include_directories(${PostgreSQL_INCLUDE_DIRS})
add_definitions(-DQORE_MODULE_PACKAGE_VERSION="${PROJECT_VERSION}")
check_cxx_compiler_flag(-fvisibility=hidden HAVE_GCC_VISIBILITY)
configure_file(${CMAKE_SOURCE_DIR}/cmake/config.h.cmake
${CMAKE_BINARY_DIR}/config.h)
set(QPP_SRC src/ql_pgsql.qpp)
set(CPP_SRC
src/pgsql.cpp
src/QorePGConnection.cpp
src/QorePGMapper.cpp
)
qore_wrap_qpp_value(QPP_SOURCES ${QPP_SRC})
add_custom_target(QPP_GENERATED_FILES DEPENDS ${QPP_SOURCES})
set(module_name "pgsql")
set(QORE_DOX_TMPL_SRC
docs/mainpage.dox.tmpl
)
if(enable-scu)
add_library(${module_name} MODULE src/single-compilation-unit.cpp)
add_dependencies(${module_name} QPP_GENERATED_FILES)
else(enable-scu)
add_library(${module_name} MODULE ${CPP_SRC} ${QPP_SOURCES})
endif(enable-scu)
if(WIN32 OR MINGW OR MSYS)
target_compile_definitions(${module_name} PUBLIC BUILDING_DLL)
endif()
if(server-includes)
target_compile_definitions(${module_name} PUBLIC POSTGRESQL_SERVER_INCLUDES)
endif(server-includes)
if (DEFINED ENV{DOXYGEN_EXECUTABLE})
set(DOXYGEN_EXECUTABLE $ENV{DOXYGEN_EXECUTABLE})
endif()
qore_external_binary_module(${module_name} ${PROJECT_VERSION} ${PostgreSQL_LIBRARY} Threads::Threads)
qore_dist(${PROJECT_VERSION})
qore_config_info()
# NOTE: find_package(Doxygen) called in qore_external_binary_module()
if (DOXYGEN_FOUND)
qore_wrap_dox(QORE_DOX_SRC ${QORE_DOX_TMPL_SRC})
add_custom_target(QORE_MOD_DOX_FILES DEPENDS ${QORE_DOX_SRC})
add_dependencies(docs-module QORE_MOD_DOX_FILES)
endif()