def load_debug_win_x64_win_x64_vs2010_settings(conf): """ Setup all compiler and linker settings shared over all win_x64_win_x64_vs2010 configurations for the 'debug' configuration """ conf.load_win_x64_win_x64_vs2010_common_settings() # Load additional shared settings conf.load_debug_cryengine_settings() conf.load_debug_msvc_settings() conf.load_debug_windows_settings()
def load_debug_win_x64_durango_settings(conf): """ Setup all compiler and linker settings shared over all win_x64_durango configurations for the 'debug' configuration """ v = conf.env conf.load_win_x64_durango_common_settings() # Load addional shared settings conf.load_debug_cryengine_settings() conf.load_debug_msvc_settings() conf.load_debug_durango_settings()
def load_debug_win_x64_win_x64_vs2015_settings(conf): """ Setup all compiler and linker settings shared over all win_x64_win_x64_v140 configurations for the 'debug' configuration """ conf.load_debug_msvc_settings() conf.load_debug_windows_settings() conf.load_win_x64_win_x64_vs2015_common_settings() # Load additional shared settings conf.load_debug_cryengine_settings() conf.register_win_x64_external_ly_identity('vs2015', 'Debug') conf.register_win_x64_external_ly_metrics('vs2015', 'Debug')
def load_debug_win_x64_win_x86_settings(conf): """ Setup all compiler and linker settings shared over all win_x64_win_x86 configurations for the 'debug' configuration """ v = conf.env conf.load_win_x64_win_x86_common_settings() # Load addional shared settings conf.load_debug_cryengine_settings() conf.load_debug_msvc_settings() conf.load_debug_windows_settings() # Link againt GPA lib for profiling v['INCLUDES'] += [ conf.CreateRootRelativePath('Code/SDKs/GPA/include') ]
def load_debug_win_x64_win_x86_settings(conf): """ Setup all compiler and linker settings shared over all win_x64_win_x86 configurations for the 'debug' configuration """ v = conf.env conf.load_win_x64_win_x86_common_settings() # Load addional shared settings conf.load_debug_cryengine_settings() conf.load_debug_msvc_settings() conf.load_debug_windows_settings() # Link againt GPA lib for profiling v['INCLUDES'] += [conf.CreateRootRelativePath('Code/SDKs/GPA/include')]