50 lines
1.2 KiB
CMake
50 lines
1.2 KiB
CMake
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
|
|
set( GTEST_INCLUDE_SEARCH
|
|
${CMAKE_SOURCE_DIR}/thirdparty/gtest/include
|
|
)
|
|
|
|
set( GTEST_LIB_SEARCH
|
|
${CMAKE_SOURCE_DIR}/thirdparty/gtest
|
|
)
|
|
|
|
find_path(GTEST_INCLUDE
|
|
NAMES gtest/gtest.h
|
|
PATHS ${GTEST_INCLUDE_SEARCH}
|
|
NO_DEFAULT_PATH
|
|
)
|
|
|
|
find_library(GTEST_LIBRARY
|
|
NAMES gtest
|
|
PATHS ${GTEST_LIB_SEARCH}
|
|
NO_DEFAULT_PATH
|
|
)
|
|
|
|
find_library(GTEST_LIBRARY_MAIN
|
|
NAMES gtest_main
|
|
PATHS ${GTEST_LIB_SEARCH}
|
|
NO_DEFAULT_PATH
|
|
)
|
|
|
|
if (GTEST_INCLUDE AND GTEST_LIBRARY AND GTEST_LIBRARY_MAIN)
|
|
set(GTEST_LIBS ${GTEST_LIBRARY} ${GTEST_LIBRARY_MAIN})
|
|
set(GTEST_INCLUDE_DIR ${GTEST_INCLUDE})
|
|
set(GTEST_FOUND TRUE)
|
|
endif()
|
|
|
|
mark_as_advanced(
|
|
GTEST_INCLUDE_DIR
|
|
GTEST_LIBS
|
|
)
|