Index: unk/nv.lua
===================================================================
--- /trunk/nv.lua	(revision 552)
+++ 	(revision )
@@ -1,182 +1,0 @@
-NV_RUNTIME = NV_RUNTIME or "scrt"
-
-project "nv-core"
-	location (_ACTION.."/"..NV_RUNTIME)
-	language "C++"
-	kind "StaticLib"
-	includedirs { "." }
-	files { "nv/common.hh", "nv/base/**.hh", "nv/ecs/**.hh", "nv/core/**.hh", "nv/stl/**.hh", "nv/interface/**.hh", "nv/detail/**.inc", "src/core/**.cc", "src/stl/**.cc"  }
-
-project "nv-lib"
-	location (_ACTION.."/"..NV_RUNTIME)
-	language "C++"
-	kind "StaticLib"
-	includedirs { "." }
-	files { "nv/lib/**.hh", "nv/lib/**.inl", "nv/lib/**.inc", "src/lib/**.cc" }
-	links { "nv-core" }
-
-project "nv-curses"
-	location (_ACTION.."/"..NV_RUNTIME)
-	language "C++"
-	kind "StaticLib"
-	includedirs { "." }
-	files { "nv/curses/**.hh",  "src/curses/**.cc" }
-	links { "nv-core", "nv-lib" }
-
-project "nv-fmod"
-	location (_ACTION.."/"..NV_RUNTIME)
-	language "C++"
-	kind "StaticLib"
-	includedirs { "." }
-	files { "nv/fmod/**.hh",    "src/fmod/**.cc" }
-	links { "nv-core", "nv-lib" }
-
-project "nv-sdl"
-	location (_ACTION.."/"..NV_RUNTIME)
-	language "C++"
-	kind "StaticLib"
-	includedirs { "." }
-	files { "nv/sdl/**.hh",     "src/sdl/**.cc" }
-	links { "nv-core", "nv-lib" }
-
-project "nv-gl"
-	location (_ACTION.."/"..NV_RUNTIME)
-	language "C++"
-	kind "StaticLib"
-	includedirs { "." }
-	files { "nv/gl/**.hh",     "src/gl/**.cc" }
-	links { "nv-core", "nv-lib" }
-
-project "nv-lua"
-	location (_ACTION.."/"..NV_RUNTIME)
-	language "C++"
-	kind "StaticLib"
-	includedirs { "." }
-	files { "nv/lua/**.hh",     "src/lua/**.cc" }
-	links { "nv-core", "nv-lib" }
-
-project "nv-rogue"
-	location (_ACTION.."/"..NV_RUNTIME)
-	language "C++"
-	kind "StaticLib"
-	includedirs { "." }
-	files { "nv/rogue/**.hh",     "src/rogue/**.cc" }
-	links { "nv-core" }
-
-project "nv-io"
-	location (_ACTION.."/"..NV_RUNTIME)
-	language "C++"
-	kind "StaticLib"
-	includedirs { "." }
-	files { "nv/io/**.hh",     "src/io/**.cc" }
-	links { "nv-core" }
-
-project "nv-gfx"
-	location (_ACTION.."/"..NV_RUNTIME)
-	language "C++"
-	kind "StaticLib"
-	includedirs { "." }
-	files { "nv/gfx/**.hh",  "src/gfx/**.cc" }
-	links { "nv-core" }
-
-project "nv-engine"
-	location (_ACTION.."/"..NV_RUNTIME)
-	language "C++"
-	kind "StaticLib"
-	includedirs { "." }
-	files { "nv/engine/**.hh",  "src/engine/**.cc" }
-	links { "nv-core", "nv-lib", "nv-lua" }
-
-project "nv-image"
-	location (_ACTION.."/"..NV_RUNTIME)
-	language "C++"
-	kind "StaticLib"
-	includedirs { "." }
-	files { "nv/image/**.hh", "src/image/**.cc" }
-	links { "nv-core" }
-
-project "nv-formats"
-	location (_ACTION.."/"..NV_RUNTIME)
-	language "C++"
-	kind "StaticLib"
-	includedirs { "." }
-	files { "nv/formats/**.hh", "src/formats/**.cc" }
-	links { "nv-core", "nv-lib", "nv-io", "nv-gfx" }
-
-project "nv-gui"
-	location (_ACTION.."/"..NV_RUNTIME)
-	language "C++"
-	kind "StaticLib"
-	includedirs { "." }
-	files { "nv/gui/**.hh",     "src/gui/**.cc" }
-	links { "nv-core", "nv-lib", "nv-io", "nv-gfx", "nv-lua" }
-
---[[
--- injection!
-solution( solution().name )
-	configuration "gmake"
-		if CLANG then
-			buildoptions { 
-				"-std=c++14",
---                                -- on Mac OS X don't try to use old stdc++
---                                "-stdlib=libc++",
---				"-Weverything",
-				-- math is so much easier with these
-				"-w",
-				"-Wno-gnu-anonymous-struct", 
-				"-Wno-nested-anon-types", 
-				-- obviously we don't care about C++98 compatibility
-				"-Wno-c++98-compat", 
-				-- obviously we don't care about C++98 compatibility
-				"-Wno-c++98-compat-pedantic",
-				-- an evil one has to embrace
-				"-Wno-float-equal",
-				-- padding is a non-issue at the moment
-				"-Wno-padded",
-				-- we don't want to list all 128 keys of the key
-				-- enum each time, right?
-				"-Wno-switch-enum",
-				-- yes, we need exit time destructors for libraries
-				"-Wno-exit-time-destructors",
-				-- same here
-				"-Wno-global-constructors",
-				-- no reasonable way to fix this with abstract 
-				-- interfaces.
-				"-Wno-weak-vtables",
-				-- this can be reenabled if I find a nice solution
-				"-Wno-cast-align",
-			}
-			--buildoptions { 
-            --                    "-stdlib=libc++"
-			--}
-		else
-			buildoptions { "-std=c++0x" }
-		end
-	
-	configuration { "windows", "gmake" }
-		linkoptions { "-Wl,--subsystem,windows" }
---		linkoptions { "-mwindows" }
-
-	configuration "linux"
-		linkoptions { "-ldl" }
-
-	configuration "vs*"
-		defines { "_SECURE_SCL=0", "_CRT_SECURE_NO_WARNINGS=1" } --, "_ITERATOR_DEBUG_LEVEL=0", "_HAS_ITERATOR_DEBUGGING=0" }
-
-if _ACTION == "gmake-clang" then
-	toolset "clang"
-	_ACTION = "gmake"
-end
-
-premake.action.add { 
-	trigger = "gmake-clang", 
-	description = "gmake file with clang overrides, needs 'make -R' to work",
-}
-
-if _ACTION == "clean" then
-	for action in premake.action.each() do
-		os.rmdir(action.trigger)
-	end
-end
-
---]]
Index: unk/nv_bullet.lua
===================================================================
--- /trunk/nv_bullet.lua	(revision 552)
+++ 	(revision )
@@ -1,52 +1,0 @@
-local NV_BT_SFX = ""
-if NV_RUNTIME == "dcrt" then
-	NV_BT_SFX = "_dcrt"
-end
-
-function nv_bullet_configure( dir, subdir, suffix )
-	suffix = suffix or ""
-	links 
-	{
-		"BulletCollision"..suffix..NV_BT_SFX,
-		"BulletDynamics"..suffix..NV_BT_SFX,
-		"BulletSoftBody"..suffix..NV_BT_SFX,
-		"LinearMath"..suffix..NV_BT_SFX,
-	}
-	libdirs { dir.."lib/"..subdir.."/" }
-	includedirs { dir.."src/" }
-end
-
-project "nv-bullet"
-	location (_ACTION.."/"..NV_RUNTIME)
-	language "C++"
-	kind "StaticLib"
-	files { "nv/bullet/**.hh", "src/bullet/**.cc" }
-	includedirs { 
-		"../nv"
-	}
-	links { "nv-core", "nv-gl", "nv-formats", "nv-lua", "nv-lib", "nv-io", "nv-gfx" }
-
-	includedirs { "D:/Libraries/bullet2/src/" }
-	
-	filter { "configurations:debug", "platforms:*32" }
-		nv_bullet_configure( "D:/Libraries/bullet2/x86/", "RelWithDebInfo", "_rdbg" )
---		nv_bullet_configure( "D:/Libraries/bullet2/x86/", "Debug", "_debug" )
-
-	filter { "configurations:profiler", "platforms:*32" }
-		nv_bullet_configure( "D:/Libraries/bullet2/x86/", "Release" )
-
-	filter { "configurations:release", "platforms:*32" }
-		nv_bullet_configure( "D:/Libraries/bullet2/x86/", "Release" )
-
-	filter { "configurations:debug", "platforms:*64" }
-		nv_bullet_configure( "D:/Libraries/bullet2/x86_64/", "RelWithDebInfo", "_rdbg" )
---		nv_bullet_configure( "D:/Libraries/bullet2/x86_64/", "Debug", "_debug" )
-
-	filter { "configurations:profiler", "platforms:*64" }
-		nv_bullet_configure( "D:/Libraries/bullet2/x86_64/", "Release" )
-
-	filter { "configurations:release", "platforms:*64" }
-		nv_bullet_configure( "D:/Libraries/bullet2/x86_64/", "Release" )
-
-	filter {}
-
Index: unk/nv_rocket.lua
===================================================================
--- /trunk/nv_rocket.lua	(revision 552)
+++ 	(revision )
@@ -1,9 +1,0 @@
-project "nv-rocket"
-	location (_ACTION)
-	language "C++"
-	kind "StaticLib"
-	includedirs { "." }
-	libdirs { "c:/libRocket/bin" }
-	includedirs { "c:/libRocket/Include" }	
-	files { "nv/rocket/**.hh",     "src/rocket/**.cc" }
-	links { "nv-core", "nv-lib", "nv-io", "nv-gfx", "nv-lua", "RocketCore", "RocketDebugger" }
Index: unk/nv_wx.lua
===================================================================
--- /trunk/nv_wx.lua	(revision 552)
+++ 	(revision )
@@ -1,20 +1,0 @@
-assert( NV_RUNTIME == "dcrt" )
-
-project "*"
-	includedirs { 
-		"D:/Libraries/wxwidgets/include/msvc/",
-		"D:/Libraries/wxwidgets/include/",
-	}
-	libdirs { "D:/Libraries/wxwidgets/lib/vc140_dll" }
-	defines { "__WXMSW__", "_UNICODE", "WXUSINGDLL", "wxMSVC_VERSION_AUTO" }
-
-project "nv-wx"
-	location (_ACTION.."/"..NV_RUNTIME)
-	language "C++"
-	kind "StaticLib"
-	files { "nv/wx/**.hh", "src/wx/**.cc" }
-	includedirs { 
-		"../nv"
-	}
-	links { "nv-core", "nv-gl", "nv-formats", "nv-lua", "nv-lib", "nv-io", "nv-gfx", "nv-sdl" }
-
Index: unk/premake4.lua
===================================================================
--- /trunk/premake4.lua	(revision 552)
+++ 	(revision )
@@ -1,27 +1,0 @@
-solution "nv"
-	configurations { "debug", "release" }
-	targetdir "bin"
-	flags { "ExtraWarnings", "NoPCH" }
-	language "C++"
-
-   	configuration "debug"
-		defines { "DEBUG" }
-		flags { "Symbols", "StaticRuntime" }
-		targetdir "bin"
-		objdir (_ACTION or "".."/debug")
-
-	configuration "release"
-		defines { "NDEBUG" }
-		flags { "Optimize", "StaticRuntime" }
-		targetdir "bin"
-		objdir (_ACTION or "".."/release")
-
-	dofile("nv.lua")
-	
-newaction {
-	trigger     = "doc",
-	description = "Run doxygen",
-	execute     = function ()
-		os.execute("doxygen")
-	end
-}
Index: unk/premake5.lua
===================================================================
--- /trunk/premake5.lua	(revision 552)
+++ 	(revision )
@@ -1,27 +1,0 @@
-workspace "nv"
-	configurations { "debug", "release" }
-	targetdir "bin"
-	flags { "ExtraWarnings", "NoPCH" }
-	language "C++"
-
-   	configuration "debug"
-		defines { "DEBUG" }
-		flags { "Symbols", "StaticRuntime" }
-		targetdir "bin"
-		objdir (_ACTION or "".."/debug")
-
-	configuration "release"
-		defines { "NDEBUG" }
-		flags { "Optimize", "StaticRuntime" }
-		targetdir "bin"
-		objdir (_ACTION or "".."/release")
-
-	dofile("nv.lua")
-	
-newaction {
-	trigger     = "doc",
-	description = "Run doxygen",
-	execute     = function ()
-		os.execute("doxygen")
-	end
-}
