Esempio n. 1
0
def load_release_linux_x64_linux_x86_clang_settings(conf):
    """
	Setup all compiler and linker settings shared over all linux_x64_linux_x86_clang configurations for
	the 'release' configuration
	"""
    v = conf.env
    conf.load_linux_x64_linux_x86_clang_common_settings()

    # Load addional shared settings
    conf.load_release_cryengine_settings()
    conf.load_release_clang_settings()
    conf.load_release_linux_settings()
    conf.load_release_linux_x86_settings()
def load_performance_linux_x64_linux_x86_clang_settings(conf):
	"""
	Setup all compiler and linker settings shared over all linux_x64_linux_x86_clang configurations for
	the 'performance' configuration
	"""
	v = conf.env
	conf.load_linux_x64_linux_x86_clang_common_settings()
	
	# Load addional shared settings
	conf.load_performance_cryengine_settings()
	conf.load_performance_clang_settings()
	conf.load_performance_linux_settings()
	conf.load_performance_linux_x86_settings()