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
Post a Comment