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.
28 lines
634 B
Prolog
28 lines
634 B
Prolog
9 years ago
|
#-------------------------------------------------
|
||
|
#
|
||
|
# Project created by QtCreator 2015-10-28T15:23:55
|
||
|
#
|
||
|
#-------------------------------------------------
|
||
|
|
||
|
QT += core gui
|
||
|
|
||
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
||
|
|
||
|
TARGET = prodejna
|
||
|
TEMPLATE = app
|
||
|
|
||
|
|
||
|
SOURCES += main.cpp\
|
||
|
mainwindow.cpp \
|
||
|
|
||
|
HEADERS += mainwindow.h
|
||
|
|
||
|
FORMS += mainwindow.ui
|
||
|
|
||
|
win32:CONFIG(release, debug|release): LIBS += -L$$OUT_PWD/../core/release/ -lcore
|
||
|
else:win32:CONFIG(debug, debug|release): LIBS += -L$$OUT_PWD/../core/debug/ -lcore
|
||
|
else:unix: LIBS += -L$$OUT_PWD/../core/ -lcore
|
||
|
|
||
|
INCLUDEPATH += $$PWD/../core
|
||
|
DEPENDPATH += $$PWD/../core
|