aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/generator/iarew/iarewversioninfo.cpp
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/iarewversioninfo.cpp
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/iarewversioninfo.cpp')
-rw-r--r--src/plugins/generator/iarew/iarewversioninfo.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/generator/iarew/iarewversioninfo.cpp b/src/plugins/generator/iarew/iarewversioninfo.cpp
index 522a86213..734aa1452 100644
--- a/src/plugins/generator/iarew/iarewversioninfo.cpp
+++ b/src/plugins/generator/iarew/iarewversioninfo.cpp
@@ -56,6 +56,7 @@ std::set<IarewVersionInfo> IarewVersionInfo::knownVersions()
{
static const std::set<IarewVersionInfo> known = {
{Version(8), {IarewUtils::Architecture::ArmArchitecture}},
+ {Version(7), {IarewUtils::Architecture::AvrArchitecture}},
};
return known;
}