You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
556 B
31 lines
556 B
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
|
|
|