在一个Clion项目中定义多个main函数编译的时候会报这个错误
image.png
显示就是main函数重复了,查阅了下好像可以通过修改CMakeList.txt来修改,将其定义成两个独立的executable即可

  1. add_executable(hello test/hello_world.cpp)
  2. add_executable(sqrt test/sqrt.cpp)

参考

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