17519feadd
while the names of the compilers are actually an undocumented internal, we don't provide an actually working proper way to sequence extra compiler execution with build-time generated inputs when they are indirectly listed (as via .qrc files). Task-number: QTBUG-54299 Change-Id: I269c26512897b72706dc8b769aa47e8157c2a5c5 Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
37 lines
1.1 KiB
Plaintext
37 lines
1.1 KiB
Plaintext
qtPrepareTool(QMAKE_DUMPCPP, dumpcpp)
|
|
|
|
dumpcpp_decl.depends += $$QMAKE_DUMPCPP_EXE
|
|
dumpcpp_decl.commands = $$QMAKE_DUMPCPP ${QMAKE_FILE_IN} -o ${QMAKE_FILE_BASE}
|
|
qaxcontainer_compat: dumpcpp_decl.commands += -compat
|
|
dumpcpp_decl.output = ${QMAKE_FILE_BASE}.h
|
|
dumpcpp_decl.input = TYPELIBS
|
|
dumpcpp_decl.variable_out = HEADERS
|
|
dumpcpp_decl.name = DUMP
|
|
dumpcpp_decl.CONFIG += no_link
|
|
|
|
QMAKE_EXTRA_COMPILERS += dumpcpp_decl
|
|
|
|
|
|
dumpcpp_impl.commands = $$escape_expand(\\n) # dummy command
|
|
dumpcpp_impl.output = ${QMAKE_FILE_BASE}.cpp
|
|
dumpcpp_impl.input = TYPELIBS
|
|
dumpcpp_impl.variable_out = SOURCES
|
|
dumpcpp_impl.name = CPP
|
|
dumpcpp_impl.depends += ${QMAKE_FILE_BASE}.h
|
|
|
|
QMAKE_EXTRA_COMPILERS += dumpcpp_impl
|
|
|
|
|
|
# Create dependencies from every object file to our generated header files.
|
|
if(isEmpty(BUILDS)|build_pass):have_target:!contains(TEMPLATE, vc.*) {
|
|
for(tlb, TYPELIBS) {
|
|
hdr = $$basename(tlb)
|
|
hdr = $$section(hdr, ., 0, -2).h
|
|
TYPELIB_HEADERS += $$hdr
|
|
}
|
|
|
|
objtgt.target = $(OBJECTS)
|
|
objtgt.depends += $$TYPELIB_HEADERS
|
|
QMAKE_EXTRA_TARGETS += objtgt
|
|
}
|