aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/cmake/examples/boost/foo.cpp
blob: 258115b7d15d3f963dc2dd9d6937261d6e7a2b24 (plain) (blame)
1
2
3
4
5
6
7
8
#include <boost/filesystem.hpp>

#include <iostream>

int main() {
    std::cout << boost::filesystem::path{argv0}.absolute().string(); << "\n";
    return 0;
}