This repository was archived by the owner on Mar 27, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsfgtest-config.cmake
130 lines (106 loc) · 4.82 KB
/
sfgtest-config.cmake
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
##
## @code
## ___ _____ _ ___ _ _____ ___ ___ ___ ___
## / __|_ _/_\ / __| |/ / __/ _ \| _ \/ __| __|
## \__ \ | |/ _ \ (__| ' <| _| (_) | / (__| _|
## |___/ |_/_/ \_\___|_|\_\_| \___/|_|_\\___|___|
## embedded.connectivity.solutions.==============
## @endcode
##
## @file
## @copyright STACKFORCE GmbH, Heitersheim, Germany, http://www.stackforce.de
## @author STACKFORCE
## @brief STACKFORCE CMake Module for googeltest
##
## This file is part of the STACKFORCE CMake modules collection
## (below "sf cmake modules collection").
##
## sf cmake modules collection is free software: you can redistribute it
## and/or modify it under the terms of the GNU Affero General Public License
## as published by the Free Software Foundation, either version 3 of the
## License, or (at your option) any later version.
##
## sf cmake modules collection is distributed in the hope that it will be
## useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
## GNU Affero General Public License for more details.
##
## You should have received a copy of the GNU Affero General Public License
## along with sf cmake modules collection.
## If not, see <http://www.gnu.org/licenses/>.
##
cmake_minimum_required (VERSION 2.8)
if(TARGET googletest)
MESSAGE(STATUS "googletest already exists!")
else()
MESSAGE(STATUS "Add googletest")
find_package(Threads REQUIRED)
# Enable ExternalProject CMake module
include(ExternalProject)
# Configure the project for testing
include(CTest)
if(WIN32)
# Properly disable phtreads when compiling with MinGW
# fix #606
set(GTEST_GIT_REPOSITORY https://github.com/andoks/googletest.git)
# This WIN32 switch can be removed as soon as this commit is in mainline
set(GTEST_GIT_TAG 1f40320c1cb94d1c184d4e6308c1fe3cdca827ea)
set(GTEST_PATCH_COMMAND echo "add_subdirectory(googlemock)" > CMakeLists.txt)
else()
set(GTEST_GIT_REPOSITORY https://github.com/google/googletest.git)
set(GTEST_GIT_TAG ddb8012eb48bc203aa93dcc2b22c1db516302b29)
set(GTEST_PATCH_COMMAND)
endif()
if(${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION} VERSION_LESS "3.2")
message(STATUS "CMake version ${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}")
message(STATUS "Retarded CMake distributor detected. Are you using ubuntu?")
ExternalProject_Add(googletest # Name for custom target
GIT_REPOSITORY ${GTEST_GIT_REPOSITORY}
GIT_TAG ${GTEST_GIT_TAG}
PATCH_COMMAND ${GTEST_PATCH_COMMAND}
INSTALL_COMMAND ""
)
else()
message(STATUS "CMake version ${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}")
ExternalProject_Add(googletest # Name for custom target
GIT_REPOSITORY ${GTEST_GIT_REPOSITORY}
GIT_TAG ${GTEST_GIT_TAG}
# Never update automatically from the remote repository
UPDATE_DISCONNECTED 1
PATCH_COMMAND ${GTEST_PATCH_COMMAND}
INSTALL_COMMAND ""
)
endif()
ExternalProject_Get_Property(googletest source_dir)
MESSAGE(STATUS "google source_dir is:\n " ${source_dir} )
add_library(libgmock IMPORTED STATIC GLOBAL)
add_dependencies(libgmock googletest)
set( GTEST_INCLUDE_GOOGLETEST "${source_dir}/googletest/include/")
set( GTEST_INCLUDE_GOOGLEMOCK "${source_dir}/googlemock/include/")
# Set gmock properties
ExternalProject_Get_Property(googletest source_dir binary_dir)
set_target_properties(libgmock PROPERTIES
"IMPORTED_LOCATION" "${binary_dir}/googlemock/libgmock.a"
"IMPORTED_LINK_INTERFACE_LIBRARIES" "${CMAKE_THREAD_LIBS_INIT}"
# This does not work as intended
#"INTERFACE_INCLUDE_DIRECTORIES" "${GTEST_INCLUDE_GOOGLETEST}"
#"INTERFACE_INCLUDE_DIRECTORIES" "${GTEST_INCLUDE_GOOGLEMOCK}"
)
include_directories("${GTEST_INCLUDE_GOOGLETEST}")
include_directories("${GTEST_INCLUDE_GOOGLEMOCK}")
# CMake seems to demand that the directories referenced by the
# INTERFACE_INCLUDE_DIRECTORIES property of an IMPORTED target can be
# found at configure-time. This is quite unhelpful if those directories
# are only generated generated as part of the build.
# This is a Workaround proposed in
# bug report:
# http://public.kitware.com/Bug/bug_relationship_graph.php?bug_id=14495
# See also:
# http://public.kitware.com/Bug/view.php?id=15052&nbn=2
file(MAKE_DIRECTORY "${GTEST_INCLUDE_GOOGLETEST}")
file(MAKE_DIRECTORY "${GTEST_INCLUDE_GOOGLEMOCK}")
# Let other cmake targets know where to find the header files.
set_property(TARGET libgmock APPEND PROPERTY INTERFACE_INCLUDE_DIRECTORIES
"${GTEST_INCLUDE_GOOGLETEST}"
"${GTEST_INCLUDE_GOOGLEMOCK}")
endif()