C++ ライブラリ/フレームワークである Qt を使用してアプリケーションを開発しています。QT-Creator を使用すると、プロジェクトを問題なくコンパイルでき、ビルド ディレクトリは目的の実行可能ファイルを問題なく生成します。ただし、質問を自動化し、Apache ANT を使用しようとしています。しかし、私は次の問題に直面しています。
コマンドラインからの出力は次のとおりです。
build.mac.64:
[echo] Building for Mac
[echo] Updating destination path
[exec] Project WARNING: No .qmake.cache is present. This significantly slows down qmake with this makespec.
[exec] Project WARNING: Call 'cache()' in the top-level project file to rectify this problem.
[exec] make: Nothing to be done for `first'.
[exec] cp: ./build/mac.64/settings.ini: No such file or directory
[exec] Result: 1
[echo] Reverting destination path
実行可能ファイルをコンパイルしていない理由がわかりません。
私のターゲットは次のようになります。
<target name="build.mac.64">
<echo>Building for Mac</echo>
<exec executable="qmake">
<arg value="myproject.pro"/>
<arg
value="-r"/>
<arg value="-spec"/>
<arg value="macx-clang"/>
<arg value="CONFIG+=x86_64"/>
</exec>
<exec executable="make" />
<exec executable="cp">
<arg value="./settings.ini"/>
<arg value="${default.build.dir.mac.64}/settings.ini"/>
</exec>
</target>
私が間違っているところはありますか?