Effective Modern CMakeEffective Modern CMake : https://gist.github.com/mbinna/c61dbb39bca0e4fb7d1f73b0d66a4fd1CMakeLists.txt : Basic Templatecmake_minimum_required(VERSION 3.11)project(main)set(CMAKE_CXX_STANDARD 17)add_executable(main main.cpp)target_compile_options(main PRIVATE -Wall -O2)# target_include_directories(main PRIVATE )# target_link_directories(main PRIVATE )# target_link_libraries(..