mirror of
https://github.com/KhronosGroup/Vulkan-Headers.git
synced 2025-04-10 14:51:30 +00:00
minimal compilation setups for Vulkan::Hpp and Vulkan::HppModule
This commit is contained in:
parent
a05376f97d
commit
3155e75f60
3 changed files with 26 additions and 1 deletions
|
@ -7,7 +7,7 @@
|
|||
# ~~~
|
||||
cmake_minimum_required(VERSION 3.22.1)
|
||||
|
||||
project(API LANGUAGES C)
|
||||
project(API LANGUAGES C CXX)
|
||||
|
||||
if (FIND_PACKAGE_TESTING)
|
||||
find_package(VulkanHeaders REQUIRED CONFIG)
|
||||
|
@ -77,3 +77,16 @@ target_link_libraries(vk_icd PRIVATE Vulkan::Headers)
|
|||
# vk_layer.h
|
||||
add_library(vk_layer MODULE ../vk_layer.c)
|
||||
target_link_libraries(vk_layer PRIVATE Vulkan::Headers)
|
||||
|
||||
# vulkan.hpp
|
||||
add_library(vk_hpp MODULE ../vk_hpp.cpp)
|
||||
target_compile_features(vk_hpp PUBLIC cxx_std_11)
|
||||
target_link_libraries(vk_hpp PRIVATE Vulkan::Headers)
|
||||
|
||||
# vulkan.cppm
|
||||
if (VULKAN_HEADERS_ENABLE_MODULE)
|
||||
add_library(vk_hpp_module MODULE ../vk_hpp_module.cpp)
|
||||
target_compile_features(vk_hpp_module PUBLIC cxx_std_20)
|
||||
set_target_properties(vk_hpp_module PROPERTIES CXX_SCAN_FOR_MODULES ON)
|
||||
target_link_libraries(vk_hpp_module PRIVATE Vulkan::HppModule)
|
||||
endif()
|
6
tests/vk_hpp.cpp
Normal file
6
tests/vk_hpp.cpp
Normal file
|
@ -0,0 +1,6 @@
|
|||
#include <vulkan/vulkan.hpp>
|
||||
|
||||
int square(int i)
|
||||
{
|
||||
return i * i;
|
||||
}
|
6
tests/vk_hpp_module.cpp
Normal file
6
tests/vk_hpp_module.cpp
Normal file
|
@ -0,0 +1,6 @@
|
|||
import vulkan_hpp;
|
||||
|
||||
int square(int i)
|
||||
{
|
||||
return i * i;
|
||||
}
|
Loading…
Add table
Reference in a new issue