CMakeLists.txt: uses regex to remove potential rcX in LIBFTDI_VERSION_MINOR
This commit is contained in:
parent
676f59416a
commit
ed6025645f
|
|
@ -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 "")
|
||||
|
|
|
|||
Loading…
Reference in New Issue