From 6f72fda08b0639be4e698de216f78c8a926020ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Branimir=20Karad=C5=BEi=C4=87?= Date: Sat, 21 Mar 2026 00:31:36 -0700 Subject: [PATCH] GENie: Set default project properly when making combined examples. (#3631) --- scripts/genie.lua | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/scripts/genie.lua b/scripts/genie.lua index d94cfce92..945a95fe2 100644 --- a/scripts/genie.lua +++ b/scripts/genie.lua @@ -151,7 +151,12 @@ solution "bgfx" end language "C++" - startproject "example-00-helloworld" + + if _OPTIONS["with-combined-examples"] then + startproject "examples" + else + startproject "example-00-helloworld" + end BGFX_DIR = path.getabsolute("..") BX_DIR = os.getenv("BX_DIR")