我正在寻找一种使用QMake组织项目结构的方法。我找到了subdirs
模板,但我很难理解它。我试图做这样的事情。任何人都可以告诉我,我是对的。
编辑:我已阅读以下帖子How to use QMake's subdirs template?,但我仍然被卡住了
我的项目结构如下:
MultiFuncTester.pro
- DMM
(DMM.cpp, DMM.h and Multifunctester.pri)
-Safety
(Safety.cpp, Safety.h and Multifunctester.pri)
-Solar
(Solar.cpp, Solar.h and Multifunctester.pri)
Main
(Main.pro, Main.cpp and Multifunctester.pri)
这里Multifunctester.pri文件对所有子目录都有共同的东西。 我粘贴MultiFuncTester.pro和.pri文件以及main.pro文件
我已将项目的专业文件设为MultiFuncTester.pro:
# build all components recursive
TEMPLATE = subdirs
######## normal build process ########
#
# Make sure your Main.pro is in the last line to ensure correct linking!
#
SUBDIRS = ../../MultiFuncTester/Components/Solar/Build/Solar.pro \
../../MultiFuncTester/Components/DMM/Build/DMM.pro \
../../MultiFuncTester/Components/Safety/Build/Safety.pro \
../../MultiFuncTester/Components/Setup/Build/Setup.pro \
../../MultiFuncTester/Components/Start/Build/Start.pro \
../../MultiFuncTester/Components/Main/Build/Main.pro \
CONFIG += ordered
MultiFunctester.pri文件:
######################
# common stuff for all components
######################
TEMPLATE = lib
CONFIG += static \
warn_on \
qt \
thread \
rtti
QT += core \
gui
INCLUDEPATH +=/..\
../../MultiFuncTester/Components \
DEPENDPATH +=/..\
../../MultiFuncTester/Components \
CONFIG += debug_and_release
CONFIG += build_all
QMAKE_CXXFLAGS += -Wall
CONFIG(debug, debug|release) {
CONFIG_SUFFIX = dbg
} else {
CONFIG_SUFFIX = rel
DEFINES += QT_NO_DEBUG \
QT_NO_DEBUG_OUTPUT \
DBT_TRACE_DISCARD \
NDEBUG
CONFIG(gcov) {
QMAKE_CXXFLAGS_RELEASE += -fprofile-arcs -ftest-coverage
QMAKE_LFLAGS_RELEASE += -fprofile-arcs
QMAKE_CXXFLAGS_RELEASE -= -O2
QMAKE_CXXFLAGS_RELEASE += -O0
}
}
CONFIG(crosstgt) {
### To be able to build Target run qmake as follows:
#qmake CONFIG+=crosstgt
CONFIG_SUFFIX = $${CONFIG_SUFFIX}_tgt
DEFINES += TARGET_BUILD
}
OBJECTS_DIR = obj_$${CONFIG_SUFFIX}
MOC_DIR = moc_$${CONFIG_SUFFIX}
DESTDIR = lib_$${CONFIG_SUFFIX}
Main.pro文件:
################# include pri file #################
!include("Main.pri") {
error("Main.pri not found")
}
####################################################
################# override some pri settings #################
TEMPLATE = app
TARGET = MultiFuncTester
CONFIG -= static
QT += core \
gui
##############################################################
################# list used MultiFuncTester libraries #################
MultiFuncTester_COMPONENTS_DIR =../../MultiFuncTester/Components
################################################################
################# list MultiFunTester libraries #################
MultiFunTester_COMPONENTS_DIR =../../MultiFuncTester/Components
MultiFunTester_COMPONENTS = DMM \
SOLAR\
Safety\
Setup
################# own sources #################
INCLUDEPATH += ../../MultiFuncTester/Components \
SOURCES +=../Source/Main.cpp
################# set destination path
DESTDIR = bin_$$CONFIG_SUFFIX
################# edit include path
INCLUDEPATH += $$MultiFunctester_COMPONENTS_DIR \
################# start group
LIBS += -Wl,--start-group \
################# include MultiFunctester libraries and set dependencies
for(TheComponent, MultiFunctester_COMPONENTS) {
THELIBPATH = $$MultiFunctester_DIR/$${TheComponent}/Build/lib_$$CONFIG_SUFFIX
PRE_TARGETDEPS += $$THELIBPATH/lib$${TheComponent}.a
LIBS += $$THELIBPATH/lib$${TheComponent}.a
}
################# end group
LIBS += -Wl,--end-group
每个子目录都有一个.pro文件,其中定义了标题和来源,以及常见的multifunctester.pri文件
请让我知道,放置一个通用的静态库(MultiFunctester.pri文件)是一种正确的方法,它在代码中应该做什么......如果没有,请帮助我纠正我,无论我错在哪里。
谢谢
答案 0 :(得分:0)
有一些错误:
TEMPLATE = lib
中MultiFunctester.pri
。 .pri文件就像头文件一样,这将添加到包含它的每个专业文件中。这可能会造成混淆,因此请避免在.pri
Multifunctester.pri
的副本。这也很令人困惑,你应该只有一个(或不同的pri
个文件)。 pro
文件中使用的配置时,您会感到痛苦。而是在一个地方声明所有常见设置,并且对于变量设置,在它们时声明它们
适用。Multifunctester.pri
包含在任何地方...... 如果希望单独构建每个子目录(它们可以是相互依赖的),则使用subdirs
模板。例如,当您拥有包含许多可执行文件的框架时,它很有用。看看qwt source directory
在这种情况下,您使用
TEMPLATE = subdirs
CONFIG += ordered
### They MUST be subdirectories, no ../, and no .pro
SUBDIRS += dir1\
dir2\
...
dirn
除了最后一个级别(你有TEMPLATE = lib or app
)之外的每个级别的。
现在,如果您有目录结构,但想要一起构建,则可以创建一个
包含源文件的每个子目录的pri
文件。例如:
在主src.pro
文件中
include(MultiFunctester.pri) ## for the configurations
include($PATHTOSOLAR/Solar.pri)
include($PATHTODMM/dmm.pri)
include($PATHTOSAFETY/safety.pri)
include($PATHTOSETUP/setup.pri)
include($PATHTOSTART/start.pri)
include($PATHTOMAIN/main.pri)
其中$PATHTO...
是src.pro
目录中的 relative 路径。
现在,在每个子目录中都包含源文件。
onesubdir.pri:
headers += /PATHTOTHISSUBDIR/file1.h ## again same relative path as above
....
source +=....