Skip to content

Commit fe3ff68

Browse files
committed
fix syntax errors
1 parent 5a580b8 commit fe3ff68

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

external/sources/luabind-0.7.1/meson.build

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ elif cxx.get_argument_syntax() == 'msvc'
2020
cpp_options = ['cpp_std=vc++20']
2121
endif
2222

23-
if !get_option(debug) or get_option('debug_type') == release
24-
lubaind_args += ['-DLUABIND_NO_ERROR_CHECKING=1']
23+
if (not get_option('debug')) or get_option('debug_type') == 'release'
24+
luabind_args += ['-DLUABIND_NO_ERROR_CHECKING=1']
2525
endif
2626

2727
luabind = static_library('luabind071', luabind_src, dependencies: luabind_dependencies, include_directories:luabind_include, cpp_args:cpp_args+ luabind_args, override_options: ['warning_level=0']+ cpp_options)

0 commit comments

Comments
 (0)