commit | 481446ba3dfe08de83911546dbf0ec3a2abf98fe | [log] [tgz] |
---|---|---|
author | Mark Jansen <mark.jansen@reactos.org> | Tue Aug 06 14:41:40 2024 +0200 |
committer | ocornut <omar@miracleworld.net> | Mon Sep 08 19:26:02 2025 +0200 |
tree | 8aa371c45eee70cb002fe88cb5484198e499ce36 | |
parent | ce93656431a772cf860dc78a520133a5dd655b91 [diff] |
Premake: Only build example_sdl2_vulkan with both sdl2 and vulkan (7852)
diff --git a/examples/premake5.lua b/examples/premake5.lua index 4852ea4..9e080b8 100644 --- a/examples/premake5.lua +++ b/examples/premake5.lua
@@ -304,7 +304,7 @@ end -- example_sdl2_vulkan (SDL2 + Vulkan) -if (_OPTIONS["with-vulkan"]) then +if (_OPTIONS["with-sdl2"] and _OPTIONS["with-vulkan"]) then project "example_sdl2_vulkan" kind "ConsoleApp" imgui_as_src ("..", "imgui")