Merge pull request #260 from aqnuep/basis_convention

Make Basis look column-major while retaining a row-major representation
This commit is contained in:
Bastiaan Olij
2019-04-10 21:57:03 +10:00
committed by GitHub
7 changed files with 616 additions and 466 deletions

View File

@@ -147,7 +147,7 @@ elif env['platform'] == 'windows':
# MSVC
env.Append(LINKFLAGS=['/WX'])
if env['target'] == 'debug':
env.Append(CCFLAGS=['/EHsc', '/D_DEBUG', '/MDd'])
env.Append(CCFLAGS=['/Z7', '/Od', '/EHsc', '/D_DEBUG', '/MDd'])
elif env['target'] == 'release':
env.Append(CCFLAGS=['/O2', '/EHsc', '/DNDEBUG', '/MD'])