xtd 0.2.0
Loading...
Searching...
No Matches
__build_type.h
Go to the documentation of this file.
1
3#pragma once
5#if !defined(__XTD_CORE_INTERNAL__)
6#error "Do not include this file: Internal use only"
7#endif
9#include "../build_type.h"
10
12#if !defined(NDEBUG) || defined(DEBUG)
13# define __build_type xtd::build_type::debug;
14#else
15# define __build_type xtd::build_type::release;
16#endif