Projekt

Allgemein

Profil

Feature #470

cmake function to select bootloader or application with bootloader

Von Maximilian Seesslen vor etwa 1 Jahr hinzugefügt. Vor 16 Tagen aktualisiert.

Status:
Erledigt
Priorität:
Normal
Zugewiesen an:
Zielversion:
-
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

CMakeLists.txt (763 Bytes) CMakeLists.txt Maximilian Seesslen, 17.01.2024 14:01

Historie

#1

Von Maximilian Seesslen vor etwa 1 Jahr aktualisiert

#2

Von Maximilian Seesslen vor 16 Tagen aktualisiert

  • Status wurde von Neu zu Erledigt geändert

Auch abrufbar als: Atom PDF