問題タブ [cmake-language]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
cmake - CMakeの「file(download)」命令の実行順序は?
CMakeLists.txt
コマンドを持つ がありますfile(download xxx yy)
。cpx
このダウンロードしたファイルを必要とする custom_target もあります。ただし、cpx
ターゲットが呼び出されたとき、xxx
ファイルはまだダウンロードされていません。
私の質問は、いつ CMake で実行されるのか、カスタム ターゲットを命令download
に依存させるにはどうすればよいのかということです。file(download)
cmake - cmake から jamfile と jamrule を呼び出す、またはその逆の規定はありますか?
ビルドシステムが詰まっている古いコードベースを CMake に移行しようとしています。
cmake から jamfile と jamrule を呼び出すための規定があるかどうか、およびその逆の規定があるかどうかを確認します。
1 つのオプションは、jam プログラムを呼び出すカスタム ターゲットを追加することです。jamfile / .jam ファイルで定義された jamrule を使用することも可能ですか?