Irrlicht is now linked to the binary.

This commit is contained in:
Nicolás A. Ortega 2017-04-22 13:14:15 +02:00
parent 26421d5d12
commit fe33cf5038
No known key found for this signature in database
GPG Key ID: 3D786FB3123FF1DD
2 changed files with 3 additions and 3 deletions

View File

@ -22,6 +22,8 @@ project "libreternity"
kind "WindowedApp"
targetdir "bin/"
files { "src/**.hh", "src/**.cc" }
libdirs { os.findlib("Irrlicht") }
links { "Irrlicht" }
configuration "Debug"
defines { "DEBUG" }

View File

@ -18,9 +18,7 @@
#include <iostream>
using namespace std;
int main() {
cout << "Libreternity\n";
std::cout << "Libreternity\n";
return 0;
}