d507cd40b6
this is a bit easier on the backwards compat code in qt creator, which needs to merge and then de-duplicate the lists itself. Change-Id: I79f9319c26af541f5efa85700878e7ddbd00e2b7 Reviewed-by: Jake Petroules <jake.petroules@qt.io>
13 lines
427 B
Plaintext
13 lines
427 B
Plaintext
|
|
# Objective-C/C++ sources go in SOURCES, like all other sources
|
|
SOURCES += $$OBJECTIVE_SOURCES
|
|
unset(OBJECTIVE_SOURCES)
|
|
|
|
# Strip C/C++ flags from QMAKE_OBJECTIVE_CFLAGS just in case
|
|
QMAKE_OBJECTIVE_CFLAGS -= $$QMAKE_CFLAGS $$QMAKE_CXXFLAGS
|
|
|
|
# Add Objective-C/C++ flags to C/C++ flags, the compiler can handle it
|
|
QMAKE_CFLAGS += $$QMAKE_OBJECTIVE_CFLAGS
|
|
QMAKE_CXXFLAGS += $$QMAKE_OBJECTIVE_CFLAGS
|
|
unset(QMAKE_OBJECTIVE_CFLAGS)
|