Sha256: 2f8f74e5f8f86f401756ffee1a8191b04aa8b732da8dc074d7270ee9adefff2b
Contents?: true
Size: 962 Bytes
Versions: 3
Compression:
Stored size: 962 Bytes
Contents
require 'constants' require 'file_path_utils' desc "Build release target." task RELEASE_SYM => [:directories] do header = "Release build '#{File.basename(PROJECT_RELEASE_BUILD_TARGET)}'" @ceedling[:streaminator].stdout_puts("\n\n#{header}\n#{'-' * header.length}") core_objects = [] extra_objects = @ceedling[:file_path_utils].form_release_build_c_objects_filelist( COLLECTION_RELEASE_ARTIFACT_EXTRA_LINK_OBJECTS ) @ceedling[:project_config_manager].process_release_config_change core_objects.concat( @ceedling[:release_invoker].setup_and_invoke_c_objects( COLLECTION_ALL_SOURCE ) ) # if assembler use isn't enabled, COLLECTION_ALL_ASSEMBLY is empty array & nothing happens core_objects.concat( @ceedling[:release_invoker].setup_and_invoke_asm_objects( COLLECTION_ALL_ASSEMBLY ) ) file( PROJECT_RELEASE_BUILD_TARGET => (core_objects + extra_objects) ) Rake::Task[PROJECT_RELEASE_BUILD_TARGET].invoke end
Version data entries
3 entries across 3 versions & 1 rubygems