From f93650238a4a04653b2a470eafaa942143329834 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Branimir=20Karad=C5=BEi=C4=87?= Date: Sat, 24 Jun 2017 18:56:45 -0700 Subject: [PATCH] Fixed build. --- scripts/genie.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/genie.lua b/scripts/genie.lua index 469ea7f25..53fc2e8af 100644 --- a/scripts/genie.lua +++ b/scripts/genie.lua @@ -348,9 +348,9 @@ function exampleProjectDefaults() strip() end -function exampleProject(multi, ...) +function exampleProject(_combined, ...) - if multi then + if _combined then project ("examples") uuid (os.uuid("examples")) @@ -454,7 +454,7 @@ if _OPTIONS["with-examples"] then -- C99 source doesn't compile under WinRT settings if not premake.vstudio.iswinrt() then - exampleProject("25-c99") + exampleProject(false, "25-c99") end end