blob: 3eb2fd6e2c96e1f19e09a33004bb0b86dc086c23 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
// Copyright (c) 2020 Egor Tensin <Egor.Tensin@gmail.com>
// This file is part of the "PDB repository" project.
// For details, see https://github.com/egor-tensin/pdb-repo.
// Distributed under the MIT License.
#pragma once
#include <boost/filesystem.hpp>
#include <boost/nowide/filesystem.hpp>
#include <boost/test/unit_test.hpp>
using path = boost::filesystem::path;
class FixFilesystem {
public:
FixFilesystem() { boost::nowide::nowide_filesystem(); }
};
class Paths {
public:
typedef boost::filesystem::path path;
static Paths& get() {
static FixFilesystem fix_filesystem;
static Paths instance;
return instance;
}
Paths() : exe_path{get_executable_path()}, exe_dir{exe_path.parent_path()} {}
const path exe_path;
const path exe_dir;
private:
static path get_executable_path() {
const auto argv0 = boost::unit_test::framework::master_test_suite().argv[0];
return boost::filesystem::system_complete(argv0);
}
Paths(const Paths&) = delete;
Paths& operator=(const Paths&) = delete;
};
|