Example #1
0
def load_debug_linux_x64_linux_x86_gcc_settings(conf):
    """
	Setup all compiler and linker settings shared over all linux_x64_linux_x86_gcc configurations for
	the 'debug' configuration
	"""
    v = conf.env
    conf.load_linux_x64_linux_x86_gcc_common_settings()
def load_debug_linux_x64_linux_x86_gcc_settings(conf):
	"""
	Setup all compiler and linker settings shared over all linux_x64_linux_x86_gcc configurations for
	the 'debug' configuration
	"""
	v = conf.env
	conf.load_linux_x64_linux_x86_gcc_common_settings()
Example #3
0
def load_release_linux_x64_linux_x86_gcc_settings(conf):
    """
	Setup all compiler and linker settings shared over all linux_x64_linux_x86_gcc configurations for
	the 'release' configuration
	"""
    v = conf.env
    conf.load_linux_x64_linux_x86_gcc_common_settings()

    # Load addional shared settings
    conf.load_release_cryengine_settings()
    conf.load_release_gcc_settings()
    conf.load_release_linux_settings()
    conf.load_release_linux_x86_settings()
def load_performance_linux_x64_linux_x86_gcc_settings(conf):
	"""
	Setup all compiler and linker settings shared over all linux_x64_linux_x86_gcc configurations for
	the 'performance' configuration
	"""
	v = conf.env
	conf.load_linux_x64_linux_x86_gcc_common_settings()
	
	# Load addional shared settings
	conf.load_performance_cryengine_settings()
	conf.load_performance_gcc_settings()
	conf.load_performance_linux_settings()
	conf.load_performance_linux_x86_settings()