Skip to content
Snippets Groups Projects
Commit b825ac43 authored by Roberto Raggi's avatar Roberto Raggi
Browse files

Fixed the build system. Generate the object files for release and debug builds...

Fixed the build system. Generate the object files for release and debug builds in different directories.
parent 0d40f8a9
No related merge requests found
...@@ -39,3 +39,14 @@ DEPENDPATH += \ ...@@ -39,3 +39,14 @@ DEPENDPATH += \
$$IDE_SOURCE_TREE/tools \ $$IDE_SOURCE_TREE/tools \
LIBS += -L$$IDE_LIBRARY_PATH LIBS += -L$$IDE_LIBRARY_PATH
unix {
debug:OBJECTS_DIR = $${OUT_PWD}/.obj/debug-shared
release:OBJECTS_DIR = $${OUT_PWD}/.obj/release-shared
debug:MOC_DIR = $${OUT_PWD}/.moc/debug-shared
release:MOC_DIR = $${OUT_PWD}/.moc/release-shared
RCC_DIR = $${OUT_PWD}/.rcc/
UI_DIR = $${OUT_PWD}/.uic/
}
...@@ -47,11 +47,4 @@ macx { ...@@ -47,11 +47,4 @@ macx {
} }
unix {
OBJECTS_DIR = $${OUT_PWD}/.obj/
MOC_DIR = $${OUT_PWD}/.moc/
RCC_DIR = $${OUT_PWD}/.rcc/
UI_DIR = $${OUT_PWD}/.uic/
}
contains(QT_CONFIG, reduce_exports):CONFIG += hide_symbols contains(QT_CONFIG, reduce_exports):CONFIG += hide_symbols
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment