def load_release_win_x64_win_x86_settings(conf):
    """
	Setup all compiler and linker settings shared over all win_x64_win_x86 configurations for
	the 'release' configuration
	"""
    v = conf.env
    conf.load_win_x64_win_x86_common_settings()

    # Load addional shared settings
    conf.load_release_cryengine_settings()
    conf.load_release_msvc_settings()
    conf.load_release_windows_settings()
def load_release_win_x64_win_x86_settings(conf):
	"""
	Setup all compiler and linker settings shared over all win_x64_win_x86 configurations for
	the 'release' configuration
	"""
	v = conf.env
	conf.load_win_x64_win_x86_common_settings()
	
	# Load addional shared settings
	conf.load_release_cryengine_settings()
	conf.load_release_msvc_settings()
	conf.load_release_windows_settings()
def load_performance_win_x64_win_x86_settings(conf):
	"""
	Setup all compiler and linker settings shared over all win_x64_win_x86 configurations for
	the 'performance' configuration
	"""
	v = conf.env
	conf.load_win_x64_win_x86_common_settings()
	
	# Load addional shared settings
	conf.load_performance_cryengine_settings()
	conf.load_performance_msvc_settings()
	conf.load_performance_windows_settings()
	
	# Link againt GPA lib for profiling
	v['INCLUDES'] += [ conf.CreateRootRelativePath('Code/SDKs/GPA/include') ]
def load_performance_win_x64_win_x86_settings(conf):
    """
	Setup all compiler and linker settings shared over all win_x64_win_x86 configurations for
	the 'performance' configuration
	"""
    v = conf.env
    conf.load_win_x64_win_x86_common_settings()

    # Load addional shared settings
    conf.load_performance_cryengine_settings()
    conf.load_performance_msvc_settings()
    conf.load_performance_windows_settings()

    # Link againt GPA lib for profiling
    v['INCLUDES'] += [conf.CreateRootRelativePath('Code/SDKs/GPA/include')]