def load_profile_linux_x64_linux_x64_settings(conf):
    """
    Setup all compiler and linker settings shared over all linux_x64_linux_x64 configurations for
    the 'profile' configuration
    """
    conf.load_linux_x64_linux_x64_common_settings()
    
    # Load additional shared settings
    conf.load_profile_cryengine_settings()
    conf.load_profile_clang_settings()
    conf.load_profile_linux_settings()
    conf.load_profile_linux_x64_settings()
def load_profile_linux_x64_linux_x64_clang_settings(conf):
    """
	Setup all compiler and linker settings shared over all linux_x64_linux_x64_clang configurations for
	the 'profile' configuration
	"""
    v = conf.env
    conf.load_linux_x64_linux_x64_clang_common_settings()

    # Load addional shared settings
    conf.load_profile_cryengine_settings()
    conf.load_profile_clang_settings()
    conf.load_profile_linux_settings()
    conf.load_profile_linux_x64_settings()
Esempio n. 3
0
def load_profile_linux_x64_linux_x86_gcc_settings(conf):
    """
	Setup all compiler and linker settings shared over all linux_x64_linux_x86_gcc configurations for
	the 'profile' configuration
	"""
    v = conf.env
    conf.load_linux_x64_linux_x86_gcc_common_settings()

    # Load addional shared settings
    conf.load_profile_cryengine_settings()
    conf.load_profile_gcc_settings()
    conf.load_profile_linux_settings()
    conf.load_profile_linux_x86_settings()