We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 047cb63 commit a9abcf1Copy full SHA for a9abcf1
tools/test/examples/examples_lib.py
@@ -17,10 +17,12 @@
17
from tools.build_api import get_mbed_official_release
18
from tools.targets import TARGET_MAP
19
from tools.export import EXPORTERS
20
+from tools.project import EXPORTER_ALIASES
21
from tools.toolchains import TOOLCHAINS
22
23
SUPPORTED_TOOLCHAINS = list(TOOLCHAINS - set(u'uARM'))
-SUPPORTED_IDES = [exp for exp in EXPORTERS.keys() if exp != "cmsis" and exp != "zip"]
24
+SUPPORTED_IDES = [exp for exp in EXPORTERS.keys() + EXPORTER_ALIASES.keys()
25
+ if exp != "cmsis" and exp != "zip"]
26
27
28
def print_list(lst):
0 commit comments