mirror of
https://github.com/gflags/gflags.git
synced 2025-04-05 05:25:04 +00:00
Merge remote-tracking branch 'google/release' into develop
This commit is contained in:
commit
cf0619e458
2 changed files with 14 additions and 1 deletions
|
@ -8,7 +8,7 @@ include (utils)
|
|||
# ----------------------------------------------------------------------------
|
||||
# package information
|
||||
set (PACKAGE_NAME "gflags")
|
||||
set (PACKAGE_VERSION "2.1.0")
|
||||
set (PACKAGE_VERSION "2.1.1")
|
||||
set (PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}")
|
||||
set (PACKAGE_TARNAME "${PACKAGE_NAME}-${PACKAGE_VERSION}")
|
||||
set (PACKAGE_BUGREPORT "https://code.google.com/p/gflags/issues/")
|
||||
|
@ -392,6 +392,8 @@ if (BUILD_PACKAGING)
|
|||
set (CPACK_SYSTEM_NAME "win32")
|
||||
endif ()
|
||||
set (CPACK_PACKAGE_ARCHITECTURE)
|
||||
elseif (APPLE)
|
||||
set (CPACK_PACKAGE_ARCHITECTURE darwin)
|
||||
else ()
|
||||
string (TOLOWER "${CMAKE_SYSTEM_NAME}" CPACK_SYSTEM_NAME)
|
||||
if (CMAKE_CXX_FLAGS MATCHES "-m32")
|
||||
|
|
11
NEWS.txt
11
NEWS.txt
|
@ -1,3 +1,14 @@
|
|||
=== 30 March 2014 ===
|
||||
|
||||
I've just released gflags 2.1.1.
|
||||
|
||||
This release fixes a few bugs in the configuration of gflags_declare.h
|
||||
and adds a separate GFLAGS_INCLUDE_DIR CMake variable to the build configuration.
|
||||
Setting GFLAGS_NAMESPACE to "google" no longer changes also the include
|
||||
path of the public header files. This allows the use of the library with
|
||||
other Google projects such as glog which still use the deprecated "google"
|
||||
namespace for the gflags library, but include it as "gflags/gflags.h".
|
||||
|
||||
=== 20 March 2014 ===
|
||||
|
||||
I've just released gflags 2.1.
|
||||
|
|
Loading…
Add table
Reference in a new issue