2020-02-19 12:50:09 -05:00
|
|
|
TEMPLATE = app
|
|
|
|
CONFIG += c++17
|
|
|
|
CONFIG -= console app_bundle
|
|
|
|
CONFIG -= qt
|
|
|
|
|
|
|
|
SOURCES += \
|
2020-02-21 16:55:13 -05:00
|
|
|
game.cpp \
|
|
|
|
hero.cpp \
|
|
|
|
level.cpp \
|
|
|
|
main.cpp
|
2020-02-19 12:50:09 -05:00
|
|
|
|
|
|
|
HEADERS += \
|
|
|
|
game.h \
|
|
|
|
hero.h \
|
|
|
|
level.h
|
|
|
|
|
|
|
|
# Only to highlight syntax when I am on Windows
|
|
|
|
win32:INCLUDEPATH += d:\SFML-2.5.1\include
|
2020-02-21 16:55:13 -05:00
|
|
|
|
|
|
|
LIBS += -lsfml-graphics -lsfml-window -lsfml-system
|