Feature #470
cmake function to select bootloader or application with bootloader
Beginn:
17.01.2024
Abgabedatum:
% erledigt:
0%
Geschätzter Aufwand:
CS Zielversion:
Beschreibung
function(bootloader _TYPE)
if( _TYPE MATCHES "bootloader" )
message( "### ITS the bootloader! =${_TYPE}=" )
elseif( _TYPE MATCHES "application" )
message( "### ITS the application with bootloader!" )
add_definitions( -DAPP22 )
else()
message( FATAL_ERROR "### Unknown: ${_TYPE}" )
endif()
endfunction()
set ( application "xxxxxxxx" )
bootloader( application )
Dateien
Historie
Von Maximilian Seesslen vor etwa 1 Jahr aktualisiert
- Datei CMakeLists.txt CMakeLists.txt wurde hinzugefügt