From a51c5d9e8b1f00ae2a967f738028005f3b1c3d39 Mon Sep 17 00:00:00 2001 From: arookas Date: Sat, 13 Feb 2016 18:14:23 -0500 Subject: [PATCH] Changed filter to a direct if statement I don't like the "filter {}" shit --- premake5.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/premake5.lua b/premake5.lua index f8253c0..90f13cb 100644 --- a/premake5.lua +++ b/premake5.lua @@ -40,9 +40,9 @@ workspace "ssc" links { "System", "arookas", "grammatica-1.6" } -- apply options - filter "options:clean-symbols" + if _OPTIONS["clean-symbols"] then defines { "SSC_CLEAN_SYMBOLS" } - filter {} + end files { "ssc/**.cs",