記錄 CMake 相關知識。
Prelude:讀文檔一定要有耐心!
問題一 CLion: CMakeLists.txt
中 set(CMAKE_CXX_FLAGS -Wall)
不起作用
Solution: 改用 target_compile_options(main PUBLIC -Wall)
Reference:
target_compile_options
GCC: Options to Request or Suppress Warnings
What is the modern method for setting general compile flags in CMake?