diff options
author | Joan Puigcerver <joapuipe@gmail.com> | 2015-12-03 08:33:21 (GMT) |
---|---|---|
committer | Joan Puigcerver <joapuipe@gmail.com> | 2015-12-03 08:33:21 (GMT) |
commit | 7c8ac4886a7ad513430d132c446a93c6d395345a (patch) | |
tree | 895d0f063c1bfb3f9535ea46a254b26a77af0ab5 | |
parent | 1f8fe13618a5b23c937140a7c9ad498cd93392e1 (diff) | |
download | googletest-7c8ac4886a7ad513430d132c446a93c6d395345a.zip googletest-7c8ac4886a7ad513430d132c446a93c6d395345a.tar.gz googletest-7c8ac4886a7ad513430d132c446a93c6d395345a.tar.bz2 |
Added CMake install rules for GMockrefs/pull/650/head
-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 |