Merge pull request #9817 from kegilbert/artifact_name_export

Apply artifact_name configuration parameter to exported projects
pull/9899/head
Cruz Monrreal 2019-02-28 18:22:28 -06:00 committed by GitHub
commit 460e4e7836
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -276,6 +276,9 @@ def export_project(src_paths, export_path, target, ide, libraries_paths=None,
if linker_script is not None:
resources.linker_script = linker_script
if toolchain.config.name:
name = toolchain.config.name
files, exporter = generate_project_files(resources, export_path,
target, name, toolchain, ide,
macros=macros)