Reputation: 3521
I've updated CLion to the latest version (2016.3.2).
But when I open my project, I can compile only in one configuraion debug all the rest are missing.
On the previous version I could choose between:
Nothing was changed but the version upgrade of Clion.
Upvotes: 2
Views: 3022
Reputation: 25483
CMake workflow indeed changed significantly in CLion 2016.3: the decision to leave only a single configuration was a performance-related trade-off back then.
However, the ability to use multiple configuration was re-implemented and improved in 2016.3.2:
Go to Settings/Preferences | Build, Execution, Deployment | CMake and create any number of CMake configurations from scratch, or copy existing ones (with all the settings pre-filled). When done, additional resolve context will be available in the bottom right-hand switcher in the editor.
Upvotes: 7