Skip to content

CMake

Last update: 05. March 2023 (Created: 19. February 2023)

CMake

// CMake adds -DNDEBUG to the CMAKE_C_FLAGS_{ RELEASE, MINSIZEREL } by default.
// See: https://stackoverflow.com/a/8594122
#ifndef NDEBUG
    // Code only for debug builds.
#endif