This commit is contained in:
Branimir Karadžić 2017-06-24 18:56:45 -07:00
Родитель 14e057283d
Коммит f93650238a
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -348,9 +348,9 @@ function exampleProjectDefaults()
strip() strip()
end end
function exampleProject(multi, ...) function exampleProject(_combined, ...)
if multi then if _combined then
project ("examples") project ("examples")
uuid (os.uuid("examples")) uuid (os.uuid("examples"))
@ -454,7 +454,7 @@ if _OPTIONS["with-examples"] then
-- C99 source doesn't compile under WinRT settings -- C99 source doesn't compile under WinRT settings
if not premake.vstudio.iswinrt() then if not premake.vstudio.iswinrt() then
exampleProject("25-c99") exampleProject(false, "25-c99")
end end
end end