Пример #1
0
def load_release_win_x64_android_arm_gcc_settings(conf):
    """Setup all compiler and linker settings shared over all win_x64_arm_linux_androideabi_4_8 configurations for
	the 'release' configuration
	"""
    v = conf.env
    conf.load_win_x64_android_arm_gcc_common_settings()

    # Load addional shared settings
    conf.load_release_cryengine_settings()
    conf.load_release_gcc_settings()
def load_release_win_x64_android_arm_gcc_settings(conf):
	"""
	Setup all compiler and linker settings shared over all win_x64_arm_linux_androideabi_4_8 configurations for
	the 'release' configuration
	"""
	v = conf.env
	conf.load_win_x64_android_arm_gcc_common_settings()
	
	# Load addional shared settings
	conf.load_release_cryengine_settings()
	conf.load_release_gcc_settings()
def load_release_linux_x64_linux_x64_gcc_settings(conf):
    """
	Setup all compiler and linker settings shared over all linux_x64_linux_x64_gcc configurations for
	the 'release' configuration
	"""
    v = conf.env
    conf.load_linux_x64_linux_x64_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_x64_settings()
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()
	
Пример #5
0
def load_release_win_x64_android_armv7_gcc_settings(conf):
    """
    Setup all compiler and linker settings shared over all win_x64_android_armv7_gcc configurations for
    the 'release' configuration
    """

    # load this first because it finds the compiler
    conf.load_win_x64_android_armv7_gcc_common_settings()

    # load platform agnostic common settings
    conf.load_release_cryengine_settings()

    # load the common android and architecture settings before the toolchain specific settings
    # because ANDROID_ARCH needs to be set for the android_<toolchain> settings to init correctly
    conf.load_release_android_settings()
    conf.load_release_android_armv7_settings()

    conf.load_release_gcc_settings()
    conf.load_release_android_gcc_settings()