Index: trunk/tests/render_test/premake4.lua
===================================================================
--- trunk/tests/render_test/premake4.lua	(revision 119)
+++ trunk/tests/render_test/premake4.lua	(revision 120)
@@ -1,12 +1,2 @@
-if _ACTION == nil then
-	print "Error! You must specify target build"
-	print "Example: ./premake4 gmake"
-	print "    This will create makefiles for Linux"
-	print ""
-	print "Aborting!"
-	print ""
-	return
-end
-
 solution "nv_render_test"
 	configurations { "debug", "release" }
@@ -15,20 +5,13 @@
 	flags { "ExtraWarnings", "NoPCH" }
 
-	-- For starters, check the target build.
-	-- If this is a gmake build we must add these
-	-- flags to enable C++11 support.
-	if _ACTION == "gmake" then
-		buildoptions "-std=c++11"
-	end
-
 	configuration "debug"
 		defines { "DEBUG" }
 		flags { "Symbols", "StaticRuntime" }
-		objdir (_ACTION.."/debug")
+		objdir (_ACTION or "".."/debug")
 
 	configuration "release"
 		defines { "NDEBUG" }
 		flags { "Optimize", "StaticRuntime" }
-		objdir (_ACTION.."/release")
+		objdir (_ACTION or "".."/release")
 
 	dofile("render_test.lua")
Index: trunk/tests/render_test/render_test.lua
===================================================================
--- trunk/tests/render_test/render_test.lua	(revision 119)
+++ trunk/tests/render_test/render_test.lua	(revision 120)
@@ -5,5 +5,4 @@
 	includedirs { "../../" }
 	targetname "rl"
-	defines { "_SCL_SECURE_NO_WARNINGS" }
 	links { "nv" }
  
