diff options
author | Billy Donahue <BillyDonahue@users.noreply.github.com> | 2015-12-10 22:25:53 (GMT) |
---|---|---|
committer | Billy Donahue <BillyDonahue@users.noreply.github.com> | 2015-12-10 22:25:53 (GMT) |
commit | c1cd9c2b05d5acff704e4b831c01d2905efb0c1f (patch) | |
tree | f6903fce233fba3614de196033e406d1202bb5b6 | |
parent | 57b376a9cb8b7d0efd958bfaa3204bb33a03ac5e (diff) | |
parent | 7c8ac4886a7ad513430d132c446a93c6d395345a (diff) | |
download | googletest-c1cd9c2b05d5acff704e4b831c01d2905efb0c1f.zip googletest-c1cd9c2b05d5acff704e4b831c01d2905efb0c1f.tar.gz googletest-c1cd9c2b05d5acff704e4b831c01d2905efb0c1f.tar.bz2 |
Merge pull request #650 from jpuigcerver/master
Added missing CMake install rules for GMock
-rw-r--r-- | googlemock/CMakeLists.txt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/googlemock/CMakeLists.txt b/googlemock/CMakeLists.txt index cd52277..7f330c5 100644 --- a/googlemock/CMakeLists.txt +++ b/googlemock/CMakeLists.txt @@ -94,6 +94,14 @@ cxx_library(gmock_main ######################################################################## # +# Install rules +install(TARGETS gmock gmock_main + DESTINATION lib) +install(DIRECTORY ${gmock_SOURCE_DIR}/include/gmock + DESTINATION include) + +######################################################################## +# # Google Mock's own tests. # # You can skip this section if you aren't interested in testing |