forked from linuxbox2/ntirpc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
253 lines (200 loc) · 6.65 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
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
# 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 7)
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}")
# Up scope for embedding in ganesha
set(NTIRPC_VERSION_EMBED "${NTIRPC_VERSION}" PARENT_SCOPE)
set(NTIRPC_ABI_EMBED "${NTIRPC_MAJOR_VERSION}.${NTIRPC_MINOR_VERSION}" PARENT_SCOPE)
set( PACKNAME "${NTIRPC_VERSION}" )
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
# 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})
set(BINARY_LIBRARIES ${BINARY_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)
if (USE_GSS)
find_package(Krb5 REQUIRED gssapi)
if(KRB5_FOUND)
set(HAVE_KRB5 ON)
set(_HAVE_GSSAPI ON)
else(KRB5_FOUND)
set(USE_GSS OFF)
endif(KRB5_FOUND)
endif (USE_GSS)
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)
option(USE_PROFILE "Build with gperf profiling" OFF)
if (USE_PROFILE)
find_package(Gperftools)
if(GPERFTOOLS_FOUND)
set(BINARY_LIBRARIES ${BINARY_LIBRARIES} ${GPERFTOOLS_LIBRARIES})
else(GPERFTOOLS_FOUND)
message(WARNING "Couldn't find gperftools. Disabling USE_PROFILE")
set(USE_PROFILE OFF)
endif(GPERFTOOLS_FOUND)
endif(USE_PROFILE)
# 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(EPOLL REQUIRED)
set(TIRPC_EPOLL ${EPOLL_FOUND})
find_package(Sanitizers)
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
set(SYSTEM_LIBRARIES
${LIBTIRPC_LIBRARIES}
${KRB5_LIBRARIES}
${SYSTEM_LIBRARIES}
${LIBRT}
)
if (NOT FREEBSD)
find_package(NSL) # sockets
set(SYSTEM_LIBRARIES
${SYSTEM_LIBRARIES}
${NSL_LIBRARY}
)
endif (NOT FREEBSD)
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)
add_subdirectory(tests)
# display configuration vars
message(STATUS)
message(STATUS "-------------------------------------------------------")
message(STATUS "TIRPC_EPOLL = ${TIRPC_EPOLL}")
message(STATUS "USE_RPC_RDMA = ${USE_RPC_RDMA}")
message(STATUS "USE_GSS = ${USE_GSS}")
message(STATUS "USE_PROFILE = ${USE_PROFILE}")
#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"
@ONLY
)
configure_file(
"${NTIRPC_BASE_DIR}/libntirpc.spec-in.cmake"
"${PROJECT_SOURCE_DIR}/libntirpc.spec"
)
# Define CPACK component (to deal with sub packages)
set(CPACK_COMPONENTS_ALL daemon fsal headers )
set(CPACK_COMPONENT_DAEMON_DISPLAY_NAME "libntirpc")
# Include custom config and cpack module
include(${CMAKE_SOURCE_DIR}/cmake/cpack_config.cmake)
include(CPack)
set( PKG_NAME "${CPACK_PACKAGE_NAME}-${CPACK_PACKAGE_VERSION}.tar.gz")
if (NOT TARGET dist)
add_custom_target(dist COMMAND ${CMAKE_MAKE_PROGRAM} package_source)
endif (NOT TARGET dist)
########### 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)