You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
set(ZIVID_PYTHON_VERSION "UNKNOWN"CACHE STRING "Version number to be compiled into the module")
set(ZIVID_SDK_VERSION "0.0.0"CACHE STRING "Zivid SDK version to link with")
The text was updated successfully, but these errors were encountered:
In CMakeLists.txt we use
option
forZIVID_PYTHON_VERSION
andZIVID_SDK_VERSION
.option
is only meant for booleans, we should useset
instead.Suggested fix:
The text was updated successfully, but these errors were encountered: