Commit graph

109 commits

Author SHA1 Message Date
Andreas Schuh
76cbe0d003 Change default GFLAGS_NAMESPACE to "google;gflags" and add GFLAGS_INCLUDE_DIR with default "gflags" to cache.
This ensures binary compatibility with previous 2.x release versions while allowing users to refer to the gflags library symbols using the preferred "gflags" namespace identifier.
2014-07-17 02:45:50 +01: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
Andreas Schuh
cd7aece14e Use major version number only as SOVERSION. 2014-05-02 11:12:05 +01:00
Andreas Schuh
bf889786c2 Set VERSION property of library targets to <major>.<minor>. 2014-05-01 20:16:16 +01:00
Andreas Schuh
31f0e290d6 Use LIB_INSTALL_DIR to initialize LIBRARY_INSTALL_DIR.
In particular the Fedora package maintainers pass LIB_INSTALL_DIR instead of LIBRARY_INSTALL_DIR.
2014-05-01 19:58:25 +01:00
Andreas Schuh
e9144aa159 Make LIBRARY_INSTALL_DIR configurable by the user. 2014-05-01 19:49:24 +01:00
John Khvatov
55490439d0 cmake: append LIB_SUFFIX to LIBRARY_INSTALL_DIR 2014-05-01 04:11:54 +04:00
Andreas Schuh
ef5c5474b2 Set CPACK_PACKAGE_ARCHITECTURE to darwin on Mac OS. 2014-03-30 15:34:13 +01:00
Andreas Schuh
eb5e1f7fe4 Bump version to 2.1.1. 2014-03-30 15:17:49 +01: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
6040eac5b3 Use GFLAGS_IS_A_DLL=1 in public headers if BUILD_SHARED_LIBS is enabled (Fixes issue #77). 2014-03-25 15:30:37 +00:00
Andreas Schuh
3fd9fa7000 Resolve conflicts upon pull. 2014-03-20 21:25:35 +00:00
Andreas Schuh
cf40f73c40 Set package architecture to i386 when compiling with -m32. 2014-03-20 20:56:05 +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
3e96a19026 Change version to 2.1.0, i.e., use common semantic versioning system including patch number for bug fix releases. 2014-03-20 16:19:00 +00:00
Andreas Schuh
e8890f274a Set additional DEB CPack variables in package.cmake.in. 2014-03-20 04:20:15 +00:00
Andreas Schuh
fc6e079cfc Change package vendor to just a name. 2014-03-20 04:09:02 +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
13fe86b8fe Correct CPack package description file. 2014-03-20 03:22:57 +00:00
Andreas Schuh
bf139ea0a8 Fix build of threaded library on Unix by adding the appropriate link library. 2014-03-20 03:04:44 +00:00
Andreas Schuh
cb62c00354 Change mode of text file. 2014-03-20 02:14:30 +00:00
Andreas Schuh
9ecc4cab3b Enable packaging of library using CPack. 2014-03-20 02:11:44 +00:00
Andreas Schuh
ddc5357419 Add link dependency on shlwapi.lib during build configuration instead of #pragma comment statement. Use this library also on MinGW. 2014-03-19 17:32:23 +00:00
Andreas Schuh
9242578bc1 Look for shlwapi.h also in case of MinGW. 2014-03-19 17:15:36 +00:00
Andreas Schuh
41181669d1 Use OS_WINDOWS #define instead of _WIN32 and WINDOWS.
The OS_WINDOWS #define has previously been used in gflags.cc before the CMake migration.
2014-03-19 16:46:56 +00:00
Andreas Schuh
0b116eb439 Simplify check for strtoll and strtoq. 2014-03-19 15:56:26 +00:00
unknown
3d142b88d7 Convert line endings to Unix format. 2014-03-19 15:27:08 +01:00
Andreas Schuh
8566bcf1eb Replace GFLAGS_HAVE_* #defines by HAVE_* again. 2014-03-19 14:24:52 +00:00
Andreas Schuh
b18fe77ecd Fix check for pthreads library on Ubuntu. 2014-03-18 22:39:59 +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
505686bd7a Require at least CMake 2.8.4 to avoid Cygwin legacy warning. 2014-03-17 20:54:48 +00:00
Andreas Schuh
cb00fb9ec7 Remove obsolete set(GFLAGS_INTTYPES_FORMAT) call. 2014-03-17 13:39:10 +00:00
Andreas Schuh
c6a9986fa0 Minor style change to be consistent. 2014-03-17 13:39:10 +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
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
a4c4a01a37 Check if pthread_rwlock_t is available and use it if so. 2014-03-15 14:31:21 +00: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
15bc2d6c15 Issue #73 Merge gflags_config.h into gflags_declare.h. Configuration of gflags.h no longer needed. 2014-03-14 16:29:51 +00:00
Andreas Schuh
b2180eb52c Fix build on Windows using Visual Studio. Add gflags_config.h. 2014-03-14 15:28:34 +00:00
Andreas Schuh
efc6908bce Add header files to add_library targets so they show up in IDEs. 2014-03-14 13:29:11 +00:00
Dani Perez
459e529168 exporting binary tree to CMake registry
This eases integration with other applications making use
of gflags without needing to install it in the system.
find_package looks in the registry for existing software.
2013-10-22 23:03:27 +02:00
Andreas Schuh
1c9f065dd0 Add negative compilation tests. 2013-08-01 03:31:47 +01:00
Andreas Schuh
7abcbdcbbd Add gflags library which is built with NO_THREADS definition. 2013-08-01 02:04:37 +01:00
Andreas Schuh
126f36b826 Enable build and execution of tests again using CTest. 2013-08-01 01:47:13 +01:00
Andreas Schuh
620557ccbc Install Bash completion script. 2013-08-01 01:06:36 +01:00
Andreas Schuh
2ec91bffad Move definition of configure_sources CMake function to utils module. 2013-08-01 00:17:53 +01:00