Last active
October 21, 2021 14:29
-
-
Save leveled/c47b693abcf1e7ce3e2e1938a94f75d6 to your computer and use it in GitHub Desktop.
CMake Cheatsheet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #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