| 111 | } |
| 112 | |
| 113 | static std::vector<std::fs::path> getPluginPaths() |
| 114 | { |
| 115 | std::vector<std::fs::path> paths = getDataPaths(true); |
| 116 | |
| 117 | // Add the system plugin directory to the path if one was provided at compile |
| 118 | // time |
| 119 | #if defined(OS_LINUX) && defined(SYSTEM_PLUGINS_LOCATION) |
| 120 | paths.push_back(SYSTEM_PLUGINS_LOCATION); |
| 121 | #endif |
| 122 | |
| 123 | return paths; |
| 124 | } |
| 125 | |
| 126 | namespace impl |
| 127 | { |
no test coverage detected