Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Qtの.proファイルを使用して別のMakefileを呼び出す方法はありますか?たとえば、makefileでは、次を使用できます。
make -f /other/path/Makefile
Qtのプロファイルを使用するようなものはありますか?
このようなものが機能するはずです:
QMAKE_EXTRA_TARGETS += other PRE_TARGETDEPS += other other.commands = make -f /other/path/Makefile
これmake -f /other/path/Makefileにより、makeプロセスの一部として呼び出され、make otherそのコマンドを実行するために入力することもできます。
make other