c - Set C11 as default Language in Clion -


i'm studying c @ university , download clion; how can change default language every project create ready work?

depending on version of clion either see cmakelists.txt contain like

set(cmake_cxx_flags "-std=c++11") 

or recent eap builds

set(cmake_cxx_standard 11) 

simply change variables , flags correct ones c.

there's no way (that know of) make use c language default new projects. must manually edit project cmakelists.txt file.


Comments

Popular posts from this blog

unity3d - Rotate an object to face an opposite direction -

angular - Is it possible to get native element for formControl? -

javascript - Why jQuery Select box change event is now working? -