Changes between Version 1 and Version 2 of Ticket #170, comment 1
- Timestamp:
- 2023-01-17 15:57:39 (23 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #170, comment 1
v1 v2 8 8 #define COBIA_VERSION_REVISION 11 9 9 }}} 10 11 Then a PMC that need at least COBIA 1.3 could check proper SDK installation by e.g. 12 13 14 {{{ 15 static_assert(COBIA_VERSION_MAJOR>=1,"please install a newer COBIA SDK") 16 static_assert(COBIA_VERSION_MINOR>=2,"please install a newer COBIA SDK") 17 18 }}} 19 20 21 22 23 24 25 26