Fix defines in workflow files to enable compilation of tests and samples in CI. (#1595)

This commit is contained in:
Andreas Süßenbach
2023-06-20 14:43:35 +02:00
committed by GitHub
parent 9f89f760a6
commit 397ffad84a
11 changed files with 105 additions and 110 deletions

View File

@@ -23,9 +23,10 @@ VULKAN_HPP_DEFAULT_DISPATCH_LOADER_DYNAMIC_STORAGE
#if defined( __x86_64__ ) || defined( _M_X64 )
// On 32-bit systems the test is ambiguous.
void test()
int main( int /*argc*/, char ** /*argv*/ )
{
VkSurfaceKHR surface = 0;
auto uniqueSurface = vk::UniqueSurfaceKHR( surface, vk::Instance() );
return 0;
}
#endif