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')
示例#2
0
def load_profile_win_x64_win_x64_vs2017_settings(conf):
    """
    Setup all compiler and linker settings shared over all win_x64_win_x64_v140 configurations for
    the 'profile' configuration
    """
    conf.load_win_x64_win_x64_vs2017_common_settings()

    # Load additional shared settings
    conf.load_profile_cryengine_settings()
    conf.load_profile_msvc_settings()
    conf.load_profile_windows_settings()

    conf.register_win_x64_external_ly_identity('vs2017', 'Release')
    conf.register_win_x64_external_ly_metrics('vs2017', 'Release')