Welcome to mirror list, hosted at ThFree Co, Russian Federation.

FreestyleConfig.h « system « intern « freestyle « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4f01c4b3f0bca6156133756deaf838c2c016aee7 (plain)
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
/* SPDX-License-Identifier: GPL-2.0-or-later */

#pragma once

/** \file
 * \ingroup freestyle
 * \brief Configuration definitions
 */

#include <string>

using namespace std;

namespace Freestyle {

namespace Config {

// Directory separators
// TODO: Use Blender's stuff for such things!
#ifdef WIN32
static const string DIR_SEP("\\");
static const string PATH_SEP(";");
#else
static const string DIR_SEP("/");
static const string PATH_SEP(":");
#endif  // WIN32

}  // end of namespace Config

} /* namespace Freestyle */