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

View File

@@ -0,0 +1,10 @@
#ifndef MYLIB_FOO_HPP
#define MYLIB_FOO_HPP
namespace mylib {
int foo();
} // end namespace mylib
#endif // MYLIB_FOO_HPP