From 9692dddc7afeea0b8a2217aa1368b8b876d486d0 Mon Sep 17 00:00:00 2001 From: avail Date: Wed, 5 Jun 2019 03:09:49 +0200 Subject: [PATCH] fix premake deprecation warnings --- premake5.lua | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/premake5.lua b/premake5.lua index fe601caa..be30a258 100644 --- a/premake5.lua +++ b/premake5.lua @@ -2,7 +2,10 @@ workspace "OpenParrot" configurations { "Debug", "Release"} platforms { "x64", "x86" } - flags { "StaticRuntime", "No64BitChecks" } + flags { "No64BitChecks" } + + staticruntime "On" + editandcontinue "Off" systemversion "latest" @@ -10,7 +13,7 @@ workspace "OpenParrot" characterset "Unicode" - flags { "NoIncrementalLink", "NoEditAndContinue", "NoMinimalRebuild" } + flags { "NoIncrementalLink", "NoMinimalRebuild" } includedirs { "deps/inc/", "deps/udis86/" }