diff options
| author | Yong He <yonghe@outlook.com> | 2021-04-16 10:35:42 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-16 10:35:42 -0700 |
| commit | 2886bc35e7b023370a8b8d56d78e5335eee2eb98 (patch) | |
| tree | ef40d6029f2f024a95602efb921c27383cf887f5 /premake5.lua | |
| parent | 79e92395f8ce3d92c446e3bb3250d19ce33decd5 (diff) | |
Add Hello world example. (#1797)
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" |
