Former-commit-id: 17370ab2dbe2f9f6b6c3ec84ba2c9d45de832ee0 [formerly a07cdfb9393322e9a145b171835a4270fcf2953d] Former-commit-id: c88597b66d47ecdcbc9a279b96fa840de859634b
31 lines
438 B
Lua
31 lines
438 B
Lua
TOOL.Name = "UnitTests"
|
|
|
|
TOOL.Directory = "../tests"
|
|
TOOL.EnableConsole = true
|
|
TOOL.Kind = "Application"
|
|
TOOL.TargetDirectory = TOOL.Directory
|
|
|
|
TOOL.Defines = {
|
|
}
|
|
|
|
TOOL.Includes = {
|
|
"../include"
|
|
}
|
|
|
|
TOOL.Files = {
|
|
"../tests/main.cpp",
|
|
"../tests/Engine/**.cpp"
|
|
}
|
|
|
|
TOOL.Libraries = {
|
|
"NazaraCore",
|
|
"NazaraAudio",
|
|
"NazaraLua",
|
|
"NazaraGraphics",
|
|
"NazaraRenderer",
|
|
"NazaraNetwork",
|
|
"NazaraNoise",
|
|
"NazaraPhysics",
|
|
"NazaraUtility"
|
|
}
|