Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
F
flasim
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
ottona
flasim
Commits
e59975ed
Commit
e59975ed
authored
Nov 05, 2018
by
Otto Naderer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
initial prj setup
parent
d2490d61
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
47 additions
and
0 deletions
+47
-0
prj/flasim.pro
prj/flasim.pro
+20
-0
src/FlaSimApp.cpp
src/FlaSimApp.cpp
+0
-0
src/FlaSimApp.hpp
src/FlaSimApp.hpp
+18
-0
src/main.cpp
src/main.cpp
+9
-0
No files found.
prj/flasim.pro
0 → 100644
View file @
e59975ed
QT
-=
core
gui
CONFIG
+=
debug_and_release
Release
:
TARGET
=
flasim
Debug
:
TARGET
=
flasimD
TEMPLATE
=
app
unix
:
INCLUDEPATH
+=
/
usr
/
include
/
irrlicht
win32
:
INCLUDEPATH
+=
..
/
pharus
/
external
/
irrlicht
unix
:
LIBS
+=
-
lIrrlicht
DESTDIR
=
..
/
bin
HEADERS
+=
\
..
/
src
/
FlaSimApp
.
hpp
SOURCES
+=
\
..
/
src
/
FlaSimApp
.
cpp
\
..
/
src
/
main
.
cpp
src/FlaSimApp.cpp
0 → 100644
View file @
e59975ed
src/FlaSimApp.hpp
0 → 100644
View file @
e59975ed
#include <irrlicht.h>
class
FlaSimApp
:
public
irr
::
IEventReceiver
{
public:
FlaSimApp
();
~
FlaSimApp
();
void
execute
();
bool
OnEvent
(
const
irr
::
SEvent
&
e
);
private:
irr
::
IrrlichtDevice
*
dev
;
irr
::
scene
::
ISceneManager
*
sman
;
irr
::
video
::
IVideoDriver
*
drv
;
irr
::
gui
::
IGUIEnvironment
*
gui
;
};
src/main.cpp
0 → 100644
View file @
e59975ed
#include "FlaSimApp.hpp"
int
main
()
{
FlaSimApp
a
;
a
.
execute
();
return
0
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment