CS-FreeStyle / 10000-How-To-Do-in-CS

1 stars 0 forks source link

how to use CMake #85

Open liuty10 opened 4 years ago

liuty10 commented 4 years ago

https://blog.csdn.net/kai_zone/article/details/82656964 https://blog.csdn.net/iceboy314159/article/details/80398084 https://blog.csdn.net/wzzfeitian/article/details/40963457

liuty10 commented 3 years ago

https://zhuanlan.zhihu.com/p/149828002

liuty10 commented 3 years ago

compile release version

mkdir Release
cd Release
cmake -DCMAKE_BUILD_TYPE=Release ..
make

compile debug version

mkdir Debug
cd Debug
cmake -DCMAKE_BUILD_TYPE=Debug ..
make