first version to compile on Fedora 29

master
poikilos 2019-03-07 11:12:09 -05:00
parent 1df9489745
commit d9643844f1
9 changed files with 51 additions and 7 deletions

38
.gitignore vendored Normal file
View File

@ -0,0 +1,38 @@
# C++ objects and libs
*.slo
*.lo
*.o
*.a
*.la
*.lai
*.so
*.dll
*.dylib
# Qt-es
/.qmake.cache
/.qmake.stash
*.pro.user
*.pro.user.*
*.qbs.user
*.qbs.user.*
*.moc
moc_*.cpp
qrc_*.cpp
ui_*.h
Makefile*
*build-*
# QtCreator
*.autosave
# QtCtreator Qml
*.qmlproject.user
*.qmlproject.user.*
# QtCtreator CMake
CMakeLists.txt.user

6
CHANGELOG.md Normal file
View File

@ -0,0 +1,6 @@
# Changelog
## [git] - 2019-03-06
(first poikilos changes, based on https://github.com/egrath)
* changed `#include <irrlicht.h>` to `#include <irrlicht/irrlicht.h>`
* added Qt .gitignore

View File

@ -8,7 +8,7 @@ class View;
#include <string>
#include <sstream>
#include <iostream>
#include <irrlicht.h>
#include <irrlicht/irrlicht.h>
#include "EventHandler.h"
#include "UserInterface.h"

View File

@ -5,7 +5,7 @@
#include <map>
#include <utility>
#include <irrlicht.h>
#include <irrlicht/irrlicht.h>
#include "Debug.h"

View File

@ -6,7 +6,7 @@ class Engine;
#include <sstream>
#include <string>
#include <irrlicht.h>
#include <irrlicht/irrlicht.h>
#include "Debug.h"
#include "Engine.h"

View File

@ -2,7 +2,7 @@
#define UTILS_H
#include <cmath>
#include <irrlicht.h>
#include <irrlicht/irrlicht.h>
#include "Debug.h"
using namespace irr::core;

2
View.h
View File

@ -1,7 +1,7 @@
#ifndef VIEW_H
#define VIEW_H
#include <irrlicht.h>
#include <irrlicht/irrlicht.h>
#include "Debug.h"
#include "Engine.h"

View File

@ -1,6 +1,6 @@
// Kudus to Nalin for this wonderful piece of code!
// See: http://irrlicht.sourceforge.net/phpBB2/viewtopic.php?t=3995
#include <irrlicht.h>
#include <irrlicht/irrlicht.h>
using namespace irr;
#include "CGUITTFont.h"

View File

@ -1,7 +1,7 @@
#ifndef __C_GUI_TTFONT_H_INCLUDED__
#define __C_GUI_TTFONT_H_INCLUDED__
#include <irrlicht.h>
#include <irrlicht/irrlicht.h>
#include <ft2build.h>
#include FT_FREETYPE_H