use WLED_BUILD_VERSION for override by CI actions

avoids potential name clashes with used libraries
This commit is contained in:
Frank Möhle
2026-01-15 11:23:57 +01:00
committed by GitHub
parent 39899c1061
commit 5a8d45b6d3

View File

@@ -7,8 +7,10 @@
*/
// version code in format yymmddb (b = daily build)
#ifndef VERSION // WLEDMM allow override by nightly build script
#define VERSION 2601151
#ifndef WLED_BUILD_VERSION // WLEDMM allow override by nightly build script
#define VERSION 2601151
#else
#define VERSION WLED_BUILD_VERSION
#endif
// WLEDMM - you can check for this define in usermods, to only enabled WLEDMM specific code in the "right" fork. Its not defined in AC WLED.