UnitTests: Add build script and move current tests to "tests/Engine" directory (from "tests/Nazara")
Former-commit-id: 5639305bbdbb69ad6f6f282df6c6de930220b57f
This commit is contained in:
parent
a09f859144
commit
a61f968d05
|
|
@ -0,0 +1,27 @@
|
||||||
|
TOOL.Name = "UnitTests"
|
||||||
|
|
||||||
|
TOOL.Directory = "../tests"
|
||||||
|
TOOL.Kind = "ConsoleApp"
|
||||||
|
|
||||||
|
TOOL.Defines = {
|
||||||
|
}
|
||||||
|
|
||||||
|
TOOL.Includes = {
|
||||||
|
"../include"
|
||||||
|
}
|
||||||
|
|
||||||
|
TOOL.Files = {
|
||||||
|
"../tests/main.cpp",
|
||||||
|
"../tests/Engine/**.cpp"
|
||||||
|
}
|
||||||
|
|
||||||
|
TOOL.Libraries = {
|
||||||
|
"NazaraCore",
|
||||||
|
"NazaraAudio",
|
||||||
|
"NazaraLua",
|
||||||
|
"NazaraNoise",
|
||||||
|
"NazaraPhysics",
|
||||||
|
"NazaraUtility",
|
||||||
|
"NazaraRenderer",
|
||||||
|
"NazaraGraphics"
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue