diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-09-27 20:06:57 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-09-27 20:06:57 +0200 |
| commit | cfef8499db2ddb5ba6f54b83e2b68c129745e00a (patch) | |
| tree | c2cc8a4165c9799942522c84155da99553c781a8 /src/lib/cross_windows.cc | |
| parent | b5a88d757874fc7b7fecb15447c52fb40930e2ca (diff) | |
Add missing tags_path() for Windows and macOS.
Diffstat (limited to 'src/lib/cross_windows.cc')
| -rw-r--r-- | src/lib/cross_windows.cc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/lib/cross_windows.cc b/src/lib/cross_windows.cc index 498078785..cba674fef 100644 --- a/src/lib/cross_windows.cc +++ b/src/lib/cross_windows.cc @@ -207,6 +207,13 @@ xsd_path () boost::filesystem::path +tags_path () +{ + return directory_containing_executable().parent_path() / "tags"; +} + + +boost::filesystem::path openssl_path () { return directory_containing_executable() / "openssl.exe"; |
