We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a4f3cd commit 52339afCopy full SHA for 52339af
.github/workflows/ci.yml
@@ -98,7 +98,7 @@ jobs:
98
-G Ninja
99
- run: cmake --build ./build
100
- run: cmake --install build/ --prefix build/install
101
- - run: ctest --output-on-failure -D CMAKE_CXX_COMPILER=${{ matrix.compiler }}
+ - run: CXX=${{ matrix.compiler }} ctest --output-on-failure
102
working-directory: build
103
104
cmake-windows-modules:
tests/vk_hpp_module.cpp
@@ -6,8 +6,12 @@
6
* SPDX-License-Identifier: Apache-2.0
7
*/
8
import vulkan_hpp;
9
+#include <string>
10
-int header_version()
11
+int test_instance()
12
{
- return VK_HEADER_VERSION;
13
+ vk::InstanceCreateInfo instanceCreateInfo({}, nullptr);
14
+ vk::Instance instance = vk::createInstance(instanceCreateInfo);
15
+ instance.destroy();
16
+ return 0;
17
}
0 commit comments