先说一下个人使用的环境和建立工程的方式:
环境:ubuntu20.04+cmake+vscode, 建立的是C++工程。
方式:用的是较为简单的方式。建立一个工程目录,下面有一个build目录,一个cpp源文件,CMakeLists.txt文件。如下图所示:
(.vscode文件是配置时自动生成的,有时有,有时没有)
然后编译运行一般是三板斧:
cd build
cmake ..
make
./可执行文件名
在ubuntu下用cmake编译C++工程时,如果改变了工程文件的位置,那么在build文件中运行cmake … 时有可能会出现这样的错误:
CMake Error: The current CMakeCache.txt directory /home/.../build/CMakeCache.txt is different than the directory /home/.../build where CMakeCache.txt was created. This may result in binaries being created in the wrong place. If you are not sure, reedit the CMakeCache.txt CMake Error: The source "/home/.../CMakeLists.txt" does not match the source "/home/.../CMakeLists.txt" used to generate cache. Re-run cmake with a different source directory.
(中间的省略号省略了几层路径)。我这里的情况是新建了一个文件夹(或者称为目录),将原来的C++项目文件都挪到这个文件夹下了。从报错提示可以看到,这是因为当前CMakeCache.txt的路径和它之前被创建的路径不同了。
解决办法很简单:
1.退出build目录:
cd ..
2.删除build目录(要确保build中只存放了编译生成的中间文件)
rm -rf build
3.新建build目录
mkdir build
4.进入build
cd build
5.重新cmake …
cmake ..
这时就不会报错了