mirror of
https://github.com/gflags/gflags.git
synced 2025-04-05 05:25:04 +00:00
Set VERSION property of library targets to <major>.<minor>.
This commit is contained in:
parent
e160474c52
commit
bf889786c2
1 changed files with 5 additions and 0 deletions
|
@ -22,6 +22,8 @@ version_numbers (
|
|||
PACKAGE_VERSION_PATCH
|
||||
)
|
||||
|
||||
set (PACKAGE_SOVERSION "${PACKAGE_VERSION_MAJOR}.${PACKAGE_VERSION_MINOR}")
|
||||
|
||||
# ----------------------------------------------------------------------------
|
||||
# options
|
||||
set (GFLAGS_NAMESPACE "${PACKAGE_NAME}" CACHE STRING "C++ namespace identifier of gflags library.")
|
||||
|
@ -257,6 +259,9 @@ foreach (TYPE IN ITEMS STATIC SHARED)
|
|||
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}"
|
||||
)
|
||||
if (HAVE_SHLWAPI_H)
|
||||
target_link_libraries (gflags${opts}-${type} shlwapi.lib)
|
||||
|
|
Loading…
Add table
Reference in a new issue