blob: ca7708ea39cc7bd8d7603fb35d8cbcdc4ae6c973 [file] [log] [blame]
# Copyright 2020 The SwiftShader Authors. All Rights Reserved.
#
# 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(ROOT_PROJECT_COMPILE_OPTIONS
${WARNINGS_AS_ERRORS}
)
set(ROOT_PROJECT_LINK_LIBRARIES
${OS_LIBS}
${SWIFTSHADER_LIBS}
)
set(VULKAN_BENCHMARKS_SRC_FILES
Buffer.cpp
Buffer.hpp
Framebuffer.cpp
Framebuffer.hpp
Image.cpp
Image.hpp
main.cpp
Swapchain.cpp
Swapchain.hpp
Util.cpp
Util.hpp
VulkanBenchmarks.cpp
VulkanHeaders.cpp
VulkanHeaders.hpp
Window.cpp
Window.hpp
)
add_executable(VulkanBenchmarks
${VULKAN_BENCHMARKS_SRC_FILES}
)
if (NOT TARGET benchmark::benchmark)
message(FATAL_ERROR "Missing required target: benchmark::benchmark")
endif()
if (NOT TARGET glslang)
message(FATAL_ERROR "Missing required target: glslang")
endif()
if (NOT TARGET glslang-default-resource-limits)
message(FATAL_ERROR "Missing required target: glslang-default-resource-limits")
endif()
if (NOT TARGET SPIRV)
message(FATAL_ERROR "Missing required target: SPIRV")
endif()
add_dependencies(VulkanBenchmarks
vk_swiftshader
)
set_target_properties(VulkanBenchmarks PROPERTIES
FOLDER "Benchmarks"
RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}"
)
target_include_directories(VulkanBenchmarks
PRIVATE
"${SWIFTSHADER_DIR}/include/"
)
target_compile_options(VulkanBenchmarks
PRIVATE
${ROOT_PROJECT_COMPILE_OPTIONS}
)
target_link_options(VulkanBenchmarks
PRIVATE
${SWIFTSHADER_LINK_FLAGS}
)
target_link_libraries(VulkanBenchmarks
PRIVATE
benchmark::benchmark
glslang
glslang-default-resource-limits
SPIRV
${ROOT_PROJECT_LINK_LIBRARIES}
)