summaryrefslogtreecommitdiffstats
path: root/googletest
diff options
context:
space:
mode:
authorNeal Gompa <ngompa13@gmail.com>2020-03-21 09:35:12 (GMT)
committerNeal Gompa <ngompa13@gmail.com>2020-03-21 09:50:10 (GMT)
commit94a7cf8c57e48caa9c120e8147c78ba7c4915050 (patch)
treef936524865e62c149f7b2ef37c7ba65eadd12b06 /googletest
parent749148f1accc346d94825358a9a745b852961a11 (diff)
downloadgoogletest-94a7cf8c57e48caa9c120e8147c78ba7c4915050.zip
googletest-94a7cf8c57e48caa9c120e8147c78ba7c4915050.tar.gz
googletest-94a7cf8c57e48caa9c120e8147c78ba7c4915050.tar.bz2
Set the version for the librariesrefs/pull/2755/head
When building packaged shared libraries for use, having the version set makes it so that the soname is set correctly for parallel installation. This change is derived from the one used for the Fedora gtest package. Signed-off-by: Neal Gompa <ngompa13@gmail.com>
Diffstat (limited to 'googletest')
-rw-r--r--googletest/CMakeLists.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/googletest/CMakeLists.txt b/googletest/CMakeLists.txt
index 4fd7b52..f538c96 100644
--- a/googletest/CMakeLists.txt
+++ b/googletest/CMakeLists.txt
@@ -126,7 +126,9 @@ include_directories(${gtest_build_include_dirs})
# are used for other targets, to ensure that gtest can be compiled by a user
# aggressive about warnings.
cxx_library(gtest "${cxx_strict}" src/gtest-all.cc)
+set_target_properties(gtest PROPERTIES VERSION ${GOOGLETEST_VERSION})
cxx_library(gtest_main "${cxx_strict}" src/gtest_main.cc)
+set_target_properties(gtest_main PROPERTIES VERSION ${GOOGLETEST_VERSION})
# If the CMake version supports it, attach header directory information
# to the targets for when we are part of a parent build (ie being pulled
# in via add_subdirectory() rather than being a standalone build).