# Copyright (c) 2015-2016 The Khronos Group Inc. # # # 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. if (DEFINED SPIRV-Headers_SOURCE_DIR) # This allows flexible position of the SPIRV-Headers repo. set(SPIRV_HEADER_DIR ${SPIRV-Headers_SOURCE_DIR}) else() set(SPIRV_HEADER_DIR ${CMAKE_CURRENT_SOURCE_DIR}/spirv-headers) endif() if (IS_DIRECTORY ${SPIRV_HEADER_DIR}) set(SPIRV_HEADER_INCLUDE_DIR ${SPIRV_HEADER_DIR}/include PARENT_SCOPE) else() message(FATAL_ERROR "SPIRV-Headers was not found - please checkout a copy under external/.") endif() if (NOT ${SPIRV_SKIP_EXECUTABLES}) # Find gmock if we can. If it's not already configured, then try finding # it in external/googletest. if (TARGET gmock) message(STATUS "Google Mock already configured") else() set(GMOCK_DIR ${CMAKE_CURRENT_SOURCE_DIR}/googletest/googlemock) if(EXISTS ${GMOCK_DIR}) if(WIN32) option(gtest_force_shared_crt "Use shared (DLL) run-time lib even when Google Test is built as static lib." ON) endif() add_subdirectory(${GMOCK_DIR} EXCLUDE_FROM_ALL) endif() endif() if (TARGET gmock) set(GTEST_TARGETS gtest gtest_main gmock gmock_main ) foreach(target ${GTEST_TARGETS}) set_property(TARGET ${target} PROPERTY FOLDER GoogleTest) endforeach() endif() endif()