CMakeLists.txt: uses regex to remove potential rcX in LIBFTDI_VERSION_MINOR

This commit is contained in:
Gwenhael Goavec-Merou 2026-05-06 18:12:24 +02:00
parent 676f59416a
commit ed6025645f
1 changed files with 1 additions and 0 deletions

View File

@ -200,6 +200,7 @@ if (USE_PKGCONFIG)
string(REPLACE "." ";" VERSION_LIST ${LIBFTDI_VERSION})
list(GET VERSION_LIST 0 LIBFTDI_VERSION_MAJOR)
list(GET VERSION_LIST 1 LIBFTDI_VERSION_MINOR)
string(REGEX REPLACE "[^0-9].*" "" LIBFTDI_VERSION_MINOR "${LIBFTDI_VERSION_MINOR}")
endif()
else()
set(LIBFTDI_LIBRARY_DIRS "")