2018-01-27 21:48:17 +00:00
|
|
|
# barrier -- mouse and keyboard sharing utility
|
2016-09-07 14:24:00 +00:00
|
|
|
# Copyright (C) 2012-2016 Symless Ltd.
|
2012-09-04 02:09:56 +00:00
|
|
|
# Copyright (C) 2011 Nick Bolton
|
2020-10-30 02:00:07 +00:00
|
|
|
#
|
2012-06-10 16:50:54 +00:00
|
|
|
# This package is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License
|
2015-05-03 02:33:52 +00:00
|
|
|
# found in the file LICENSE that should have accompanied this file.
|
2020-10-30 02:00:07 +00:00
|
|
|
#
|
2012-06-10 16:50:54 +00:00
|
|
|
# This package 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 General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2020-08-21 22:13:58 +00:00
|
|
|
if (BARRIER_USE_EXTERNAL_GTEST)
|
|
|
|
include (FindPkgConfig)
|
|
|
|
find_package(GTest REQUIRED)
|
|
|
|
pkg_check_modules(GMOCK REQUIRED gmock)
|
|
|
|
include_directories(
|
|
|
|
${GTEST_INCLUDE_DIRS}
|
|
|
|
${GMOCK_INCLUDE_DIRS}
|
|
|
|
)
|
|
|
|
else()
|
|
|
|
include_directories(
|
2021-01-07 21:43:51 +00:00
|
|
|
../ext/gtest
|
|
|
|
../ext/gtest/include
|
|
|
|
../ext/gmock
|
|
|
|
../ext/gmock/include
|
2020-08-21 22:13:58 +00:00
|
|
|
)
|
2012-06-10 16:50:54 +00:00
|
|
|
|
2021-01-07 21:43:51 +00:00
|
|
|
add_library(gtest STATIC ../ext/gtest/src/gtest-all.cc)
|
|
|
|
add_library(gmock STATIC ../ext/gmock/src/gmock-all.cc)
|
2020-08-21 22:13:58 +00:00
|
|
|
|
|
|
|
set(GTEST_LIBRARIES gtest)
|
|
|
|
set(GMOCK_LIBRARIES gmock)
|
|
|
|
|
|
|
|
if (UNIX)
|
|
|
|
# ignore warnings in gtest and gmock
|
|
|
|
set_target_properties(gtest PROPERTIES COMPILE_FLAGS "-w")
|
|
|
|
set_target_properties(gmock PROPERTIES COMPILE_FLAGS "-w")
|
|
|
|
endif()
|
2014-02-24 16:32:18 +00:00
|
|
|
endif()
|