aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/generator/iarew/iarew.qbs
diff options
context:
space:
mode:
authorDenis Shienkov <denis.shienkov@gmail.com>2019-07-08 14:53:32 +0300
committerDenis Shienkov <denis.shienkov@gmail.com>2019-07-11 11:41:01 +0000
commitd26435fcadb71161caa1789e5ef26ace2e035073 (patch)
treedafef50f49f9a95611b598483b9b073953af7776 /src/plugins/generator/iarew/iarew.qbs
parent808d246607b768ea4dc02e3ef0b178e058d6575c (diff)
baremetal: Long live the IAR EW project generator for AVR
Right now it is possible to generate a native projects for the IAR Embedded Workbench IDE for Microchip AVR architecture, e.g. using the following command: qbs generate -g iarew7 -d <path/to/build/directory> -f <path/to/qbs/project> profile:<your/qbs/profile> We need in a valid IAR EW QBS profile, from which the generator take a desired target architecture and other stuff. The IAR EW generator has a semi-intelligent logic, it parses a source QBS project and converts a compiler flags and other stuff to an appropriate configurations of the native IAR EW project. Currently it is supported only one 'iarew7' generator which allow to generate a projects for the IAR EW for AVR for all versions of 7 series. Tested with the IAR EW for AVR v7.20.1, using as the QBS bare-metal examples, and as other projects. Change-Id: Ic5811e579e86b868d5946637db9d8780ef47968b Reviewed-by: Ivan Komissarov <ABBAPOH@gmail.com> Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'src/plugins/generator/iarew/iarew.qbs')
-rw-r--r--src/plugins/generator/iarew/iarew.qbs18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/plugins/generator/iarew/iarew.qbs b/src/plugins/generator/iarew/iarew.qbs
index 27949ce8a..7143f5592 100644
--- a/src/plugins/generator/iarew/iarew.qbs
+++ b/src/plugins/generator/iarew/iarew.qbs
@@ -62,4 +62,22 @@ QbsPlugin {
"armlinkersettingsgroup_v8.h",
]
}
+ Group {
+ name: "IAR EW generator for AVR"
+ prefix: "archs/avr/"
+ files: [
+ "avrarchiversettingsgroup_v7.cpp",
+ "avrarchiversettingsgroup_v7.h",
+ "avrassemblersettingsgroup_v7.cpp",
+ "avrassemblersettingsgroup_v7.h",
+ "avrbuildconfigurationgroup_v7.cpp",
+ "avrbuildconfigurationgroup_v7.h",
+ "avrcompilersettingsgroup_v7.cpp",
+ "avrcompilersettingsgroup_v7.h",
+ "avrgeneralsettingsgroup_v7.cpp",
+ "avrgeneralsettingsgroup_v7.h",
+ "avrlinkersettingsgroup_v7.cpp",
+ "avrlinkersettingsgroup_v7.h",
+ ]
+ }
}