diff options
Diffstat (limited to '')
-rw-r--r-- | cmake/examples/dynamic/bar.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/cmake/examples/dynamic/bar.cpp b/cmake/examples/dynamic/bar.cpp new file mode 100644 index 0000000..37aa9b5 --- /dev/null +++ b/cmake/examples/dynamic/bar.cpp @@ -0,0 +1,7 @@ +#include "bar.hpp" + +#include <iostream> + +void bar() { + std::cout << "bar\n"; +} |