Skip to content

Commit 22a53a4

Browse files
update examples and put all the system & logger stuff in nabla headers
1 parent 163d693 commit 22a53a4

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

include/nbl/system/declarations.h

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
// Copyright (C) 2018-2020 - DevSH Graphics Programming Sp. z O.O.
22
// This file is part of the "Nabla Engine".
33
// For conditions of distribution and use, see copyright notice in nabla.h
4-
54
#ifndef __NBL_SYSTEM_DECLARATIONS_H_INCLUDED__
65
#define __NBL_SYSTEM_DECLARATIONS_H_INCLUDED__
76

@@ -23,9 +22,13 @@
2322

2423
//whole system
2524
#if defined(_NBL_PLATFORM_WINDOWS_)
25+
# include "nbl/system/CColoredStdoutLoggerWin32.h"
2626
# include "nbl/system/CSystemWin32.h"
2727
#elif defined(_NBL_PLATFORM_LINUX_)
28+
# include "nbl/system/CColoredStdoutLoggerANSI.h"
2829
# include "nbl/system/CSystemLinux.h"
30+
#else
31+
#error "Unsupported Platform"
2932
#endif // TODO more platforms (android)
3033

3134
#endif

0 commit comments

Comments
 (0)