tswow/misc/client-extensions/ClientExtensions/FSRoot.cpp

11 lines
No EOL
256 B
C++

#include "FSRoot.h"
#include <filesystem>
static std::filesystem::path dirname
= std::filesystem::path(__FILE__).parent_path();
std::string relProjectPath(std::string const& pathIn)
{
return std::filesystem::relative(pathIn, dirname).string();
}