blob: f149972f30f9db78caa0d050572b5f75d607bfb1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// -*- c++ -*-
// Distributed under the BSD 2-Clause License.
// See accompanying file LICENSE for details.
#pragma once
#include <string>
#include <filesystem>
namespace paths
{
extern std::string argv_0;
extern std::filesystem::path top_srcdir;
extern std::filesystem::path top_builddir;
extern std::filesystem::path testdir;
}
|