Merge branch 'master' of https://github.com/DigitalPulseSoftware/NazaraEngine
Former-commit-id: ba6e0fe9352936373aa45d9e7a56ed97efa71c22 [formerly 770aab17f7e563d8331acac45f70b9647e35ae21] Former-commit-id: 6c6612c4608021d7e6af7ae79b737144fc9f64f3
This commit is contained in:
commit
1f0d54fd82
|
|
@ -9,7 +9,7 @@ function NazaraBuild:Execute()
|
||||||
if (os.is64bit()) then
|
if (os.is64bit()) then
|
||||||
platformData = {"x64", "x86"}
|
platformData = {"x64", "x86"}
|
||||||
else
|
else
|
||||||
platformData = {"x64", "x86"}
|
platformData = {"x86", "x64"}
|
||||||
end
|
end
|
||||||
|
|
||||||
if (self.Actions[_ACTION] == nil) then
|
if (self.Actions[_ACTION] == nil) then
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,20 @@
|
||||||
|
EXAMPLE.Name = "Tut00_EmptyProject"
|
||||||
|
|
||||||
|
EXAMPLE.Console = true
|
||||||
|
|
||||||
|
EXAMPLE.Files = {
|
||||||
|
"main.cpp"
|
||||||
|
}
|
||||||
|
|
||||||
|
EXAMPLE.Libraries = {
|
||||||
|
"NazaraAudio",
|
||||||
|
"NazaraCore",
|
||||||
|
"NazaraGraphics",
|
||||||
|
"NazaraLua",
|
||||||
|
"NazaraNetwork",
|
||||||
|
"NazaraNoise",
|
||||||
|
"NazaraPhysics",
|
||||||
|
"NazaraRenderer",
|
||||||
|
"NazaraUtility",
|
||||||
|
"NazaraSDK"
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,24 @@
|
||||||
|
#include <Nazara/Audio.hpp>
|
||||||
|
#include <Nazara/Core.hpp>
|
||||||
|
#include <Nazara/Graphics.hpp>
|
||||||
|
#include <Nazara/Lua.hpp>
|
||||||
|
#include <Nazara/Network.hpp>
|
||||||
|
#include <Nazara/Noise.hpp>
|
||||||
|
#include <Nazara/Physics.hpp>
|
||||||
|
#include <Nazara/Renderer.hpp>
|
||||||
|
#include <Nazara/Utility.hpp>
|
||||||
|
#include <NDK/Application.hpp>
|
||||||
|
#include <iostream>
|
||||||
|
#include <vector>
|
||||||
|
#include <unordered_map>
|
||||||
|
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
// This "example" has only one purpose: Giving an empty project for you to test whatever you want
|
||||||
|
// If you wish to have multiple test projects, you only have to copy/paste this directory and change the name in the build.lua
|
||||||
|
Ndk::Application app;
|
||||||
|
|
||||||
|
// Do what you want here
|
||||||
|
|
||||||
|
return EXIT_SUCCESS;
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue