Files
test2/source/blender/freestyle/intern/system/FreestyleConfig.h
2023-06-14 12:20:06 +10:00

34 lines
587 B
C++

/* SPDX-FileCopyrightText: 2023 Blender Foundation
*
* 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 */