Programing/Tool/CMake/Guides/Tutorial のバックアップ(No.1)
- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- 現在との差分 - Visual を表示
- ソース を表示
- Programing/Tool/CMake/Guides/Tutorial へ行く。
- 1 (2020-12-29 (火) 02:37:25)
- 2 (2021-01-01 (金) 06:53:03)
- 3 (2021-01-01 (金) 14:03:00)
- 4 (2021-01-01 (金) 17:14:18)
- 5 (2023-11-10 (金) 11:40:43)
CMake Tutorialの簡易翻訳
はじめに
Step1.基本
最も基本的なプロジェクトは、ソースコードから実行ファイルをビルドします。
単純なプロジェクトの場合、必要なのは3行の CMakeLists.txt ファイルのみです。
このファイルがチュートリアルの出発点になります。
次のような CMakeLists.txt ファイルを Setp1 ディレクトリに作成します。
Note that this example uses lower case commands in the CMakeLists.txt file. Upper, lower, and mixed case commands are supported by CMake. The source code for tutorial.cxx is provided in the Step1 directory and can be used to compute the square root of a number.