monero-gui/monero-core.pro

132 lines
2.6 KiB
Prolog
Raw Normal View History

2014-07-07 17:08:30 +00:00
TEMPLATE = app
QT += qml quick widgets
2016-05-17 13:03:59 +00:00
WALLET_ROOT=$$PWD/bitmonero
CONFIG += c++11
2016-02-23 15:59:26 +00:00
2016-06-03 14:30:19 +00:00
INCLUDEPATH += $$WALLET_ROOT/include \
$$PWD/src/libwalletqt
2016-05-17 13:03:59 +00:00
HEADERS += \
filter.h \
clipboardAdapter.h \
2016-02-23 15:59:26 +00:00
oscursor.h \
2016-06-03 14:30:19 +00:00
src/libwalletqt/WalletManager.h \
2016-06-08 10:53:24 +00:00
src/libwalletqt/Wallet.h \
src/libwalletqt/PendingTransaction.h \
src/libwalletqt/TransactionHistory.h \
src/libwalletqt/TransactionInfo.h \
oshelper.h
2014-07-07 17:08:30 +00:00
SOURCES += main.cpp \
filter.cpp \
clipboardAdapter.cpp \
2016-02-23 15:59:26 +00:00
oscursor.cpp \
2016-06-03 14:30:19 +00:00
src/libwalletqt/WalletManager.cpp \
2016-06-08 10:53:24 +00:00
src/libwalletqt/Wallet.cpp \
src/libwalletqt/PendingTransaction.cpp \
src/libwalletqt/TransactionHistory.cpp \
src/libwalletqt/TransactionInfo.cpp \
oshelper.cpp
2014-07-07 17:08:30 +00:00
2016-01-29 19:01:52 +00:00
lupdate_only {
SOURCES = *.qml \
components/*.qml \
pages/*.qml \
wizard/*.qml
}
LIBS += -L$$WALLET_ROOT/lib \
-lwallet_merged \
2016-07-04 15:17:26 +00:00
-lwallet_merged2
win32 {
#QMAKE_LFLAGS += -static
LIBS+= \
-Wl,-Bstatic \
-lboost_serialization-mt \
-lboost_thread-mt \
-lboost_system-mt \
-lboost_date_time-mt \
-lboost_filesystem-mt \
-lboost_regex-mt \
-lboost_chrono-mt \
-lboost_program_options-mt \
-lssl \
-lcrypto \
-Wl,-Bdynamic \
-lws2_32 \
-lwsock32 \
-lIphlpapi \
-lgdi32
}
unix {
LIBS+= \
-Wl,-Bstatic \
-lboost_serialization \
-lboost_thread \
-lboost_system \
-lboost_date_time \
-lboost_filesystem \
2016-07-04 15:17:26 +00:00
-lboost_regex \
-lboost_chrono \
-lboost_program_options \
-lssl \
-lcrypto \
-Wl,-Bdynamic \
-ldl
2016-07-04 15:17:26 +00:00
}
2016-05-17 13:03:59 +00:00
2016-01-29 19:01:52 +00:00
# translations files;
TRANSLATIONS = monero-core_en.ts \ # English (could be untranslated)
monero-core_de.ts # Deutsch
# extra make targets for lupdate and lrelease invocation
# use "make lupdate" to update *.ts files and "make lrelease" to generate *.qm files
2016-01-29 19:01:52 +00:00
lupdate.commands = lupdate $$_PRO_FILE_
lupdate.depends = $$SOURCES $$HEADERS
2016-01-29 19:01:52 +00:00
lrelease.commands = lrelease $$_PRO_FILE_
lrelease.depends = lupdate
translate.commands = $(COPY) *.qm ${DESTDIR}
translate.depends = lrelease
QMAKE_EXTRA_TARGETS += lupdate lrelease
CONFIG(release, debug|release) {
DESTDIR=release
}
CONFIG(debug, debug|release) {
DESTDIR=debug
}
2014-07-07 17:08:30 +00:00
RESOURCES += qml.qrc
# Additional import path used to resolve QML modules in Qt Creator's code model
QML_IMPORT_PATH =
# Default rules for deployment.
include(deployment.pri)
2016-02-06 16:19:54 +00:00
OTHER_FILES += \
.gitignore \
monero-core_de.ts \
monero-core_en.ts
2016-02-23 15:59:26 +00:00
DISTFILES += \
notes.txt