diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-01-08 03:32:39 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-01-08 03:32:39 +0300 |
commit | 7b46d443b0418b4b7a4b66e046a3dc28585821d0 (patch) | |
tree | c6d537634c9ce83274df83fd4bb7b99455ed7c17 /cmake/examples/dynamic/baz.cpp | |
parent | AppVeyor: prettify appveyor.yml (diff) | |
download | cmake-common-7b46d443b0418b4b7a4b66e046a3dc28585821d0.tar.gz cmake-common-7b46d443b0418b4b7a4b66e046a3dc28585821d0.zip |
cmake/examples: more distinct output
Diffstat (limited to 'cmake/examples/dynamic/baz.cpp')
-rw-r--r-- | cmake/examples/dynamic/baz.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/cmake/examples/dynamic/baz.cpp b/cmake/examples/dynamic/baz.cpp new file mode 100644 index 0000000..d108ae3 --- /dev/null +++ b/cmake/examples/dynamic/baz.cpp @@ -0,0 +1,7 @@ +#include "baz.hpp" + +#include <iostream> + +void baz() { + std::cout << "baz\n"; +} |