1
0
mirror of synced 2024-11-11 15:38:54 +01:00
modern-cmake/examples/simple-project/simple_lib.cpp

6 lines
91 B
C++
Raw Normal View History

2019-02-21 22:28:07 +01:00
#include <string>
std::string simple_lib_function() {
return "Compiled in library";
}