Commit graph

52 commits

Author SHA1 Message Date
Mizux
0b7f8db2c6 Fix check of targets in package config when GFLAGS_USE_TARGET_NAMESPACE 2019-09-29 15:31:36 +01:00
Rosen Penev
2cac878761 package.pc.in: bin and libdir to exec_prefix
More consistent with other pkgconfig files.

No functional difference.
2019-09-17 19:13:49 +01:00
Andreas Schuh
1005485222 fixup: Keep CMake coding style with whitespace after command name 2018-12-05 11:11:48 +00:00
Andreas Schuh
be65295633 fix: GFLAGS_* variables take precedence in gflags_define 2018-12-05 11:11:48 +00:00
Phil Christensen
00fcadd9b8
Add missing @ to cmake file 2018-11-30 15:48:42 -08:00
Andreas Schuh
c0b1add45f fix: Import with GFLAGS_USE_TARGET_NAMESPACE=ON 2018-09-28 16:28:33 +01:00
Andreas Schuh
f1ea012a41 fix: Import with or without gflags:: namespace 2018-09-28 16:28:33 +01:00
Corentin Le Molgat
f7228d77b5 Use CMake namespace gflags:: for export and alias target
Now use gflags::gflags instead of gflags

note: seems already in use in gRPC
cf https://github.com/grpc/grpc/blob/master/cmake/gflags.cmake#L30
2018-01-31 13:46:59 +01:00
Jason Juang
4663c80d3a cmake: Add convenience uninstall target (#221)
Note: Leaves behind empty directories, no real uninstaller. Just for convenience of some.
2017-07-11 22:22:41 +01:00
randomguy3
21c7bcd895 Fix CMake macro special variable usage (#216)
The argument-related variables in a macro body are not real variables,
but special substitutions. They cannot be directly referred to by name,
only expanded.
2017-05-16 11:35:11 +01:00
Andreas Schuh
c94a60e2f6 enh: Configure and install pkg-config .pc file 2016-11-25 08:58:30 +00:00
Andreas Schuh
3886da50e1 enh: Add option to add installation to CMake’s package registry 2016-11-24 23:30:55 +00:00
Andreas Schuh
6c0ee003e8 fix: Copy missing IMPORTED_IMPLIB_<CONFIG> gflags target property 2016-11-24 23:23:23 +00:00
Andreas Schuh
3064f63a6e enh: Avoid use of install(EXPORTS) FILE option 2016-11-24 22:42:59 +00:00
Andreas Schuh
7a21c16f00 cmake: Rename targets to gflags[_nothreads]_(static|shared), support
find_package COMPONENTS
2016-03-01 21:04:10 +00:00
Andreas Schuh
2de6bf3904 cmake: Change CMake package configuration variable name prefix to GFLAGS_ 2016-03-01 20:12:34 +00:00
Andreas Schuh
91e16eeff1 cmake: Add CMake variable to cache only when gflags is not a subproject
This change allows the user to include the gflags project as subtree/
submodule in their own project. In this case, no CMake variables used
to configure the build and installation of the gflags library should be
added to the CMake cache.
2016-03-01 20:12:34 +00:00
Andreas Schuh
f4f524df1f #110 Set gflags_LIBRARIES to value of gflags_TARGET instead of "gflags" 2015-03-25 03:17:36 +00:00
Andreas Schuh
ed1d91f912 #110 Add "gflags" import target and gflags_TARGET
The gflags_TARGET variable contains the name of the originally exported import target. The "gflags" import target contains a copy of the relevant properties of this import target created by CMake. The gflags_LIBRARIES variable can be used to be consistent with other packages, but is otherwise no longer needed. In most cases, "target_link_libraries(foo gflags)" should be used.
2015-03-25 03:07:04 +00:00
Andreas Schuh
9e937e80fb #105 Add gflags_SHARED and gflags_NOTHREADED gflags-config.cmake options 2015-03-24 18:55:17 +00:00
Andreas Schuh
51f1db7431 #101 Enable C language again as long as FindThreads requires it
This avoids having patched CMake modules in the source tree of the gflags library. Usually a C compiler is installed along a C++ compiler (or it is used for C as well). The only slight downside is the extra configuration time needed by CMake to check the C compiler.
2015-03-24 15:36:26 +00:00
Andreas Schuh
76c53b710e #104 Set INTERFACE_INCLUDE_DIRECTORIES of (imported) targets 2015-03-24 14:44:12 +00:00
Andreas Schuh
659b440f9e Support alternative namespaces in GFLAGS_NAMESPACE CMake variable.
The first element in the GFLAGS_NAMESPACE list is used as primary/default namespace. The symbols are then imported from this primary namespace into each of the other alternative namespaces with the using keyword. This is in particular used to maintain backwards compatibility with previous gflags library versions that used the "google" namespace instead of the new default "gflags" namespace.
2014-05-02 14:56:58 +01:00
shawke
cac974eb07 Fix compatibility with older versions of CMake
The "SONAME_FLAG" was introduced in CMake 2.8.9, while the current CMake scripts require 2.8.4 (first line of CMakeLists.txt). Increasing the required CMake version will block building in less recent OSes (e.g., for Ubuntu 12.04 LTS, the latest version from the official repositories is currently 2.8.7). The more compatible solution will be to use the old variable name, i.e. the one which was used before CMake was patched.

NB: this issue is triggered upon specifying -DBUILD_SHARED_LIBS=ON.

Related bug report: http://public.kitware.com/Bug/view.php?id=13884 
Commit which implemented this new variable: http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=e1409ac5
2014-04-07 18:03:26 +02:00
Andreas Schuh
aff8ef820a Add GFLAGS_INCLUDE_DIR CMake variable (Fixes issue #80).
Both GFLAGS_NAMESPACE and GFLAGS_INCLUDE_DIR can be used to customize the installation of the gflags library. One specifies the C++ namespace name of the gflags symbols, the other the include subdirectory path of the public header files. By default, both are set to "gflags", but other Google libraries still expect "google" as C++ namespace name, but not necessarily also include path.
2014-03-27 01:09:20 +00:00
Andreas Schuh
d699559081 Fix architecture used for RPM packages and DEB/RPM package file names. 2014-03-20 20:21:30 +00:00
Andreas Schuh
a49a656f1e Use dpkg --print-architecture also for RPM generator. 2014-03-20 04:24:57 +00:00
Andreas Schuh
e8890f274a Set additional DEB CPack variables in package.cmake.in. 2014-03-20 04:20:15 +00:00
Andreas Schuh
b6f61ab0ce Fix bugs in package configuration file. 2014-03-20 03:38:59 +00:00
Andreas Schuh
37a9a90d1d Set RPM CPack variables already in CMakeList.txt. 2014-03-20 03:27:13 +00:00
Andreas Schuh
516e028901 Set RPM generator specific variables. 2014-03-20 03:23:08 +00:00
Andreas Schuh
9ecc4cab3b Enable packaging of library using CPack. 2014-03-20 02:11:44 +00:00
unknown
3d142b88d7 Convert line endings to Unix format. 2014-03-19 15:27:08 +01:00
Andreas Schuh
b18fe77ecd Fix check for pthreads library on Ubuntu. 2014-03-18 22:39:59 +00:00
Andreas Schuh
b8f5717416 Add missing CheckTypeSizeMap.cmake.in file.
Copied from CMake master branch.
2014-03-18 22:06:13 +00:00
Andreas Schuh
492ac156bc Fix DLL build on Windows and use PathMatchSpec instead of fnmatch.
Expose as few system variables as possible through public interface.
Perform STRIP_FLAGS_HELP test using CMake instead of Bash.
Change file path separator used by gflags_reporting.cc to backslash on Windwos.
2014-03-18 22:03:10 +00:00
Andreas Schuh
cf92ec3bf0 Modify CheckTypeSize.cmake module so it works with older CMake versions. 2014-03-18 21:59:48 +00:00
Andreas Schuh
8d93bca20a Minor CMake coding style change of version_numbers function. 2014-03-17 21:16:31 +00:00
Andreas Schuh
0d9486f9a3 Pass --test_tmpdir and --srcdir to unittests. 2014-03-17 21:15:52 +00:00
Andreas Schuh
c94e9bec36 Add missing execute_test.cmake script. 2014-03-17 16:12:56 +00:00
Andreas Schuh
bf918e630f Rename FindThreadsCXX module. 2014-03-17 13:44:03 +00:00
Andreas Schuh
33ee7ad6ef Fix typo in documentation and path of execute_test.cmake script. 2014-03-17 13:41:46 +00:00
Andreas Schuh
9b3c4a81c2 Modify CheckCXXLibraryExists to use CMakeFiles directory. 2014-03-17 13:25:04 +00:00
Andreas Schuh
f1e7b37c48 Add CheckCXXLibraryExists.cmake module and use it in FindTreadsCXX.cmake. 2014-03-17 13:17:44 +00:00
Andreas Schuh
1b1b61d305 Fix previous change of FindThreadsCxx.cmake by copying needed source file from CMake installation, changing the file name extension only. 2014-03-17 12:38:41 +00:00
Andreas Schuh
c5627a75bc Use CheckForPthreads.cxx to find pthreads library on Ubuntu. 2014-03-17 12:35:28 +00:00
Andreas Franek
f479174573 * fixed letter case of included file names
* C language definition is needed for CheckForPthreads.c
2014-03-17 09:38:15 +01:00
Andreas Schuh
8477f3174e Fix build with Xcode 5, system checks, set LANGUAGE to CXX. 2014-03-15 14:15:33 +00:00
Andreas Schuh
8a563cfca3 Migrate unit tests to CMake/CTest. Fix preprocessor directive in gflags_unittest.cc. 2014-03-14 20:32:37 +00:00
Andreas Schuh
7a07439cf6 Set PACKAGE_VERSION_EXACT to FALSE if major.minor version is not equal to the requested version. 2013-08-01 00:27:40 +01:00