native Lua  0.5.0-devel
Lua on the platform you use with the compiler you choose
_native_lua_config.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: MIT */
2 
13 #ifndef NATIVE_LUA_CONFIG_H_
14 #define NATIVE_LUA_CONFIG_H_
15 
16 #include "waf_build_config.h"
17 
18 #define NATIVE_LUA_MSG " [" NATIVE_LUA_PRE_MSG " (" NATIVE_LUA_VERSION"), " NATIVE_LUA_REPO"]"
19 
20 #if defined(_MSC_VER) && defined(_MSC_FULL_VER)
21 #pragma warning(disable: 4242 4820 4668 4710 4711 5045)
22 /* Disable C5045 (see https://docs.microsoft.com/de-de/cpp/error-messages/compiler-warnings/c5045) */
23 /* we are compiling with /Qspectre */
24 #endif
25 
26 #endif /* NATIVE_LUA_CONFIG_H_ */