mirror of
https://github.com/KhronosGroup/Vulkan-Utility-Libraries.git
synced 2025-05-14 16:58:43 +00:00
20 lines
602 B
CMake
20 lines
602 B
CMake
# Copyright 2023 The Khronos Group Inc.
|
|
# Copyright 2023 Valve Corporation
|
|
# Copyright 2023 LunarG, Inc.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
set(CMAKE_FOLDER "${CMAKE_FOLDER}/generated_code/tests")
|
|
|
|
# Test vk_enum_string_helper.h
|
|
add_executable(vk_enum_string_helper vk_enum_string_helper.cpp)
|
|
|
|
target_include_directories(vk_enum_string_helper PRIVATE ${VUL_SOURCE_DIR}/include)
|
|
target_link_libraries(vk_enum_string_helper PRIVATE
|
|
Vulkan::Headers
|
|
Vulkan::CompilerConfiguration
|
|
GTest::gtest
|
|
GTest::gtest_main
|
|
magic_enum::magic_enum
|
|
)
|
|
|
|
gtest_discover_tests(vk_enum_string_helper)
|