mirror of
https://github.com/gflags/gflags.git
synced 2025-04-05 05:25:04 +00:00
Merge remote-tracking branch 'google/bugfix/#82-shared-library-versioning'
This commit is contained in:
commit
05b155ff59
1 changed files with 4 additions and 5 deletions
|
@ -22,7 +22,7 @@ version_numbers (
|
|||
PACKAGE_VERSION_PATCH
|
||||
)
|
||||
|
||||
set (PACKAGE_SOVERSION "${PACKAGE_VERSION_MAJOR}.${PACKAGE_VERSION_MINOR}")
|
||||
set (PACKAGE_SOVERSION "${PACKAGE_VERSION_MAJOR}")
|
||||
|
||||
# ----------------------------------------------------------------------------
|
||||
# options
|
||||
|
@ -258,10 +258,9 @@ foreach (TYPE IN ITEMS STATIC SHARED)
|
|||
endif ()
|
||||
set_target_properties (
|
||||
gflags${opts}-${type} PROPERTIES COMPILE_DEFINITIONS "${defines}"
|
||||
OUTPUT_NAME "gflags${opts}"
|
||||
# Set VERSION instead of SOVERSION such
|
||||
# that it is also used on Windows
|
||||
VERSION "${PACKAGE_SOVERSION}"
|
||||
OUTPUT_NAME "gflags${opts}"
|
||||
VERSION "${PACKAGE_VERSION}"
|
||||
SOVERSION "${PACKAGE_SOVERSION}"
|
||||
)
|
||||
if (HAVE_SHLWAPI_H)
|
||||
target_link_libraries (gflags${opts}-${type} shlwapi.lib)
|
||||
|
|
Loading…
Add table
Reference in a new issue