aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/cmake/examples/boost/foo.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cmake/examples/boost/foo.cpp')
-rw-r--r--cmake/examples/boost/foo.cpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/cmake/examples/boost/foo.cpp b/cmake/examples/boost/foo.cpp
deleted file mode 100644
index 3bd0326..0000000
--- a/cmake/examples/boost/foo.cpp
+++ /dev/null
@@ -1,11 +0,0 @@
-#include <boost/filesystem.hpp>
-
-#include <iostream>
-
-int main(int argc, char* argv[]) {
- std::cout << "Hello from "
- << boost::filesystem::absolute(boost::filesystem::path{argv[0]})
- .string()
- << "!\n";
- return 0;
-}