Cpp-Processing
executable-utils.h
1 #include <filesystem>
2 
3 #ifdef __linux__
4  #include <limits.h>
5  #include <unistd.h>
6  #include <string>
7 
8  namespace celantur {
10  std::filesystem::path get_executable_path();
12  }
13 #endif
14 
15 namespace celantur {
17  std::filesystem::path get_executable_dir();
19 }
Definition: CelanturDetection.h:6