/pathfind

C++ library for finding the path of the current executable.

Primary LanguageC++GNU Lesser General Public License v3.0LGPL-3.0

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;
}