2013-06-20 16:09:50 +02:00
|
|
|
#-------------------------------------------------
|
|
|
|
#
|
|
|
|
# Project created by QtCreator 2013-06-18T12:36:43
|
|
|
|
#
|
|
|
|
#-------------------------------------------------
|
|
|
|
|
2013-08-29 15:12:30 +02:00
|
|
|
# Use out-of-source builds (shadow builds)
|
|
|
|
|
2014-01-19 11:00:20 +01:00
|
|
|
QT += core gui widgets xml svg printsupport xmlpatterns
|
2013-06-20 16:09:50 +02:00
|
|
|
|
|
|
|
TEMPLATE = app
|
|
|
|
|
2013-11-28 17:28:49 +01:00
|
|
|
TARGET = valentina
|
2013-06-20 16:09:50 +02:00
|
|
|
|
2013-11-06 14:34:54 +01:00
|
|
|
CONFIG -= debug_and_release debug_and_release_target
|
2013-11-21 11:03:25 +01:00
|
|
|
CONFIG += c++11
|
2013-06-20 16:09:50 +02:00
|
|
|
|
2013-11-06 14:34:54 +01:00
|
|
|
#DEFINES += ...
|
2013-07-03 14:29:26 +02:00
|
|
|
|
2013-08-29 15:12:30 +02:00
|
|
|
# directory for executable file
|
|
|
|
DESTDIR = bin
|
|
|
|
|
|
|
|
# files created moc
|
2013-12-20 15:47:11 +01:00
|
|
|
MOC_DIR = moc
|
2013-08-29 15:12:30 +02:00
|
|
|
|
|
|
|
# objecs files
|
|
|
|
OBJECTS_DIR = obj
|
|
|
|
|
|
|
|
# files created rcc
|
|
|
|
RCC_DIR = rcc
|
|
|
|
|
|
|
|
# files created uic
|
|
|
|
UI_DIR = uic
|
|
|
|
|
2013-11-21 09:33:11 +01:00
|
|
|
include(src/src.pri)
|
2013-11-20 13:43:48 +01:00
|
|
|
include(src/container/container.pri)
|
|
|
|
include(src/dialogs/dialogs.pri)
|
|
|
|
include(src/exception/exception.pri)
|
|
|
|
include(src/geometry/geometry.pri)
|
|
|
|
include(src/tools/tools.pri)
|
|
|
|
include(src/widgets/widgets.pri)
|
|
|
|
include(src/xml/xml.pri)
|
2013-11-06 14:34:54 +01:00
|
|
|
|
|
|
|
RESOURCES += \
|
2013-11-20 13:43:48 +01:00
|
|
|
share/resources/icon.qrc \
|
2014-01-03 22:02:51 +01:00
|
|
|
share/resources/cursor.qrc \
|
2014-01-19 11:00:20 +01:00
|
|
|
share/resources/theme.qrc \
|
|
|
|
share/resources/schema.qrc
|
2013-08-29 15:12:30 +02:00
|
|
|
|
2013-11-21 09:33:11 +01:00
|
|
|
OTHER_FILES += share/resources/valentina.rc \
|
|
|
|
share/resources/icon/64x64/icon64x64.ico
|
|
|
|
|
2014-01-18 16:04:48 +01:00
|
|
|
TRANSLATIONS += share/translations/valentina.ts \
|
|
|
|
share/translations/valentina_ru.ts \
|
2013-12-20 10:45:19 +01:00
|
|
|
share/translations/valentina_uk.ts \
|
2014-01-19 11:05:07 +01:00
|
|
|
share/translations/valentina_de.ts \
|
|
|
|
share/translations/valentina_cs.ts
|
2014-01-18 16:04:48 +01:00
|
|
|
|
2013-12-20 10:45:19 +01:00
|
|
|
unix {
|
|
|
|
QMAKE_CXX = ccache g++
|
|
|
|
}
|
2013-11-21 13:14:25 +01:00
|
|
|
|
2013-11-28 17:28:49 +01:00
|
|
|
CONFIG += precompile_header
|
|
|
|
# Precompiled headers (PCH)
|
|
|
|
PRECOMPILED_HEADER = src/stable.h
|
|
|
|
win32-msvc* {
|
|
|
|
PRECOMPILED_SOURCE = src/stable.cpp
|
|
|
|
}
|
|
|
|
|
2013-07-28 00:18:06 +02:00
|
|
|
CONFIG(debug, debug|release){
|
|
|
|
# Debug
|
2014-01-02 18:35:58 +01:00
|
|
|
unix {
|
|
|
|
*-g++{
|
|
|
|
QMAKE_CXXFLAGS += -isystem "/usr/include/qt5" -isystem "/usr/include/qt5/QtWidgets" \
|
|
|
|
-isystem "/usr/include/qt5/QtXml" -isystem "/usr/include/qt5/QtGui" \
|
|
|
|
-isystem "/usr/include/qt5/QtCore" -isystem "$${UI_DIR}" -isystem "$${MOC_DIR}" \
|
|
|
|
-isystem "$${RCC_DIR}" \
|
2014-01-08 15:05:32 +01:00
|
|
|
-O0 -Wall -Wextra -pedantic -Weffc++ -Woverloaded-virtual -Wctor-dtor-privacy \
|
2014-01-02 18:35:58 +01:00
|
|
|
-Wnon-virtual-dtor -Wold-style-cast -Wconversion -Winit-self \
|
|
|
|
-Wunreachable-code -Wcast-align -Wcast-qual -Wdisabled-optimization -Wfloat-equal \
|
|
|
|
-Wformat -Wformat=2 -Wformat-nonliteral -Wformat-security -Wformat-y2k \
|
|
|
|
-Winvalid-pch -Wunsafe-loop-optimizations -Wlong-long -Wmissing-format-attribute \
|
|
|
|
-Wmissing-include-dirs -Wpacked -Wredundant-decls \
|
|
|
|
-Wswitch-default -Wswitch-enum -Wuninitialized -Wunused-parameter -Wvariadic-macros \
|
|
|
|
-Wlogical-op -Wnoexcept \
|
|
|
|
-Wstrict-null-sentinel -Wstrict-overflow=5 -Wundef -Wno-unused -gdwarf-3
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
*-g++{#Don't use additional GCC keys on Windows system.
|
|
|
|
QMAKE_CXXFLAGS += -Og -Wall -Wextra -pedantic
|
|
|
|
}
|
2013-11-28 17:28:49 +01:00
|
|
|
}
|
2013-07-28 00:18:06 +02:00
|
|
|
}else{
|
|
|
|
# Release
|
2013-11-28 17:28:49 +01:00
|
|
|
*-g++{
|
2013-09-26 19:11:56 +02:00
|
|
|
QMAKE_CXXFLAGS += -O1
|
2013-11-28 17:28:49 +01:00
|
|
|
}
|
2013-09-26 15:05:21 +02:00
|
|
|
|
2013-11-06 14:34:54 +01:00
|
|
|
DEFINES += QT_NO_DEBUG_OUTPUT
|
2013-07-28 00:18:06 +02:00
|
|
|
}
|
2013-09-18 18:52:49 +02:00
|
|
|
|
2013-10-01 20:15:59 +02:00
|
|
|
message(Qt version: $$[QT_VERSION])
|
|
|
|
message(Qt is installed in $$[QT_INSTALL_PREFIX])
|
|
|
|
message(Qt resources can be found in the following locations:)
|
|
|
|
message(Documentation: $$[QT_INSTALL_DOCS])
|
|
|
|
message(Header files: $$[QT_INSTALL_HEADERS])
|
|
|
|
message(Libraries: $$[QT_INSTALL_LIBS])
|
|
|
|
message(Binary files (executables): $$[QT_INSTALL_BINS])
|
|
|
|
message(Plugins: $$[QT_INSTALL_PLUGINS])
|
|
|
|
message(Data files: $$[QT_INSTALL_DATA])
|
|
|
|
message(Translation files: $$[QT_INSTALL_TRANSLATIONS])
|
|
|
|
message(Settings: $$[QT_INSTALL_SETTINGS])
|
|
|
|
message(Examples: $$[QT_INSTALL_EXAMPLES])
|
2013-11-21 09:33:11 +01:00
|
|
|
|
|
|
|
win32:RC_FILE = share/resources/valentina.rc
|
2013-11-21 14:06:23 +01:00
|
|
|
|
2013-11-26 17:43:26 +01:00
|
|
|
# Remove generated files at cleaning
|
|
|
|
QMAKE_DISTCLEAN += $${DESTDIR}/* \
|
|
|
|
$${OBJECTS_DIR}/* \
|
|
|
|
$${UI_DIR}/* \
|
2013-12-20 15:47:11 +01:00
|
|
|
$${MOC_DIR}/* \
|
2013-11-26 17:43:26 +01:00
|
|
|
$${RCC_DIR}/*
|
|
|
|
|
2013-11-21 14:06:23 +01:00
|
|
|
unix {
|
|
|
|
#VARIABLES
|
|
|
|
isEmpty(PREFIX) {
|
|
|
|
PREFIX = /usr
|
|
|
|
}
|
2013-11-26 17:43:26 +01:00
|
|
|
BINDIR = $$PREFIX/bin
|
2013-11-21 14:06:23 +01:00
|
|
|
DATADIR =$$PREFIX/share
|
|
|
|
DEFINES += DATADIR=\\\"$$DATADIR\\\" PKGDATADIR=\\\"$$PKGDATADIR\\\"
|
|
|
|
#MAKE INSTALL
|
2013-11-22 12:27:46 +01:00
|
|
|
target.path = $$BINDIR
|
2013-11-26 17:43:26 +01:00
|
|
|
desktop.path = $$DATADIR/applications/
|
|
|
|
desktop.files += dist/$${TARGET}.desktop
|
|
|
|
pixmaps.path = $$DATADIR/pixmaps/
|
|
|
|
pixmaps.files += dist/$${TARGET}.png
|
|
|
|
INSTALL_TRANSLATIONS += share/translations/valentina_ru.qm \
|
2013-12-20 10:45:19 +01:00
|
|
|
share/translations/valentina_uk.qm \
|
2014-01-19 11:05:07 +01:00
|
|
|
share/translations/valentina_de.qm \
|
|
|
|
share/translations/valentina_cs.qm
|
2013-11-26 17:43:26 +01:00
|
|
|
translations.path = $$DATADIR/$${TARGET}/translations/
|
|
|
|
translations.files = $$INSTALL_TRANSLATIONS
|
2013-11-22 12:27:46 +01:00
|
|
|
INSTALLS += target \
|
2013-11-26 17:43:26 +01:00
|
|
|
desktop \
|
|
|
|
pixmaps \
|
2013-11-22 12:27:46 +01:00
|
|
|
translations
|
2013-12-29 17:48:57 +01:00
|
|
|
}
|