forked from linuxbox2/ntirpc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
204 lines (157 loc) · 5.25 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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
# New TI-RPC Cmake
# Current version as of Fedora 16. Not tested with earlier.
cmake_minimum_required(VERSION 2.6.3)
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake/modules/")
# Add maintainer mode for (mainly) strict builds
include(${CMAKE_SOURCE_DIR}/cmake/maintainer_mode.cmake)
project(NTIRPC C)
# version numbers
set(NTIRPC_MAJOR_VERSION 1)
set(NTIRPC_MINOR_VERSION 4)
set(NTIRPC_PATCH_LEVEL 0)
set(VERSION_COMMENT
"Full-duplex and bi-directional ONC RPC on TCP."
)
# version string used for packaging
set(NTIRPC_VERSION
"${NTIRPC_MAJOR_VERSION}.${NTIRPC_MINOR_VERSION}.${NTIRPC_PATCH_LEVEL}")
# Install destination, if built standalone
get_property(USE_LIB64 GLOBAL PROPERTY FIND_LIBRARY_USE_LIB64_PATHS)
if (USE_LIB64)
set(LIB_INSTALL_DIR lib64 CACHE PATH
"Specify name of libdir inside install path")
else (USE_LIB64)
set(LIB_INSTALL_DIR lib CACHE PATH
"Specify name of libdir inside install path")
endif (USE_LIB64)
set(SYSTEM_LIBRARIES ${SYSTEM_LIBRARIES})
include(GetGitRevisionDescription)
get_git_head_revision(GIT_REFSPEC _GIT_HEAD_COMMIT)
git_describe(_GIT_DESCRIBE)
# Allow overriding of prefix
if (OVERRIDE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX ${OVERRIDE_INSTALL_PREFIX} CACHE PATH
"Install prefix" FORCE)
endif(OVERRIDE_INSTALL_PREFIX)
message(STATUS "OVERRIDE_INSTALL_PREFIX = ${OVERRIDE_INSTALL_PREFIX}")
# Set default base directory
set(NTIRPC_BASE_DIR ${PROJECT_SOURCE_DIR} CACHE
PATH "Path to base source directory of NTIRPC")
# Build configure options
option (USE_GSS "enable RPCSEC_GSS support" ON)
option(TIRPC_EPOLL "platform supports EPOLL or emulation" ON)
option(USE_RPC_RDMA "platform supports RDMA" OFF)
if (USE_RPC_RDMA)
find_package(RDMA REQUIRED)
include_directories(${RDMA_INCLUDE_DIR})
set(SYSTEM_LIBRARIES ${SYSTEM_LIBRARIES} ${RDMA_LIBRARY})
endif(USE_RPC_RDMA)
# MSPAC support -lwbclient link flag
option(_MSPAC_SUPPORT "enable mspac Winbind support" OFF)
# Choose a shortcut build config
IF(BUILD_CONFIG)
INCLUDE(
${CMAKE_SOURCE_DIR}/cmake/build_configurations/${BUILD_CONFIG}.cmake)
ENDIF()
# Build source locations and parameters
set(ALLOCATOR "jemalloc" CACHE STRING
"specify the memory allocator to use: jemalloc|tcmalloc|libc")
# Find packages and libs we need for building
include(CheckIncludeFiles)
include(TestBigEndian)
if(${CMAKE_SYSTEM_NAME} MATCHES "Linux")
set(LINUX ON)
endif(${CMAKE_SYSTEM_NAME} MATCHES "Linux")
if(${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD")
set(FREEBSD ON)
endif(${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD")
if(${CMAKE_SYSTEM_NAME} MATCHES "Windows")
set(WINDOWS ON)
if(${CMAKE_CXX_COMPILER_ID} MATCHES "MSVC")
set(MSVC ON)
endif(${CMAKE_CXX_COMPILER_ID} MATCHES "MSVC")
endif(${CMAKE_SYSTEM_NAME} MATCHES "Windows")
check_include_files(stdbool.h HAVE_STDBOOL_H)
check_include_files(strings.h HAVE_STRINGS_H)
check_include_files(string.h HAVE_STRING_H)
TEST_BIG_ENDIAN(BIGENDIAN)
if(${BIGENDIAN})
set(WORDS_BIGENDIAN ON)
else()
set(WORDS_BIGENDIAN OFF)
endif(${BIGENDIAN})
find_package(Threads REQUIRED)
find_package(Krb5 REQUIRED gssapi)
if(KRB5_FOUND)
set(HAVE_KRB5 ON)
set(KRB5_VERSION 194) # hand code until we do krb5-config --version magic
set(_HAVE_GSSAPI ON)
endif(KRB5_FOUND)
if(_MSPAC_SUPPORT)
find_package(WBclient REQUIRED)
set(SYSTEM_LIBRARIES ${WBclient_LIBRARIES} ${SYSTEM_LIBRARIES})
endif(_MSPAC_SUPPORT)
if (FREEBSD)
set(EXTRA_INCLUDE_DIR "/opt/ganesha/include")
else()
# workaround bug in some include_directories when no extra includes
set(EXTRA_INCLUDE_DIR "${NTIRPC_BASE_DIR}/ntirpc/")
endif(FREEBSD)
add_definitions(-DHAVE_CONFIG_H)
if (MSVC)
add_definitions(-D_CRT_SECURE_NO_WARNINGS)
endif(MSVC)
include_directories(BEFORE
"${PROJECT_BINARY_DIR}"
"${NTIRPC_BASE_DIR}/ntirpc/"
"${EXTRA_INCLUDE_DIR}"
)
# Find misc system libs
find_library(LIBRT rt) # extended Pthreads functions
find_library(LIBNSL nsl) # sockets
set(SYSTEM_LIBRARIES
${LIBTIRPC_LIBRARIES}
${KRB5_LIBRARIES}
gssapi_krb5
${SYSTEM_LIBRARIES}
${LIBRT}
${LIBNSL}
)
set(LIBNTIRPC_MAP "${PROJECT_BINARY_DIR}/src/libntirpc.map")
# subst files (need add_custom_command for dependency, fyi)
configure_file(
"${NTIRPC_BASE_DIR}/src/libntirpc.map.in.cmake"
"${PROJECT_BINARY_DIR}/libntirpc.map"
)
add_subdirectory(src)
# display configuration vars
message(STATUS)
message(STATUS "-------------------------------------------------------")
message(STATUS "TIRPC_EPOLL = ${TIRPC_EPOLL}")
message(STATUS "USE_RPC_RDMA = ${USE_RPC_RDMA}")
#force command line options to be stored in cache
set(_MSPAC_SUPPORT ${_MSPAC_SUPPORT}
CACHE BOOL
"compile with MSPAC extensions"
FORCE)
set(TIRPC_EPOLL ${TIRPC_EPOLL}
CACHE BOOL
"platform has EPOLL or emulation"
FORCE)
# grist files
configure_file(
"${NTIRPC_BASE_DIR}/config-h.in.cmake"
"${PROJECT_BINARY_DIR}/config.h"
)
configure_file(
"${NTIRPC_BASE_DIR}/version-h.in.cmake"
"${PROJECT_BINARY_DIR}/ntirpc/version.h"
)
configure_file(
"${NTIRPC_BASE_DIR}/libntirpc.pc.in.cmake"
"${PROJECT_BINARY_DIR}/libntirpc.pc"
)
########### install files ###############
install(FILES ${PROJECT_BINARY_DIR}/libntirpc.pc DESTINATION ${LIB_INSTALL_DIR}/pkgconfig)
install(DIRECTORY ${NTIRPC_BASE_DIR}/ntirpc DESTINATION include)
install(FILES ${PROJECT_BINARY_DIR}/ntirpc/version.h DESTINATION include/ntirpc)