1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

Fix inconsistent use of tabs and spaces in indentation

This commit is contained in:
Mikko Mustonen
2018-09-29 15:34:09 +03:00
parent 6cbdeedf57
commit 8d31aba24e
2 changed files with 4 additions and 4 deletions

View File

@@ -58,12 +58,12 @@ if env['builtin_thekla_atlas']:
# upstream uses c++11 # upstream uses c++11
if (not env.msvc): if (not env.msvc):
env_thekla_unwrap.Append(CXXFLAGS="-std=c++11") env_thekla_unwrap.Append(CXXFLAGS="-std=c++11")
if env["platform"] == 'x11': if env["platform"] == 'x11':
# if not specifically one of the *BSD, then use LINUX as default # if not specifically one of the *BSD, then use LINUX as default
if platform.system() == "FreeBSD": if platform.system() == "FreeBSD":
env_thekla_unwrap.Append(CCFLAGS=["-DNV_OS_FREEBSD", "-DPOSH_COMPILER_GCC"]) env_thekla_unwrap.Append(CCFLAGS=["-DNV_OS_FREEBSD", "-DPOSH_COMPILER_GCC"])
elif platform.system() == "OpenBSD": elif platform.system() == "OpenBSD":
env_thekla_unwrap.Append(CCFLAGS=["-DNV_OS_OPENBSD", "-DPOSH_COMPILER_GCC"]) env_thekla_unwrap.Append(CCFLAGS=["-DNV_OS_OPENBSD", "-DPOSH_COMPILER_GCC"])
else: else:

View File

@@ -19,12 +19,12 @@ if env['builtin_xatlas']:
# upstream uses c++11 # upstream uses c++11
if (not env.msvc): if (not env.msvc):
env_xatlas_unwrap.Append(CXXFLAGS="-std=c++11") env_xatlas_unwrap.Append(CXXFLAGS="-std=c++11")
if env["platform"] == 'x11': if env["platform"] == 'x11':
# if not specifically one of the *BSD, then use LINUX as default # if not specifically one of the *BSD, then use LINUX as default
if platform.system() == "FreeBSD": if platform.system() == "FreeBSD":
env_xatlas_unwrap.Append(CCFLAGS=["-DNV_OS_FREEBSD", "-DPOSH_COMPILER_GCC"]) env_xatlas_unwrap.Append(CCFLAGS=["-DNV_OS_FREEBSD", "-DPOSH_COMPILER_GCC"])
elif platform.system() == "OpenBSD": elif platform.system() == "OpenBSD":
env_xatlas_unwrap.Append(CCFLAGS=["-DNV_OS_OPENBSD", "-DPOSH_COMPILER_GCC"]) env_xatlas_unwrap.Append(CCFLAGS=["-DNV_OS_OPENBSD", "-DPOSH_COMPILER_GCC"])
else: else: