You cannot 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
564 B
Prolog

TEMPLATE = app
CONFIG += c++17
CONFIG -= console app_bundle
CONFIG -= qt
QMAKE_CXXFLAGS = -Wall -Werror -Wextra -Wpedantic -Wconversion -std=c++17 -O0 -g
SOURCES += \
audio.cpp \
cell.cpp \
entity.cpp \
game.cpp \
hero.cpp \
level.cpp \
main.cpp \
renderer.cpp
HEADERS += \
audio.h \
cell.h \
entity.h \
game.h \
hero.h \
level.h \
renderer.h
# Only to highlight syntax when I am on Windows
win32:INCLUDEPATH += d:\SFML-2.5.1\include
LIBS += -lsfml-graphics -lsfml-audio -lsfml-window -lsfml-system