1. 程式人生 > >CMake 使用筆記

CMake 使用筆記

org cmake lin ESS pre docs command list res

記錄 CMake 相關知識。

Prelude:讀文檔一定要有耐心!

問題一 CLion: CMakeLists.txtset(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?

CMake 使用筆記