Patrick Kelley 8fd444092b initial
2025-05-07 15:35:15 -04:00

28 lines
370 B
Markdown

PathFind
===========
A C++ library for finding the path to the current executable on Windows,
Apple/OSX, and Linux. Licensed under LGPL-V3.
Build and install instructions:
```
cd build
cmake ..
make
make install
```
Example usage:
```
#include <iostream>
#include <pathfind.hpp>
int main()
{
std::cout << PathFind::FindExecutable() << std::endl;
return 0;
}
```