症状
CMakeLists.txtが見つからない。
1 2 3 |
$ cmake .. CMake Error: The source directory "/home/.../src/" does not appear to contain CMakeLists.txt. Specify --help for usage, or press the help button on the CMake GUI. |
原因
- CMakeLists.txtのある『パス』が間違っている
- CMakeLists.txtの『ファイル名』が間違っている
- 間違い例1:
CMakeList.txt
(sが抜けている) - 間違い例2:
CmakeLists.txt
(大文字と小文字の間違い)
- 間違い例1: