aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/cmake/examples/boost
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2020-01-08 03:32:39 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2020-01-08 03:32:39 +0300
commit7b46d443b0418b4b7a4b66e046a3dc28585821d0 (patch)
treec6d537634c9ce83274df83fd4bb7b99455ed7c17 /cmake/examples/boost
parentAppVeyor: prettify appveyor.yml (diff)
downloadcmake-common-7b46d443b0418b4b7a4b66e046a3dc28585821d0.tar.gz
cmake-common-7b46d443b0418b4b7a4b66e046a3dc28585821d0.zip
cmake/examples: more distinct output
Diffstat (limited to '')
-rw-r--r--cmake/examples/boost/foo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/examples/boost/foo.cpp b/cmake/examples/boost/foo.cpp
index b5db3b5..e5b7704 100644
--- a/cmake/examples/boost/foo.cpp
+++ b/cmake/examples/boost/foo.cpp
@@ -3,6 +3,6 @@
#include <iostream>
int main(int argc, char* argv[]) {
- std::cout << boost::filesystem::absolute(boost::filesystem::path{argv[0]}).string() << "\n";
+ std::cout << "Hello from " << boost::filesystem::absolute(boost::filesystem::path{argv[0]}).string() << "!\n";
return 0;
}