Improve xmake build
This commit is contained in:
@@ -1,14 +0,0 @@
|
||||
EXAMPLE.Name = "DopplerEffect"
|
||||
|
||||
EXAMPLE.EnableConsole = true
|
||||
|
||||
EXAMPLE.Files = {
|
||||
"main.cpp"
|
||||
}
|
||||
|
||||
EXAMPLE.Libraries = {
|
||||
"NazaraAudio",
|
||||
"NazaraCore",
|
||||
"NazaraPlatform",
|
||||
"NazaraUtility"
|
||||
}
|
||||
5
examples/DopplerEffect/xmake.lua
Normal file
5
examples/DopplerEffect/xmake.lua
Normal file
@@ -0,0 +1,5 @@
|
||||
target("DopplerEffect")
|
||||
set_group("Examples")
|
||||
set_kind("binary")
|
||||
add_deps("NazaraAudio", "NazaraPlatform")
|
||||
add_files("main.cpp")
|
||||
@@ -1,16 +0,0 @@
|
||||
EXAMPLE.Name = "GraphicsTest"
|
||||
|
||||
EXAMPLE.EnableConsole = true
|
||||
|
||||
EXAMPLE.Files = {
|
||||
"main.cpp"
|
||||
}
|
||||
|
||||
EXAMPLE.Libraries = {
|
||||
"NazaraCore",
|
||||
"NazaraGraphics",
|
||||
"NazaraPlatform",
|
||||
"NazaraRenderer",
|
||||
"NazaraShader",
|
||||
"NazaraUtility"
|
||||
}
|
||||
5
examples/GraphicsTest/xmake.lua
Normal file
5
examples/GraphicsTest/xmake.lua
Normal file
@@ -0,0 +1,5 @@
|
||||
target("GraphicsTest")
|
||||
set_group("Examples")
|
||||
set_kind("binary")
|
||||
add_deps("NazaraGraphics")
|
||||
add_files("main.cpp")
|
||||
@@ -1,15 +0,0 @@
|
||||
EXAMPLE.Name = "RenderTest"
|
||||
|
||||
EXAMPLE.EnableConsole = true
|
||||
|
||||
EXAMPLE.Files = {
|
||||
"main.cpp"
|
||||
}
|
||||
|
||||
EXAMPLE.Libraries = {
|
||||
"NazaraCore",
|
||||
"NazaraPlatform",
|
||||
"NazaraRenderer",
|
||||
"NazaraShader",
|
||||
"NazaraUtility"
|
||||
}
|
||||
5
examples/RenderTest/xmake.lua
Normal file
5
examples/RenderTest/xmake.lua
Normal file
@@ -0,0 +1,5 @@
|
||||
target("RenderTest")
|
||||
set_group("Examples")
|
||||
set_kind("binary")
|
||||
add_deps("NazaraRenderer")
|
||||
add_files("main.cpp")
|
||||
Reference in New Issue
Block a user