minimal compilation setups for Vulkan::Hpp and Vulkan::HppModule

This commit is contained in:
Jan Kuhlmann 2025-03-20 15:34:01 +01:00 committed by Charles Giessen
parent fdc7404466
commit a72b4466b3
3 changed files with 26 additions and 1 deletions

6
tests/vk_hpp.cpp Normal file
View file

@ -0,0 +1,6 @@
#include <vulkan/vulkan.hpp>
int square(int i)
{
return i * i;
}