mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-05 23:02:51 +02:00
11 lines
No EOL
401 B
CMake
11 lines
No EOL
401 B
CMake
#
|
|
# Created by Bradley Austin Davis on 2016/02/16
|
|
#
|
|
# Distributed under the Apache License, Version 2.0.
|
|
# See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
#
|
|
macro(TARGET_VULKAN)
|
|
find_package(Vulkan REQUIRED)
|
|
target_include_directories(${TARGET_NAME} PRIVATE ${VULKAN_INCLUDE_DIR})
|
|
target_link_libraries(${TARGET_NAME} ${VULKAN_LIBRARY})
|
|
endmacro() |