| commit | f71a64f1e7dc8388ab4a5708c3bceacd2498e35f | [log] [tgz] |
|---|---|---|
| author | Mark Jansen <mark.jansen@reactos.org> | Tue Aug 06 14:41:40 2024 +0200 |
| committer | ocornut <omar@miracleworld.net> | Thu Nov 20 18:06:42 2025 +0100 |
| tree | 915433252e4905f2ca3e542b867ff6748ea97166 | |
| parent | bd429ad4047ed7d55d4e5715c67ceda57c5261a9 [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")