blob: 821346ced6ca644c8b6d9dd3e46fd0ea6d9d73a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# -*- cmake -*-
include(Prebuilt)
include(Linking)
use_prebuilt_binary(googlemock)
if( TARGET googlemock::googlemock )
return()
endif()
create_target( googlemock::googlemock )
set_target_include_dirs( googlemock::googlemock
${LIBS_PREBUILT_DIR}/include
)
if (LINUX)
# VWR-24366: gmock is underlinked, it needs gtest.
set_target_libraries( googlemock::googlemock gmock gtest)
elseif(WINDOWS)
set_target_libraries( googlemock::googlemock gmock)
set_target_include_dirs( googlemock::googlemock
${LIBS_PREBUILT_DIR}/include
${LIBS_PREBUILT_DIR}/include/gmock)
elseif(DARWIN)
set_target_libraries( googlemock::googlemock gmock gtest)
endif(LINUX)
|