Add CMake example

This commit is contained in:
Alex Hirsch
2020-11-26 21:56:26 +01:00
parent eb0ea94898
commit 353e06c941
10 changed files with 17982 additions and 0 deletions

10
cmake-example/src/foo.cpp Normal file
View File

@@ -0,0 +1,10 @@
#include "mylib/foo.hpp"
namespace mylib {
int foo()
{
return 42;
}
} // end namespace mylib