blob: 6ff05622fdb3d0fb2eec70418ee88fb6be4e9ab9 [file] [log] [blame]
QT += core
CONFIG += c++14
# You can make your code fail to compile if it uses deprecated APIs.
# In order to do so, uncomment the following line.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
SOURCES += \
AstNode.cpp \
Evaluator.cpp \
Function.cpp \
main.cpp \
Matcher.cpp \
Parser.cpp \
PPrint.cpp \
Repl.cpp \
StdLib.cpp \
Token.cpp \
VarContext.cpp
HEADERS += \
AstNode.h \
Evaluator.h \
Function.h \
Matcher.h \
Parser.h \
PPrint.h \
Repl.h \
StdLib.h \
Token.h \
VarContext.h
include(ide/IDE.pri)
# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target
LIBS += -lreadline
TRANSLATIONS += $$files(ts/*.ts)
RESOURCES += translations.qrc