blob: d5052f0b911b3105231ea7aa031b9797fa804105 [file] [log] [blame]
Andreas Schuh91e16ee2016-03-01 20:03:43 +00001## CMake configuration file of gflags project
2##
3## This CMakeLists.txt defines some gflags specific configuration variables
4## using the "gflags_define" utility macro. The default values of these variables
5## can be overridden either on the CMake command-line using the -D option of
6## the cmake command or in a super-project which includes the gflags source
7## tree by setting the GFLAGS_<varname> CMake variables before adding the
8## gflags source directory via CMake's "add_subdirectory" command. Only when
9## the non-cached variable GFLAGS_IS_SUBPROJECT has a value equivalent to FALSE,
10## these configuration variables are added to the CMake cache so they can be
11## edited in the CMake GUI. By default, GFLAGS_IS_SUBPROJECT is set to TRUE when
12## the CMAKE_SOURCE_DIR is not identical to the directory of this CMakeLists.txt
13## file, i.e., the top-level directory of the gflags project source tree.
14##
15## When this project is a subproject (GFLAGS_IS_SUBPROJECT is TRUE), the default
16## settings are such that only the static single-threaded library is built without
17## installation of the gflags files. The "gflags" target is in this case an ALIAS
Andreas Schuh7a21c162016-03-01 21:04:10 +000018## library target for the "gflags_nothreads_static" library target. Targets which
Andreas Schuh91e16ee2016-03-01 20:03:43 +000019## depend on the gflags library should link to the "gflags" library target.
20##
21## Example CMakeLists.txt of user project which requires separate gflags installation:
22## cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
23##
24## project(Foo)
25##
26## find_package(gflags REQUIRED)
27##
28## add_executable(foo src/foo.cc)
29## target_link_libraries(foo gflags)
30##
Andreas Schuh7a21c162016-03-01 21:04:10 +000031## Example CMakeLists.txt of user project which requires separate single-threaded static gflags installation:
32## cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
33##
34## project(Foo)
35##
36## find_package(gflags COMPONENTS nothreads_static)
37##
38## add_executable(foo src/foo.cc)
39## target_link_libraries(foo gflags)
40##
Andreas Schuh91e16ee2016-03-01 20:03:43 +000041## Example CMakeLists.txt of super-project which contains gflags source tree:
42## cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
43##
44## project(Foo)
45##
46## add_subdirectory(gflags)
47##
48## add_executable(foo src/foo.cc)
49## target_link_libraries(foo gflags)
50##
51## Variables to configure the source files:
52## - GFLAGS_IS_A_DLL
53## - GFLAGS_NAMESPACE
54## - GFLAGS_ATTRIBUTE_UNUSED
55## - GFLAGS_INTTYPES_FORMAT
56##
57## Variables to configure the build:
58## - GFLAGS_SOVERSION
59## - GFLAGS_BUILD_SHARED_LIBS
60## - GFLAGS_BUILD_STATIC_LIBS
61## - GFLAGS_BUILD_gflags_LIB
62## - GFLAGS_BUILD_gflags_nothreads_LIB
63## - GFLAGS_BUILD_TESTING
64## - GFLAGS_BUILD_PACKAGING
65##
66## Variables to configure the installation:
67## - GFLAGS_INCLUDE_DIR
68## - GFLAGS_LIBRARY_INSTALL_DIR or LIB_INSTALL_DIR or LIB_SUFFIX
69## - GFLAGS_INSTALL_HEADERS
70## - GFLAGS_INSTALL_SHARED_LIBS
71## - GFLAGS_INSTALL_STATIC_LIBS
72
Andreas Schuh58345b12015-04-03 16:12:38 +010073cmake_minimum_required (VERSION 2.8.12 FATAL_ERROR)
unknown3d142b82014-03-19 15:27:08 +010074
Andreas Schuh7b5b0802015-03-24 14:41:10 +000075if (POLICY CMP0042)
76 cmake_policy (SET CMP0042 NEW)
77endif ()
78
unknown3d142b82014-03-19 15:27:08 +010079# ----------------------------------------------------------------------------
80# includes
Andreas Schuh22ed2ce2016-11-26 15:37:45 +000081include ("${CMAKE_CURRENT_SOURCE_DIR}/cmake/utils.cmake")
unknown3d142b82014-03-19 15:27:08 +010082
83# ----------------------------------------------------------------------------
84# package information
Andreas Schuhc94a60e2016-11-25 08:50:08 +000085set (PACKAGE_NAME "gflags")
Andreas Schuh46f73f82017-07-11 18:30:34 +010086set (PACKAGE_VERSION "2.2.1")
Andreas Schuhc94a60e2016-11-25 08:50:08 +000087set (PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}")
88set (PACKAGE_TARNAME "${PACKAGE_NAME}-${PACKAGE_VERSION}")
89set (PACKAGE_BUGREPORT "https://github.com/gflags/gflags/issues")
90set (PACKAGE_DESCRIPTION "A commandline flags library that allows for distributed flags.")
91set (PACKAGE_URL "http://gflags.github.io/gflags")
unknown3d142b82014-03-19 15:27:08 +010092
Andreas Schuh9ecc4ca2014-03-20 02:11:44 +000093project (${PACKAGE_NAME} CXX)
Andreas Schuh20858a42016-11-26 21:55:33 +000094if (CMAKE_VERSION VERSION_LESS 3.4)
Andreas Schuh51f1db72015-03-24 15:36:26 +000095 # C language still needed because the following required CMake modules
96 # (or their dependencies, respectively) are not correctly handling
Andreas Schuh20858a42016-11-26 21:55:33 +000097 # the case where only CXX is enabled
98 # - CheckTypeSize.cmake (fixed in CMake 3.1, cf. https://cmake.org/Bug/view.php?id=14056)
99 # - FindThreads.cmake (fixed in CMake 3.4, cf. https://cmake.org/Bug/view.php?id=14905)
Andreas Schuh51f1db72015-03-24 15:36:26 +0000100 enable_language (C)
101endif ()
unknown3d142b82014-03-19 15:27:08 +0100102
103version_numbers (
104 ${PACKAGE_VERSION}
105 PACKAGE_VERSION_MAJOR
106 PACKAGE_VERSION_MINOR
107 PACKAGE_VERSION_PATCH
108)
109
Andreas Schuh91e16ee2016-03-01 20:03:43 +0000110# shared library ABI version number, can be overridden by package maintainers
111# using -DGFLAGS_SOVERSION=XXX on the command-line
112if (GFLAGS_SOVERSION)
113 set (PACKAGE_SOVERSION "${GFLAGS_SOVERSION}")
114else ()
Andreas Schuh45341952016-03-04 10:11:39 +0000115 # TODO: Change default SOVERSION back to PACKAGE_VERSION_MAJOR with the
116 # next increase of major version number (i.e., 3.0.0 -> SOVERSION 3)
117 # The <major>.<minor> SOVERSION should be used for the 2.x releases
118 # versions only which temporarily broke the API by changing the default
119 # namespace from "google" to "gflags".
120 set (PACKAGE_SOVERSION "${PACKAGE_VERSION_MAJOR}.${PACKAGE_VERSION_MINOR}")
Andreas Schuh91e16ee2016-03-01 20:03:43 +0000121endif ()
122
123# when gflags is included as subproject (e.g., as Git submodule/subtree) in the source
124# tree of a project that uses it, no variables should be added to the CMake cache;
125# users may set the non-cached variable GFLAGS_IS_SUBPROJECT before add_subdirectory(gflags)
126if (NOT DEFINED GFLAGS_IS_SUBPROJECT)
127 if ("^${CMAKE_SOURCE_DIR}$" STREQUAL "^${PROJECT_SOURCE_DIR}$")
128 set (GFLAGS_IS_SUBPROJECT FALSE)
129 else ()
130 set (GFLAGS_IS_SUBPROJECT TRUE)
131 endif ()
132endif ()
133
134# prefix for package variables in CMake configuration file
135string (TOUPPER "${PACKAGE_NAME}" PACKAGE_PREFIX)
Andreas Schuhbf889782014-05-01 20:16:16 +0100136
Andreas Schuh18469832016-11-24 23:15:34 +0000137# convert file path on Windows with back slashes to path with forward slashes
138# otherwise this causes an issue with the cmake_install.cmake script
139file (TO_CMAKE_PATH "${CMAKE_INSTALL_PREFIX}" CMAKE_INSTALL_PREFIX)
140
unknown3d142b82014-03-19 15:27:08 +0100141# ----------------------------------------------------------------------------
Andreas Schuh9ecc4ca2014-03-20 02:11:44 +0000142# options
Andreas Schuh91e16ee2016-03-01 20:03:43 +0000143
144# maintain binary backwards compatibility with gflags library version <= 2.0,
145# but at the same time enable the use of the preferred new "gflags" namespace
146gflags_define (STRING NAMESPACE "Name(s) of library namespace (separate multiple options by semicolon)" "google;${PACKAGE_NAME}" "${PACKAGE_NAME}")
147gflags_property (NAMESPACE ADVANCED TRUE)
148set (GFLAGS_NAMESPACE_SECONDARY "${NAMESPACE}")
Andreas Schuh659b4402014-05-02 14:56:58 +0100149list (REMOVE_DUPLICATES GFLAGS_NAMESPACE_SECONDARY)
150if (NOT GFLAGS_NAMESPACE_SECONDARY)
151 message (FATAL_ERROR "GFLAGS_NAMESPACE must be set to one (or more) valid C++ namespace identifier(s separated by semicolon \";\").")
Andreas Schuhaff8ef82014-03-27 01:09:20 +0000152endif ()
Andreas Schuh659b4402014-05-02 14:56:58 +0100153foreach (ns IN LISTS GFLAGS_NAMESPACE_SECONDARY)
154 if (NOT ns MATCHES "^[a-zA-Z][a-zA-Z0-9_]*$")
155 message (FATAL_ERROR "GFLAGS_NAMESPACE contains invalid namespace identifier: ${ns}")
156 endif ()
157endforeach ()
158list (GET GFLAGS_NAMESPACE_SECONDARY 0 GFLAGS_NAMESPACE)
159list (REMOVE_AT GFLAGS_NAMESPACE_SECONDARY 0)
unknown3d142b82014-03-19 15:27:08 +0100160
Andreas Schuh91e16ee2016-03-01 20:03:43 +0000161# cached build options when gflags is not a subproject, otherwise non-cached CMake variables
162# usage: gflags_define(BOOL <name> <doc> <default> [<subproject default>])
163gflags_define (BOOL BUILD_SHARED_LIBS "Request build of shared libraries." OFF OFF)
164gflags_define (BOOL BUILD_STATIC_LIBS "Request build of static libraries (default if BUILD_SHARED_LIBS is OFF)." OFF ON)
165gflags_define (BOOL BUILD_gflags_LIB "Request build of the multi-threaded gflags library." ON OFF)
166gflags_define (BOOL BUILD_gflags_nothreads_LIB "Request build of the single-threaded gflags library." ON ON)
167gflags_define (BOOL BUILD_PACKAGING "Enable build of distribution packages using CPack." OFF OFF)
168gflags_define (BOOL BUILD_TESTING "Enable build of the unit tests and their execution using CTest." OFF OFF)
169gflags_define (BOOL INSTALL_HEADERS "Request installation of headers and other development files." ON OFF)
170gflags_define (BOOL INSTALL_SHARED_LIBS "Request installation of shared libraries." ON ON)
171gflags_define (BOOL INSTALL_STATIC_LIBS "Request installation of static libraries." ON OFF)
Andreas Schuh3886da52016-11-24 22:36:48 +0000172gflags_define (BOOL REGISTER_BUILD_DIR "Request entry of build directory in CMake's package registry." OFF OFF)
173gflags_define (BOOL REGISTER_INSTALL_PREFIX "Request entry of installed package in CMake's package registry." ON OFF)
unknown3d142b82014-03-19 15:27:08 +0100174
Andreas Schuh91e16ee2016-03-01 20:03:43 +0000175gflags_property (BUILD_STATIC_LIBS ADVANCED TRUE)
176gflags_property (INSTALL_HEADERS ADVANCED TRUE)
177gflags_property (INSTALL_SHARED_LIBS ADVANCED TRUE)
178gflags_property (INSTALL_STATIC_LIBS ADVANCED TRUE)
179
180if (NOT GFLAGS_IS_SUBPROJECT)
181 foreach (varname IN ITEMS CMAKE_INSTALL_PREFIX)
182 gflags_property (${varname} ADVANCED FALSE)
183 endforeach ()
184 foreach (varname IN ITEMS CMAKE_CONFIGURATION_TYPES CMAKE_OSX_ARCHITECTURES CMAKE_OSX_DEPLOYMENT_TARGET CMAKE_OSX_SYSROOT)
185 gflags_property (${varname} ADVANCED TRUE)
186 endforeach ()
187 if (NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CXX_FLAGS)
188 gflags_set (CMAKE_BUILD_TYPE Release)
189 endif ()
190 if (CMAKE_CONFIGURATION_TYPES)
191 gflags_property (CMAKE_BUILD_TYPE STRINGS "${CMAKE_CONFIGURATION_TYPES}")
192 endif ()
193endif () # NOT GFLAGS_IS_SUBPROJECT
unknown3d142b82014-03-19 15:27:08 +0100194
Andreas Schuh9ecc4ca2014-03-20 02:11:44 +0000195if (NOT BUILD_SHARED_LIBS AND NOT BUILD_STATIC_LIBS)
196 set (BUILD_STATIC_LIBS ON)
197endif ()
198if (NOT BUILD_gflags_LIB AND NOT BUILD_gflags_nothreads_LIB)
Andreas Schuh91e16ee2016-03-01 20:03:43 +0000199 message (FATAL_ERROR "At least one of [GFLAGS_]BUILD_gflags_LIB and [GFLAGS_]BUILD_gflags_nothreads_LIB must be ON.")
Andreas Schuh9ecc4ca2014-03-20 02:11:44 +0000200endif ()
201
Andreas Schuh91e16ee2016-03-01 20:03:43 +0000202gflags_define (STRING INCLUDE_DIR "Name of include directory of installed header files relative to CMAKE_INSTALL_PREFIX/include/" "${PACKAGE_NAME}")
203gflags_property (INCLUDE_DIR ADVANCED TRUE)
Andreas Schuh18469832016-11-24 23:15:34 +0000204file (TO_CMAKE_PATH "${INCLUDE_DIR}" INCLUDE_DIR)
Andreas Schuh91e16ee2016-03-01 20:03:43 +0000205if (IS_ABSOLUTE INCLUDE_DIR)
206 message (FATAL_ERROR "[GFLAGS_]INCLUDE_DIR must be a path relative to CMAKE_INSTALL_PREFIX/include/")
Andreas Schuh9ecc4ca2014-03-20 02:11:44 +0000207endif ()
Andreas Schuh91e16ee2016-03-01 20:03:43 +0000208if (INCLUDE_DIR MATCHES "^\\.\\.[/\\]")
209 message (FATAL_ERROR "[GFLAGS_]INCLUDE_DIR must not start with parent directory reference (../)")
Andreas Schuh659b4402014-05-02 14:56:58 +0100210endif ()
Andreas Schuh91e16ee2016-03-01 20:03:43 +0000211set (GFLAGS_INCLUDE_DIR "${INCLUDE_DIR}")
Andreas Schuh659b4402014-05-02 14:56:58 +0100212
unknown3d142b82014-03-19 15:27:08 +0100213# ----------------------------------------------------------------------------
214# system checks
215include (CheckTypeSize)
216include (CheckIncludeFileCXX)
217include (CheckCXXSymbolExists)
218
Andreas Schuh9ecc4ca2014-03-20 02:11:44 +0000219if (WIN32 AND NOT CYGWIN)
220 set (OS_WINDOWS 1)
221else ()
222 set (OS_WINDOWS 0)
223endif ()
224
unknown3d142b82014-03-19 15:27:08 +0100225if (MSVC)
226 set (HAVE_SYS_TYPES_H 1)
unknown3d142b82014-03-19 15:27:08 +0100227 set (HAVE_STDDEF_H 1) # used by CheckTypeSize module
unknown3d142b82014-03-19 15:27:08 +0100228 set (HAVE_UNISTD_H 0)
229 set (HAVE_SYS_STAT_H 1)
Andreas Schuh92425782014-03-19 17:15:36 +0000230 set (HAVE_SHLWAPI_H 1)
Andreas Schuh6348ea92017-07-11 15:41:01 +0100231 if (MSVC_VERSION VERSION_LESS 1600)
232 check_include_file_cxx ("stdint.h" HAVE_STDINT_H)
233 bool_to_int (HAVE_STDINT_H) # used in #if directive
234 else ()
235 set (HAVE_STDINT_H 1)
236 endif ()
237 if (MSVC_VERSION VERSION_LESS 1800)
238 check_include_file_cxx ("inttypes.h" HAVE_INTTYPES_H)
239 bool_to_int (HAVE_INTTYPES_H) # used in #if directive
240 else ()
241 set (HAVE_INTTYPES_H 1)
242 endif ()
unknown3d142b82014-03-19 15:27:08 +0100243else ()
244 foreach (fname IN ITEMS unistd stdint inttypes sys/types sys/stat fnmatch)
245 string (TOUPPER "${fname}" FNAME)
Andreas Schuh92425782014-03-19 17:15:36 +0000246 string (REPLACE "/" "_" FNAME "${FNAME}")
unknown3d142b82014-03-19 15:27:08 +0100247 if (NOT HAVE_${FNAME}_H)
248 check_include_file_cxx ("${fname}.h" HAVE_${FNAME}_H)
249 endif ()
250 endforeach ()
Andreas Schuh6348ea92017-07-11 15:41:01 +0100251 if (NOT HAVE_FNMATCH_H AND OS_WINDOWS)
252 check_include_file_cxx ("shlwapi.h" HAVE_SHLWAPI_H)
253 endif ()
Andreas Schuhddc53572014-03-19 17:32:23 +0000254 # the following are used in #if directives not #ifdef
unknown3d142b82014-03-19 15:27:08 +0100255 bool_to_int (HAVE_STDINT_H)
256 bool_to_int (HAVE_SYS_TYPES_H)
257 bool_to_int (HAVE_INTTYPES_H)
258endif ()
259
Andreas Schuh91e16ee2016-03-01 20:03:43 +0000260gflags_define (STRING INTTYPES_FORMAT "Format of integer types: \"C99\" (uint32_t), \"BSD\" (u_int32_t), \"VC7\" (__int32)" "")
261gflags_property (INTTYPES_FORMAT STRINGS "C99;BSD;VC7")
262gflags_property (INTTYPES_FORMAT ADVANCED TRUE)
263if (NOT INTTYPES_FORMAT)
unknown3d142b82014-03-19 15:27:08 +0100264 set (TYPES uint32_t u_int32_t)
265 if (MSVC)
266 list (INSERT TYPES 0 __int32)
267 endif ()
268 foreach (type IN LISTS TYPES)
269 check_type_size (${type} ${type} LANGUAGE CXX)
270 if (HAVE_${type})
271 break ()
272 endif ()
273 endforeach ()
274 if (HAVE_uint32_t)
Andreas Schuh91e16ee2016-03-01 20:03:43 +0000275 gflags_set (INTTYPES_FORMAT C99)
unknown3d142b82014-03-19 15:27:08 +0100276 elseif (HAVE_u_int32_t)
Andreas Schuh91e16ee2016-03-01 20:03:43 +0000277 gflags_set (INTTYPES_FORMAT BSD)
unknown3d142b82014-03-19 15:27:08 +0100278 elseif (HAVE___int32)
Andreas Schuh91e16ee2016-03-01 20:03:43 +0000279 gflags_set (INTTYPES_FORMAT VC7)
unknown3d142b82014-03-19 15:27:08 +0100280 else ()
Andreas Schuh91e16ee2016-03-01 20:03:43 +0000281 gflags_property (INTTYPES_FORMAT ADVANCED FALSE)
unknown3d142b82014-03-19 15:27:08 +0100282 message (FATAL_ERROR "Do not know how to define a 32-bit integer quantity on your system!"
283 " Neither uint32_t, u_int32_t, nor __int32 seem to be available."
Andreas Schuh91e16ee2016-03-01 20:03:43 +0000284 " Set [GFLAGS_]INTTYPES_FORMAT to either C99, BSD, or VC7 and try again.")
unknown3d142b82014-03-19 15:27:08 +0100285 endif ()
286endif ()
287# use of special characters in strings to circumvent bug #0008226
Andreas Schuh91e16ee2016-03-01 20:03:43 +0000288if ("^${INTTYPES_FORMAT}$" STREQUAL "^WIN$")
289 gflags_set (INTTYPES_FORMAT VC7)
unknown3d142b82014-03-19 15:27:08 +0100290endif ()
Andreas Schuh91e16ee2016-03-01 20:03:43 +0000291if (NOT INTTYPES_FORMAT MATCHES "^(C99|BSD|VC7)$")
292 message (FATAL_ERROR "Invalid value for [GFLAGS_]INTTYPES_FORMAT! Choose one of \"C99\", \"BSD\", or \"VC7\"")
unknown3d142b82014-03-19 15:27:08 +0100293endif ()
Andreas Schuh91e16ee2016-03-01 20:03:43 +0000294set (GFLAGS_INTTYPES_FORMAT "${INTTYPES_FORMAT}")
unknown3d142b82014-03-19 15:27:08 +0100295set (GFLAGS_INTTYPES_FORMAT_C99 0)
296set (GFLAGS_INTTYPES_FORMAT_BSD 0)
297set (GFLAGS_INTTYPES_FORMAT_VC7 0)
Andreas Schuh91e16ee2016-03-01 20:03:43 +0000298set ("GFLAGS_INTTYPES_FORMAT_${INTTYPES_FORMAT}" 1)
unknown3d142b82014-03-19 15:27:08 +0100299
300if (MSVC)
301 set (HAVE_strtoll 0)
302 set (HAVE_strtoq 0)
303else ()
Andreas Schuh0b116eb2014-03-19 15:56:26 +0000304 check_cxx_symbol_exists (strtoll stdlib.h HAVE_STRTOLL)
305 if (NOT HAVE_STRTOLL)
306 check_cxx_symbol_exists (strtoq stdlib.h HAVE_STRTOQ)
307 endif ()
unknown3d142b82014-03-19 15:27:08 +0100308endif ()
309
Andreas Schuh91e16ee2016-03-01 20:03:43 +0000310if (BUILD_gflags_LIB)
311 set (CMAKE_THREAD_PREFER_PTHREAD TRUE)
312 find_package (Threads)
313 if (Threads_FOUND AND CMAKE_USE_PTHREADS_INIT)
314 set (HAVE_PTHREAD 1)
315 check_type_size (pthread_rwlock_t RWLOCK LANGUAGE CXX)
316 else ()
317 set (HAVE_PTHREAD 0)
318 endif ()
319 if (UNIX AND NOT HAVE_PTHREAD)
320 if (CMAKE_HAVE_PTHREAD_H)
321 set (what "library")
322 else ()
323 set (what ".h file")
324 endif ()
325 message (FATAL_ERROR "Could not find pthread${what}. Check the log file"
326 "\n\t${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeError.log"
327 "\nor disable the build of the multi-threaded gflags library (BUILD_gflags_LIB=OFF).")
328 endif ()
unknown3d142b82014-03-19 15:27:08 +0100329else ()
330 set (HAVE_PTHREAD 0)
331endif ()
332
unknown3d142b82014-03-19 15:27:08 +0100333# ----------------------------------------------------------------------------
334# source files - excluding root subdirectory and/or .in suffix
335set (PUBLIC_HDRS
336 "gflags.h"
337 "gflags_declare.h"
338 "gflags_completions.h"
339)
340
Andreas Schuh659b4402014-05-02 14:56:58 +0100341if (GFLAGS_NAMESPACE_SECONDARY)
342 set (INCLUDE_GFLAGS_NS_H "// Import gflags library symbols into alternative/deprecated namespace(s)")
343 foreach (ns IN LISTS GFLAGS_NAMESPACE_SECONDARY)
344 string (TOUPPER "${ns}" NS)
345 set (gflags_ns_h "${PROJECT_BINARY_DIR}/include/${GFLAGS_INCLUDE_DIR}/gflags_${ns}.h")
346 configure_file ("${PROJECT_SOURCE_DIR}/src/gflags_ns.h.in" "${gflags_ns_h}" @ONLY)
347 list (APPEND PUBLIC_HDRS "${gflags_ns_h}")
348 set (INCLUDE_GFLAGS_NS_H "${INCLUDE_GFLAGS_NS_H}\n#include \"gflags_${ns}.h\"")
349 endforeach ()
350else ()
351 set (INCLUDE_GFLAGS_NS_H)
352endif ()
353
unknown3d142b82014-03-19 15:27:08 +0100354set (PRIVATE_HDRS
Andreas Schuh57ceb0e2017-08-31 18:53:26 +0100355 "defines.h"
unknown3d142b82014-03-19 15:27:08 +0100356 "config.h"
Andreas Schuh9ecc4ca2014-03-20 02:11:44 +0000357 "util.h"
358 "mutex.h"
unknown3d142b82014-03-19 15:27:08 +0100359)
360
361set (GFLAGS_SRCS
362 "gflags.cc"
Andreas Schuh8f2c22a2016-11-25 13:42:29 +0000363 "gflags_reporting.cc"
364 "gflags_completions.cc"
unknown3d142b82014-03-19 15:27:08 +0100365)
366
Andreas Schuh41181662014-03-19 16:46:56 +0000367if (OS_WINDOWS)
unknown3d142b82014-03-19 15:27:08 +0100368 list (APPEND PRIVATE_HDRS "windows_port.h")
369 list (APPEND GFLAGS_SRCS "windows_port.cc")
370endif ()
371
372# ----------------------------------------------------------------------------
373# configure source files
Andreas Schuh91e16ee2016-03-01 20:03:43 +0000374if (NOT DEFINED GFLAGS_ATTRIBUTE_UNUSED)
375 if (CMAKE_COMPILER_IS_GNUCXX)
376 set (GFLAGS_ATTRIBUTE_UNUSED "__attribute((unused))")
377 else ()
378 set (GFLAGS_ATTRIBUTE_UNUSED)
379 endif ()
unknown3d142b82014-03-19 15:27:08 +0100380endif ()
381
Andreas Schuh6040eac2014-03-25 15:29:56 +0000382# whenever we build a shared library (DLL on Windows), configure the public
Andreas Schuh3e7ef742016-11-25 08:25:09 +0000383# headers of the API for use of this shared library rather than the optionally
Andreas Schuh6040eac2014-03-25 15:29:56 +0000384# also build statically linked library; users can override GFLAGS_DLL_DECL
Andreas Schuh3e7ef742016-11-25 08:25:09 +0000385# in particular, this done by setting the INTERFACE_COMPILE_DEFINITIONS of
386# static libraries to include an empty definition for GFLAGS_DLL_DECL
Andreas Schuh91e16ee2016-03-01 20:03:43 +0000387if (NOT DEFINED GFLAGS_IS_A_DLL)
388 if (BUILD_SHARED_LIBS)
389 set (GFLAGS_IS_A_DLL 1)
390 else ()
391 set (GFLAGS_IS_A_DLL 0)
392 endif ()
Andreas Schuh6040eac2014-03-25 15:29:56 +0000393endif ()
394
unknown3d142b82014-03-19 15:27:08 +0100395configure_headers (PUBLIC_HDRS ${PUBLIC_HDRS})
396configure_sources (PRIVATE_HDRS ${PRIVATE_HDRS})
397configure_sources (GFLAGS_SRCS ${GFLAGS_SRCS})
398
399# ----------------------------------------------------------------------------
400# output directories
Andreas Schuh91e16ee2016-03-01 20:03:43 +0000401if (NOT GFLAGS_IS_SUBPROJECT)
402 set (CMAKE_RUNTIME_OUTPUT_DIRECTORY "bin")
403 set (CMAKE_LIBRARY_OUTPUT_DIRECTORY "lib")
404 set (CMAKE_ARCHIVE_OUTPUT_DIRECTORY "lib")
405endif ()
kokerfcad38c92018-03-31 09:30:35 +0800406# Set postfixes for generated libraries based on buildtype.
407set(CMAKE_RELEASE_POSTFIX "")
408set(CMAKE_DEBUG_POSTFIX "_debug")
unknown3d142b82014-03-19 15:27:08 +0100409
410# ----------------------------------------------------------------------------
Andreas Schuh76c53b72015-03-24 14:44:12 +0000411# installation directories
412if (OS_WINDOWS)
Arkady Shapkin80ebb422017-05-11 15:02:21 +0300413 set (RUNTIME_INSTALL_DIR "bin")
414 set (LIBRARY_INSTALL_DIR "lib")
415 set (INCLUDE_INSTALL_DIR "include")
416 set (CONFIG_INSTALL_DIR "lib/cmake/${PACKAGE_NAME}")
Andreas Schuhc94a60e2016-11-25 08:50:08 +0000417 set (PKGCONFIG_INSTALL_DIR)
Andreas Schuh76c53b72015-03-24 14:44:12 +0000418else ()
419 set (RUNTIME_INSTALL_DIR bin)
420 # The LIB_INSTALL_DIR and LIB_SUFFIX variables are used by the Fedora
421 # package maintainers. Also package maintainers of other distribution
422 # packages need to be able to specify the name of the library directory.
Andreas Schuh91e16ee2016-03-01 20:03:43 +0000423 if (NOT GFLAGS_LIBRARY_INSTALL_DIR AND LIB_INSTALL_DIR)
424 set (GFLAGS_LIBRARY_INSTALL_DIR "${LIB_INSTALL_DIR}")
Andreas Schuh76c53b72015-03-24 14:44:12 +0000425 endif ()
Andreas Schuh91e16ee2016-03-01 20:03:43 +0000426 gflags_define (PATH LIBRARY_INSTALL_DIR "Directory of installed libraries, e.g., \"lib64\"" "lib${LIB_SUFFIX}")
427 gflags_property (LIBRARY_INSTALL_DIR ADVANCED TRUE)
Andreas Schuh76c53b72015-03-24 14:44:12 +0000428 set (INCLUDE_INSTALL_DIR include)
429 set (CONFIG_INSTALL_DIR ${LIBRARY_INSTALL_DIR}/cmake/${PACKAGE_NAME})
Andreas Schuhc94a60e2016-11-25 08:50:08 +0000430 set (PKGCONFIG_INSTALL_DIR ${LIBRARY_INSTALL_DIR}/pkgconfig)
Andreas Schuh76c53b72015-03-24 14:44:12 +0000431endif ()
432
433# ----------------------------------------------------------------------------
Andreas Schuh9ecc4ca2014-03-20 02:11:44 +0000434# add library targets
435set (TARGETS)
436# static vs. shared
437foreach (TYPE IN ITEMS STATIC SHARED)
438 if (BUILD_${TYPE}_LIBS)
Arnaud Farbosd78b00d2015-11-05 12:03:37 -0800439 string (TOLOWER "${TYPE}" type)
Andreas Schuh9ecc4ca2014-03-20 02:11:44 +0000440 # whether or not targets are a DLL
441 if (OS_WINDOWS AND "^${TYPE}$" STREQUAL "^SHARED$")
442 set (GFLAGS_IS_A_DLL 1)
443 else ()
444 set (GFLAGS_IS_A_DLL 0)
445 endif ()
Andreas Schuh6bd636c2016-02-29 17:58:46 +0000446 # filename suffix for static libraries on Windows
447 if (OS_WINDOWS AND "^${TYPE}$" STREQUAL "^STATIC$")
448 set (type_suffix "_${type}")
449 else ()
450 set (type_suffix "")
451 endif ()
Andreas Schuh9ecc4ca2014-03-20 02:11:44 +0000452 # multi-threaded vs. single-threaded
453 foreach (opts IN ITEMS "" _nothreads)
454 if (BUILD_gflags${opts}_LIB)
Andreas Schuh3e7ef742016-11-25 08:25:09 +0000455 set (target_name "gflags${opts}_${type}")
456 add_library (${target_name} ${TYPE} ${GFLAGS_SRCS} ${PRIVATE_HDRS} ${PUBLIC_HDRS})
457 set_target_properties (${target_name} PROPERTIES
458 OUTPUT_NAME "gflags${opts}${type_suffix}"
459 VERSION "${PACKAGE_VERSION}"
460 SOVERSION "${PACKAGE_SOVERSION}"
461 )
Andreas Schuh58345b12015-04-03 16:12:38 +0100462 set (include_dirs "$<BUILD_INTERFACE:${PROJECT_BINARY_DIR}/include>")
463 if (INSTALL_HEADERS)
464 list (APPEND include_dirs "$<INSTALL_INTERFACE:${INCLUDE_INSTALL_DIR}>")
Andreas Schuh76c53b72015-03-24 14:44:12 +0000465 endif ()
Andreas Schuh3e7ef742016-11-25 08:25:09 +0000466 target_include_directories (${target_name}
Andreas Schuh58345b12015-04-03 16:12:38 +0100467 PUBLIC "${include_dirs}"
468 PRIVATE "${PROJECT_SOURCE_DIR}/src;${PROJECT_BINARY_DIR}/include/${GFLAGS_INCLUDE_DIR}"
469 )
Andreas Schuh3e7ef742016-11-25 08:25:09 +0000470 target_compile_definitions (${target_name} PUBLIC GFLAGS_IS_A_DLL=${GFLAGS_IS_A_DLL})
Andreas Schuh9ecc4ca2014-03-20 02:11:44 +0000471 if (opts MATCHES "nothreads")
Andreas Schuh3e7ef742016-11-25 08:25:09 +0000472 target_compile_definitions (${target_name} PRIVATE NO_THREADS)
473 elseif (CMAKE_USE_PTHREADS_INIT)
474 target_link_libraries (${target_name} ${CMAKE_THREAD_LIBS_INIT})
Andreas Schuh9ecc4ca2014-03-20 02:11:44 +0000475 endif ()
Andreas Schuh9ecc4ca2014-03-20 02:11:44 +0000476 if (HAVE_SHLWAPI_H)
Andreas Schuh3e7ef742016-11-25 08:25:09 +0000477 target_link_libraries (${target_name} shlwapi.lib)
Andreas Schuh9ecc4ca2014-03-20 02:11:44 +0000478 endif ()
Andreas Schuh3e7ef742016-11-25 08:25:09 +0000479 list (APPEND TARGETS ${target_name})
Andreas Schuh91e16ee2016-03-01 20:03:43 +0000480 # add convenience make target for build of both shared and static libraries
481 if (NOT GFLAGS_IS_SUBPROJECT)
482 if (NOT TARGET gflags${opts})
483 add_custom_target (gflags${opts})
484 endif ()
Andreas Schuh3e7ef742016-11-25 08:25:09 +0000485 add_dependencies (gflags${opts} ${target_name})
Andreas Schuh91e16ee2016-03-01 20:03:43 +0000486 endif ()
Andreas Schuh9ecc4ca2014-03-20 02:11:44 +0000487 endif ()
488 endforeach ()
Andreas Schuhddc53572014-03-19 17:32:23 +0000489 endif ()
Andreas Schuh9ecc4ca2014-03-20 02:11:44 +0000490endforeach ()
unknown3d142b82014-03-19 15:27:08 +0100491
Andreas Schuh91e16ee2016-03-01 20:03:43 +0000492# add ALIAS target for use in super-project, prefer static over shared, single-threaded over multi-threaded
493if (GFLAGS_IS_SUBPROJECT)
494 foreach (type IN ITEMS static shared)
495 foreach (opts IN ITEMS "_nothreads" "")
Andreas Schuh7a21c162016-03-01 21:04:10 +0000496 if (TARGET gflags${opts}_${type})
497 add_library (gflags ALIAS gflags${opts}_${type})
Andreas Schuh91e16ee2016-03-01 20:03:43 +0000498 break ()
499 endif ()
500 endforeach ()
501 if (TARGET gflags)
502 break ()
503 endif ()
504 endforeach ()
505endif ()
506
unknown3d142b82014-03-19 15:27:08 +0100507# ----------------------------------------------------------------------------
Andreas Schuh76c53b72015-03-24 14:44:12 +0000508# installation rules
Andreas Schuh3064f632016-11-24 21:49:41 +0000509set (EXPORT_NAME ${PACKAGE_NAME}-targets)
unknown3d142b82014-03-19 15:27:08 +0100510file (RELATIVE_PATH INSTALL_PREFIX_REL2CONFIG_DIR "${CMAKE_INSTALL_PREFIX}/${CONFIG_INSTALL_DIR}" "${CMAKE_INSTALL_PREFIX}")
511configure_file (cmake/config.cmake.in "${PROJECT_BINARY_DIR}/${PACKAGE_NAME}-config-install.cmake" @ONLY)
512configure_file (cmake/version.cmake.in "${PROJECT_BINARY_DIR}/${PACKAGE_NAME}-config-version.cmake" @ONLY)
513
Andreas Schuh91e16ee2016-03-01 20:03:43 +0000514if (BUILD_SHARED_LIBS AND INSTALL_SHARED_LIBS)
515 foreach (opts IN ITEMS "" _nothreads)
516 if (BUILD_gflags${opts}_LIB)
Arkady Shapkin80ebb422017-05-11 15:02:21 +0300517 install (TARGETS gflags${opts}_shared
518 EXPORT ${EXPORT_NAME}
519 RUNTIME DESTINATION ${RUNTIME_INSTALL_DIR}
520 LIBRARY DESTINATION ${LIBRARY_INSTALL_DIR}
521 ARCHIVE DESTINATION ${LIBRARY_INSTALL_DIR})
Andreas Schuh91e16ee2016-03-01 20:03:43 +0000522 endif ()
523 endforeach ()
524endif ()
525if (BUILD_STATIC_LIBS AND INSTALL_STATIC_LIBS)
526 foreach (opts IN ITEMS "" _nothreads)
527 if (BUILD_gflags${opts}_LIB)
Arkady Shapkin80ebb422017-05-11 15:02:21 +0300528 install (TARGETS gflags${opts}_static
529 EXPORT ${EXPORT_NAME}
530 RUNTIME DESTINATION ${RUNTIME_INSTALL_DIR}
531 LIBRARY DESTINATION ${LIBRARY_INSTALL_DIR}
532 ARCHIVE DESTINATION ${LIBRARY_INSTALL_DIR})
Andreas Schuh91e16ee2016-03-01 20:03:43 +0000533 endif ()
534 endforeach ()
535endif ()
536
Andreas Schuh9ecc4ca2014-03-20 02:11:44 +0000537if (INSTALL_HEADERS)
Andreas Schuhaff8ef82014-03-27 01:09:20 +0000538 install (FILES ${PUBLIC_HDRS} DESTINATION ${INCLUDE_INSTALL_DIR}/${GFLAGS_INCLUDE_DIR})
Andreas Schuh9ecc4ca2014-03-20 02:11:44 +0000539 install (
540 FILES "${PROJECT_BINARY_DIR}/${PACKAGE_NAME}-config-install.cmake"
541 RENAME ${PACKAGE_NAME}-config.cmake
542 DESTINATION ${CONFIG_INSTALL_DIR}
543 )
544 install (
545 FILES "${PROJECT_BINARY_DIR}/${PACKAGE_NAME}-config-version.cmake"
546 DESTINATION ${CONFIG_INSTALL_DIR}
547 )
Andreas Schuh3064f632016-11-24 21:49:41 +0000548 install (EXPORT ${EXPORT_NAME} DESTINATION ${CONFIG_INSTALL_DIR})
Andreas Schuh9ecc4ca2014-03-20 02:11:44 +0000549 if (UNIX)
550 install (PROGRAMS src/gflags_completions.sh DESTINATION ${RUNTIME_INSTALL_DIR})
551 endif ()
unknown3d142b82014-03-19 15:27:08 +0100552endif ()
553
Andreas Schuhc94a60e2016-11-25 08:50:08 +0000554if (PKGCONFIG_INSTALL_DIR)
555 configure_file ("cmake/package.pc.in" "${PROJECT_BINARY_DIR}/${PACKAGE_NAME}.pc" @ONLY)
556 install (FILES "${PROJECT_BINARY_DIR}/${PACKAGE_NAME}.pc" DESTINATION "${PKGCONFIG_INSTALL_DIR}")
557endif ()
558
unknown3d142b82014-03-19 15:27:08 +0100559# ----------------------------------------------------------------------------
560# support direct use of build tree
561set (INSTALL_PREFIX_REL2CONFIG_DIR .)
Andreas Schuh3064f632016-11-24 21:49:41 +0000562export (TARGETS ${TARGETS} FILE "${PROJECT_BINARY_DIR}/${EXPORT_NAME}.cmake")
Andreas Schuh3886da52016-11-24 22:36:48 +0000563if (REGISTER_BUILD_DIR)
564 export (PACKAGE ${PACKAGE_NAME})
565endif ()
566if (REGISTER_INSTALL_PREFIX)
567 register_gflags_package(${CONFIG_INSTALL_DIR})
568endif ()
unknown3d142b82014-03-19 15:27:08 +0100569configure_file (cmake/config.cmake.in "${PROJECT_BINARY_DIR}/${PACKAGE_NAME}-config.cmake" @ONLY)
570
571# ----------------------------------------------------------------------------
572# testing - MUST follow the generation of the build tree config file
unknown3d142b82014-03-19 15:27:08 +0100573if (BUILD_TESTING)
Andreas Schuh9ecc4ca2014-03-20 02:11:44 +0000574 include (CTest)
unknown3d142b82014-03-19 15:27:08 +0100575 enable_testing ()
576 add_subdirectory (test)
577endif ()
Andreas Schuh9ecc4ca2014-03-20 02:11:44 +0000578
579# ----------------------------------------------------------------------------
580# packaging
581if (BUILD_PACKAGING)
582
583 if (NOT BUILD_SHARED_LIBS AND NOT INSTALL_HEADERS)
584 message (WARNING "Package will contain static libraries without headers!"
585 "\nRecommended options for generation of runtime package:"
586 "\n BUILD_SHARED_LIBS=ON"
587 "\n BUILD_STATIC_LIBS=OFF"
588 "\n INSTALL_HEADERS=OFF"
Andreas Schuh91e16ee2016-03-01 20:03:43 +0000589 "\n INSTALL_SHARED_LIBS=ON"
Andreas Schuh9ecc4ca2014-03-20 02:11:44 +0000590 "\nRecommended options for generation of development package:"
591 "\n BUILD_SHARED_LIBS=ON"
592 "\n BUILD_STATIC_LIBS=ON"
Andreas Schuh91e16ee2016-03-01 20:03:43 +0000593 "\n INSTALL_HEADERS=ON"
594 "\n INSTALL_SHARED_LIBS=ON"
595 "\n INSTALL_STATIC_LIBS=ON")
Andreas Schuh9ecc4ca2014-03-20 02:11:44 +0000596 endif ()
597
598 # default package generators
599 if (APPLE)
600 set (PACKAGE_GENERATOR "PackageMaker")
601 set (PACKAGE_SOURCE_GENERATOR "TGZ;ZIP")
602 elseif (UNIX)
603 set (PACKAGE_GENERATOR "DEB;RPM")
604 set (PACKAGE_SOURCE_GENERATOR "TGZ;ZIP")
605 else ()
606 set (PACKAGE_GENERATOR "ZIP")
607 set (PACKAGE_SOURCE_GENERATOR "ZIP")
608 endif ()
609
610 # used package generators
611 set (CPACK_GENERATOR "${PACKAGE_GENERATOR}" CACHE STRING "List of binary package generators (CPack).")
612 set (CPACK_SOURCE_GENERATOR "${PACKAGE_SOURCE_GENERATOR}" CACHE STRING "List of source package generators (CPack).")
613 mark_as_advanced (CPACK_GENERATOR CPACK_SOURCE_GENERATOR)
614
Andreas Schuh64ac2e32015-03-24 16:21:44 +0000615 # some package generators (e.g., PackageMaker) do not allow .md extension
616 configure_file ("${CMAKE_CURRENT_LIST_DIR}/README.md" "${CMAKE_CURRENT_BINARY_DIR}/README.txt" COPYONLY)
617
Andreas Schuh9ecc4ca2014-03-20 02:11:44 +0000618 # common package information
Andreas Schuhfc6e0792014-03-20 04:09:02 +0000619 set (CPACK_PACKAGE_VENDOR "Andreas Schuh")
Andreas Schuh9ecc4ca2014-03-20 02:11:44 +0000620 set (CPACK_PACKAGE_CONTACT "google-gflags@googlegroups.com")
621 set (CPACK_PACKAGE_NAME "${PACKAGE_NAME}")
622 set (CPACK_PACKAGE_VERSION "${PACKAGE_VERSION}")
623 set (CPACK_PACKAGE_VERSION_MAJOR "${PACKAGE_VERSION_MAJOR}")
624 set (CPACK_PACKAGE_VERSION_MINOR "${PACKAGE_VERSION_MINOR}")
625 set (CPACK_PACKAGE_VERSION_PATCH "${PACKAGE_VERSION_PATCH}")
Andreas Schuhc94a60e2016-11-25 08:50:08 +0000626 set (CPACK_PACKAGE_DESCRIPTION_SUMMARY "${PACKAGE_DESCRIPTION}")
Andreas Schuha819f0f2015-03-24 16:29:31 +0000627 set (CPACK_RESOURCE_FILE_WELCOME "${CMAKE_CURRENT_BINARY_DIR}/README.txt")
Andreas Schuh9ecc4ca2014-03-20 02:11:44 +0000628 set (CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_LIST_DIR}/COPYING.txt")
Andreas Schuha819f0f2015-03-24 16:29:31 +0000629 set (CPACK_PACKAGE_DESCRIPTION_FILE "${CMAKE_CURRENT_BINARY_DIR}/README.txt")
Andreas Schuh9ecc4ca2014-03-20 02:11:44 +0000630 set (CPACK_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
631 set (CPACK_OUTPUT_FILE_PREFIX packages)
632 set (CPACK_PACKAGE_RELOCATABLE TRUE)
633 set (CPACK_MONOLITHIC_INSTALL TRUE)
634
Andreas Schuhe8890f22014-03-20 04:20:15 +0000635 # RPM package information -- used in cmake/package.cmake.in also for DEB
Andreas Schuh37a9a902014-03-20 03:27:13 +0000636 set (CPACK_RPM_PACKAGE_GROUP "Development/Libraries")
637 set (CPACK_RPM_PACKAGE_LICENSE "BSD")
Andreas Schuhc94a60e2016-11-25 08:50:08 +0000638 set (CPACK_RPM_PACKAGE_URL "${PACKAGE_URL}")
Andreas Schuh37a9a902014-03-20 03:27:13 +0000639 set (CPACK_RPM_CHANGELOG_FILE "${CMAKE_CURRENT_LIST_DIR}/ChangeLog.txt")
640
Andreas Schuh9ecc4ca2014-03-20 02:11:44 +0000641 if (INSTALL_HEADERS)
Andreas Schuh2b8deaa2015-03-24 14:41:52 +0000642 set (CPACK_RESOURCE_FILE_README "${CMAKE_CURRENT_LIST_DIR}/doc/index.html")
Andreas Schuh9ecc4ca2014-03-20 02:11:44 +0000643 else ()
644 set (CPACK_RESOURCE_FILE_README "${CMAKE_CURRENT_LIST_DIR}/cmake/README_runtime.txt")
645 endif ()
646
Andreas Schuhd6995592014-03-20 20:21:30 +0000647 # system/architecture
Andreas Schuh9ecc4ca2014-03-20 02:11:44 +0000648 if (WINDOWS)
649 if (CMAKE_CL_64)
650 set (CPACK_SYSTEM_NAME "win64")
651 else ()
652 set (CPACK_SYSTEM_NAME "win32")
653 endif ()
Andreas Schuhd6995592014-03-20 20:21:30 +0000654 set (CPACK_PACKAGE_ARCHITECTURE)
Andreas Schuhef5c5472014-03-30 15:34:13 +0100655 elseif (APPLE)
656 set (CPACK_PACKAGE_ARCHITECTURE darwin)
Andreas Schuh9ecc4ca2014-03-20 02:11:44 +0000657 else ()
658 string (TOLOWER "${CMAKE_SYSTEM_NAME}" CPACK_SYSTEM_NAME)
Andreas Schuhcf40f732014-03-20 20:56:05 +0000659 if (CMAKE_CXX_FLAGS MATCHES "-m32")
660 set (CPACK_PACKAGE_ARCHITECTURE i386)
661 else ()
662 execute_process (
663 COMMAND dpkg --print-architecture
664 RESULT_VARIABLE RV
665 OUTPUT_VARIABLE CPACK_PACKAGE_ARCHITECTURE
666 )
667 if (RV EQUAL 0)
668 string (STRIP "${CPACK_PACKAGE_ARCHITECTURE}" CPACK_PACKAGE_ARCHITECTURE)
669 else ()
670 execute_process (COMMAND uname -m OUTPUT_VARIABLE CPACK_PACKAGE_ARCHITECTURE)
671 if (CPACK_PACKAGE_ARCHITECTURE MATCHES "x86_64")
672 set (CPACK_PACKAGE_ARCHITECTURE amd64)
673 else ()
674 set (CPACK_PACKAGE_ARCHITECTURE i386)
675 endif ()
676 endif ()
677 endif ()
Andreas Schuh9ecc4ca2014-03-20 02:11:44 +0000678 endif ()
679
680 # source package settings
681 set (CPACK_SOURCE_TOPLEVEL_TAG "source")
682 set (CPACK_SOURCE_PACKAGE_FILE_NAME "${CPACK_PACKAGE_NAME}-${CPACK_PACKAGE_VERSION}")
683 set (CPACK_SOURCE_IGNORE_FILES "/\\\\.git/;\\\\.swp$;\\\\.#;/#;\\\\.*~;cscope\\\\.*;/[Bb]uild[.+-_a-zA-Z0-9]*/")
684
685 # default binary package settings
Andreas Schuhd6995592014-03-20 20:21:30 +0000686 set (CPACK_INCLUDE_TOPLEVEL_DIRECTORY TRUE)
687 set (CPACK_PACKAGE_FILE_NAME "${CPACK_PACKAGE_NAME}-${CPACK_PACKAGE_VERSION}-${CPACK_SYSTEM_NAME}")
688 if (CPACK_PACKAGE_ARCHITECTURE)
689 set (CPACK_PACKAGE_FILE_NAME "${CPACK_PACKAGE_FILE_NAME}-${CPACK_PACKAGE_ARCHITECTURE}")
Andreas Schuh9ecc4ca2014-03-20 02:11:44 +0000690 endif ()
691
692 # generator specific configuration file
693 #
694 # allow package maintainers to use their own configuration file
695 # $ cmake -DCPACK_PROJECT_CONFIG_FILE:FILE=/path/to/package/config
696 if (NOT CPACK_PROJECT_CONFIG_FILE)
697 configure_file (
698 "${CMAKE_CURRENT_LIST_DIR}/cmake/package.cmake.in"
699 "${PROJECT_BINARY_DIR}/${PACKAGE_NAME}-package.cmake" @ONLY
700 )
701 set (CPACK_PROJECT_CONFIG_FILE "${PROJECT_BINARY_DIR}/${PACKAGE_NAME}-package.cmake")
702 endif ()
703
704 include (CPack)
705
706endif () # BUILD_PACKAGING
Jason Juang4663c802017-07-11 14:22:41 -0700707
708if (NOT GFLAGS_IS_SUBPROJECT AND NOT TARGET uninstall)
709 configure_file (
710 "${CMAKE_CURRENT_SOURCE_DIR}/cmake/cmake_uninstall.cmake.in"
711 "${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake" @ONLY
712 )
713 add_custom_target(uninstall COMMAND ${CMAKE_COMMAND} -P "${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake")
714endif ()