lm4f: Created a meson build system for the Tiva-C series support

This commit is contained in:
dragonmux
2023-11-29 06:35:48 +00:00
committed by Piotr Esden-Tempski
parent c2ecd4545a
commit 7c47fa8fd0
5 changed files with 130 additions and 1 deletions

View File

@@ -36,10 +36,11 @@ target_paths = {
'stm32f3': 'stm32/f3',
'stm32f4': 'stm32/f4',
'stm32f7': 'stm32/f7',
'lm4f': 'lm3s',
}
if target_platform != 'all'
target_path = target_paths[target_platform]
target_path = target_paths.get(target_platform, target_platform)
subdir(f'libopencm3/@target_path@')
else
foreach target_name, target_path : target_paths