diff options
Diffstat (limited to 'premake5.lua')
| -rw-r--r-- | premake5.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/premake5.lua b/premake5.lua index ef53ed47a..c191f5ec6 100644 --- a/premake5.lua +++ b/premake5.lua @@ -634,6 +634,8 @@ end -- declaration of the "Hello, World" example project: -- example "hello-world" + kind "ConsoleApp" + includedirs {"external/vulkan/include"} -- -- Note how we are calling our custom `example()` subroutine with -- the same syntax sugar that Premake usually advocates for their @@ -642,6 +644,8 @@ example "hello-world" -- -- Let's go ahead and set up the projects for our other example now. +example "triangle" + example "gpu-printing" kind "ConsoleApp" |
