Fix for LLAMA_WIN_VER default value, fixes #5158
Updated CMakeLists.txt to set `LLAMA_WIN_VER` with `set()` instead of `option()` (which is specifically for booleans).
This commit is contained in:
parent
3c0d25c475
commit
ed6b91d57c
1 changed files with 1 additions and 1 deletions
|
@ -79,7 +79,7 @@ if (NOT MSVC)
|
|||
endif()
|
||||
|
||||
if (WIN32)
|
||||
option(LLAMA_WIN_VER "llama: Windows Version" 0x602)
|
||||
set(LLAMA_WIN_VER "0x602" CACHE STRING "llama: Windows Version")
|
||||
endif()
|
||||
|
||||
# 3rd party libs
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue