Changes between Version 1 and Version 2 of Ticket #170, comment 1


Ignore:
Timestamp:
2023-01-17 15:57:39 (16 months ago)
Author:
jasper
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #170, comment 1

    v1 v2  
    88#define COBIA_VERSION_REVISION 11 
    99}}} 
     10 
     11Then a PMC that need at least COBIA 1.3 could check proper SDK installation by e.g. 
     12 
     13 
     14{{{ 
     15static_assert(COBIA_VERSION_MAJOR>=1,"please install a newer COBIA SDK") 
     16static_assert(COBIA_VERSION_MINOR>=2,"please install a newer COBIA SDK") 
     17 
     18}}} 
     19 
     20 
     21 
     22 
     23 
     24 
     25 
     26