Compile C++ with CMakeLists.txt in Linux
作者:XD / 发表: 2022年4月20日 00:36 / 更新: 2022年4月20日 00:39 / 编程笔记 / 阅读量:1034
After finishing CMakeLists.txt, you may run the following steps to run the code.
mkdir build
cd build
cmake ..
make
./run_your_code
Reference