aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/cmake/examples/boost/foo.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--cmake/examples/boost/foo.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/cmake/examples/boost/foo.cpp b/cmake/examples/boost/foo.cpp
new file mode 100644
index 0000000..258115b
--- /dev/null
+++ b/cmake/examples/boost/foo.cpp
@@ -0,0 +1,8 @@
+#include <boost/filesystem.hpp>
+
+#include <iostream>
+
+int main() {
+ std::cout << boost::filesystem::path{argv0}.absolute().string(); << "\n";
+ return 0;
+}