В дополнение к комментарию Трубадура , я хотел бы отметить, что цель SUBDIRS
подходит только для указания подкаталогов. Следовательно, ваша дополнительная линия
SOURCES += main.cpp
в вашем файле project.pro неверно и, в худшем случае, скорее всего не удастся создать файл main.cpp. В лучшем случае qmake откажется анализировать файл, поскольку в нем есть противоречивые спецификации.
Я несколько раз использовал шаблон SUBDIRS
, и он хорошо работает, если вы можете встраивать детали в более или менее независимые библиотеки, очевидно, как у вас с логикой и графическим интерфейсом. Вот один из способов сделать это:
project_dir/
-project.pro
-common.pri
-logic/
----logic.pro
----some logic files
-gui/
----gui.pro
----gui files
-build/
----build.pro
----main.cpp
project.pro:
TEMPLATE = subdirs
SUBDIRS = logic \
gui
# build must be last:
CONFIG += ordered
SUBDIRS += build
common.pri:
#Includes common configuration for all subdirectory .pro files.
INCLUDEPATH += . ..
WARNINGS += -Wall
TEMPLATE = lib
# The following keeps the generated files at least somewhat separate
# from the source files.
UI_DIR = uics
MOC_DIR = mocs
OBJECTS_DIR = objs
логика / logic.pro:
# Check if the config file exists
! include( ../common.pri ) {
error( "Couldn't find the common.pri file!" )
}
HEADERS += logic.h
SOURCES += logic.cpp
# By default, TARGET is the same as the directory, so it will make
# liblogic.a (in linux). Uncomment to override.
# TARGET = target
гуй / gui.pro:
! include( ../common.pri ) {
error( "Couldn't find the common.pri file!" )
}
FORMS += gui.ui
HEADERS += gui.h
SOURCES += gui.cpp
# By default, TARGET is the same as the directory, so it will make
# libgui.a (in linux). Uncomment to override.
# TARGET = target
сборка / build.pro:
TEMPLATE = app
SOURCES += main.cpp
LIBS += -L../logic -L../gui -llogic -lgui
# Will build the final executable in the main project directory.
TARGET = ../project