Fix link issues

This commit is contained in:
SirLynix 2022-08-19 12:21:08 +02:00 committed by Jérôme Leclercq
parent 3a366cc1e4
commit 987c23c3ef
2 changed files with 4 additions and 4 deletions

View File

@ -17,9 +17,9 @@ namespace Nz
{ {
public: public:
#ifdef NAZARA_DEBUG #ifdef NAZARA_DEBUG
static constexpr std::string_view Filename = "PluginAssimp-d"; static constexpr inline std::string_view Filename = "PluginAssimp-d";
#else #else
static constexpr std::string_view Filename = "PluginAssimp"; static constexpr inline std::string_view Filename = "PluginAssimp";
#endif #endif
AssimpPlugin() = default; AssimpPlugin() = default;

View File

@ -17,9 +17,9 @@ namespace Nz
{ {
public: public:
#ifdef NAZARA_DEBUG #ifdef NAZARA_DEBUG
static constexpr std::string_view Filename = "PluginFFmpeg-d"; static constexpr inline std::string_view Filename = "PluginFFmpeg-d";
#else #else
static constexpr std::string_view Filename = "PluginFFmpeg"; static constexpr inline std::string_view Filename = "PluginFFmpeg";
#endif #endif
FFmpegPlugin() = default; FFmpegPlugin() = default;