如何修复这个编译错误?

如何修复这个编译错误?

如何修复 Ubuntu 18.04 中的这个编译错误?

(weewoo)adam98832@localhost:~$ cd Cockatrice
(weewoo)adam98832@localhost:~/Cockatrice$ mkdir build
(weewoo)adam98832@localhost:~/Cockatrice$ cd build
(weewoo)adam98832@localhost:~/Cockatrice/build$ cmake . . -DWITH_SERVER=1
CMake Error: The source directory "/home/adam98832/Cockatrice/build" does not appear to contain CMakeLists.txt.
Specify --help for usage, or press the help button on the CMake GUI.

答案1

看起来两个“点”之间有一个空格。尝试

cmake .. -DWITH_SERVER=1

在构建目录中。

相关内容