summaryrefslogtreecommitdiff
path: root/external/CMakeLists.txt
blob: da0b2e6497b5aa07fc64eb446194c5bdf180cfb6 (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
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
# 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()
  if (IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/SPIRV-Headers)
    set(SPIRV_HEADER_DIR ${CMAKE_CURRENT_SOURCE_DIR}/SPIRV-Headers)
  else()
    set(SPIRV_HEADER_DIR ${CMAKE_CURRENT_SOURCE_DIR}/spirv-headers)
  endif()
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_TESTS})
  # 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(MSVC)
        # Our tests use ::testing::Combine.  Work around a compiler
        # detection problem in googletest, where that template is
        # accidentally disabled for VS 2017.
        # See https://github.com/google/googletest/issues/1352
        add_definitions(-DGTEST_HAS_COMBINE=1)
      endif()
      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()

  set(SPIRV_ENABLE_EFFCEE ON)
  if (MSVC)
    if (MSVC_VERSION LESS 1900)
      message(STATUS "SPIRV-Tools: Need Visual Studio 2015 or later for Effcee and RE2")
      set(SPIRV_ENABLE_EFFCEE OFF)
    endif()
  endif()

  if (SPIRV_ENABLE_EFFCEE)
    # Find Effcee and RE2, for testing.
    # Optional for now, but eventually we'll make this required.

    # First find RE2, since Effcee depends on it.
    # If already configured, then use that.  Otherwise, prefer to find it under 're2'
    # in this directory.
    if (NOT TARGET re2)
      # If we are configuring RE2, then turn off its testing.  It takes a long time and
      # does not add much value for us.  If an enclosing project configured RE2, then it
      # has already chosen whether to enable RE2 tesitng.
      set(RE2_BUILD_TESTING OFF CACHE STRING "Run RE2 Tests")
      if (NOT RE2_SOURCE_DIR)
	if (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/re2)
	  set(RE2_SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/re2" CACHE STRING "RE2 source dir" )
	endif()
      endif()
    endif()

    if (NOT TARGET effcee)
      # Expect to find effcee in this directory.
      if (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/effcee)
	# If we're configuring RE2 (via Effcee), then turn off RE2 testing.
	if (NOT TARGET re2)
	  set(RE2_BUILD_TESTING OFF)
	endif()
	if (MSVC)
	  # SPIRV-Tools uses the shared CRT with MSVC.  Tell Effcee to do the same.
	  set(EFFCEE_ENABLE_SHARED_CRT ON)
	endif()
	add_subdirectory(effcee)
	set_property(TARGET effcee PROPERTY FOLDER Effcee)
	# Turn off warnings for effcee and re2
	set_property(TARGET effcee APPEND PROPERTY COMPILE_OPTIONS -w)
	set_property(TARGET re2 APPEND PROPERTY COMPILE_OPTIONS -w)
      endif()
    endif()
    # TODO(dneto): Eventually, require this.
  endif()
  if (TARGET effcee)
    message(STATUS "SPIRV-Tools: Effcee is configured")
  else()
    message(STATUS "SPIRV-Tools: Effcee is not configured.  Skipping Effcee-based tests.")
  endif()

endif()