32 lines
556 B
Prolog
32 lines
556 B
Prolog
TEMPLATE = app
|
|
CONFIG += c++17
|
|
CONFIG -= app_bundle
|
|
CONFIG -= qt
|
|
|
|
SOURCES += \
|
|
application.cpp \
|
|
entity.cpp \
|
|
enemy.cpp \
|
|
game.cpp \
|
|
main.cpp \
|
|
player.cpp \
|
|
scenenode.cpp \
|
|
spritenode.cpp \
|
|
state.cpp \
|
|
world.cpp
|
|
|
|
HEADERS += \
|
|
application.h \
|
|
command.h \
|
|
entity.h \
|
|
enemy.h \
|
|
game.h \
|
|
player.h \
|
|
resourceholder.h \
|
|
scenenode.h \
|
|
spritenode.h \
|
|
state.h \
|
|
world.h
|
|
|
|
unix:LIBS += -lsfml-graphics -lsfml-audio -lsfml-window -lsfml-system
|