CMake_support/Lib_Func.h (6 lines of code) (raw):

// // Created by AK on 13/03/2018. // #ifndef CLION2018_1DEMO_LIB_FUNC_H #define CLION2018_1DEMO_LIB_FUNC_H void my_function(const std::string name) { std::cout << "Hello, " << name << "\n"; } #endif //CLION2018_1DEMO_LIB_FUNC_H