mirror of
https://github.com/Poikilos/b3view.git
synced 2023-10-03 07:58:48 -07:00
first version to compile on Fedora 29
This commit is contained in:
parent
1df9489745
commit
d9643844f1
38
.gitignore
vendored
Normal file
38
.gitignore
vendored
Normal 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
6
CHANGELOG.md
Normal 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
|
2
Engine.h
2
Engine.h
@ -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"
|
||||
|
@ -5,7 +5,7 @@
|
||||
#include <map>
|
||||
#include <utility>
|
||||
|
||||
#include <irrlicht.h>
|
||||
#include <irrlicht/irrlicht.h>
|
||||
|
||||
#include "Debug.h"
|
||||
|
||||
|
@ -6,7 +6,7 @@ class Engine;
|
||||
|
||||
#include <sstream>
|
||||
#include <string>
|
||||
#include <irrlicht.h>
|
||||
#include <irrlicht/irrlicht.h>
|
||||
|
||||
#include "Debug.h"
|
||||
#include "Engine.h"
|
||||
|
2
Utils.h
2
Utils.h
@ -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
2
View.h
@ -1,7 +1,7 @@
|
||||
#ifndef VIEW_H
|
||||
#define VIEW_H
|
||||
|
||||
#include <irrlicht.h>
|
||||
#include <irrlicht/irrlicht.h>
|
||||
|
||||
#include "Debug.h"
|
||||
#include "Engine.h"
|
||||
|
@ -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"
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user