First commit

This commit is contained in:
Lynix
2012-05-01 16:43:48 +02:00
commit 71b4262c51
208 changed files with 46084 additions and 0 deletions

36
build/scripts/common.lua Normal file
View File

@@ -0,0 +1,36 @@
-- Configuration générale
configurations
{
"DebugStatic",
"ReleaseStatic",
"DebugDLL",
"ReleaseDLL"
}
defines "NAZARA_BUILD"
language "C++"
includedirs
{
"../include",
"../src/"
}
libdirs "../lib"
targetdir "../lib"
configuration "Debug*"
defines "NAZARA_DEBUG"
flags "Symbols"
configuration "Release*"
flags { "Optimize", "OptimizeSpeed" }
configuration "*Static"
defines "NAZARA_STATIC"
kind "StaticLib"
targetsuffix "-s"
configuration "*DLL"
kind "SharedLib"
configuration { "linux or bsd or macosx", "gmake" }
buildoptions "-fvisibility=hidden"