21 lines
343 B
Prolog
21 lines
343 B
Prolog
TEMPLATE = app
|
|
CONFIG += c++17
|
|
CONFIG -= console app_bundle
|
|
CONFIG -= qt
|
|
|
|
SOURCES += \
|
|
game.cpp \
|
|
hero.cpp \
|
|
level.cpp \
|
|
main.cpp
|
|
|
|
HEADERS += \
|
|
game.h \
|
|
hero.h \
|
|
level.h
|
|
|
|
# Only to highlight syntax when I am on Windows
|
|
win32:INCLUDEPATH += d:\SFML-2.5.1\include
|
|
|
|
LIBS += -lsfml-graphics -lsfml-window -lsfml-system
|