Tag : builds

In CMake if you don’t specify a build type explicitly, the build will use neither Debug nor Release compilation flags. I was writing my own Makefile for a simple program and realized there is no reason to generate a binary with no flags – I either want the debug build for development or release build for deployment. I don’t see a use-case for anything..

Read more