diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-01-07 03:26:04 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-01-07 03:26:04 +0300 |
commit | a2bc2333b474adfde66c6cd67315f227491f157c (patch) | |
tree | ec649e03f10e14f92258e68a1ecbe81febca2af3 /cmake/examples/simple/foo.cpp | |
parent | cmake/build: remove the --clean parameter (diff) | |
download | cmake-common-a2bc2333b474adfde66c6cd67315f227491f157c.tar.gz cmake-common-a2bc2333b474adfde66c6cd67315f227491f157c.zip |
cmake: add examples
Diffstat (limited to '')
-rw-r--r-- | cmake/examples/simple/foo.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cmake/examples/simple/foo.cpp b/cmake/examples/simple/foo.cpp new file mode 100644 index 0000000..8b6a1d7 --- /dev/null +++ b/cmake/examples/simple/foo.cpp @@ -0,0 +1,6 @@ +#include <iostream> + +int main() { + std::cout << "Hello, world!\n"; + return 0; +} |