Skip to content

Instantly share code, notes, and snippets.

@leveled
Last active October 21, 2021 14:29
Show Gist options
  • Save leveled/c47b693abcf1e7ce3e2e1938a94f75d6 to your computer and use it in GitHub Desktop.
Save leveled/c47b693abcf1e7ce3e2e1938a94f75d6 to your computer and use it in GitHub Desktop.
CMake Cheatsheet
#CMakeLists.txt
// Debug build with symbols
set(CMAKE_BUILD_TYPE Debug)
#Cmake CLI
// Build optimized + debug symbols
cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo ...
cmake -DCMAKE_BUILD_TYPE=Debug ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment