cmake : use set() for LLAMA_WIN_VER (#5298)
option() is specifically for booleans. Fixes #5158
This commit is contained in:
parent
3c0d25c475
commit
277fad30c6
1 changed files with 1 additions and 1 deletions
|
@ -79,7 +79,7 @@ if (NOT MSVC)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if (WIN32)
|
if (WIN32)
|
||||||
option(LLAMA_WIN_VER "llama: Windows Version" 0x602)
|
set(LLAMA_WIN_VER "0x602" CACHE STRING "llama: Windows Version")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
# 3rd party libs
|
# 3rd party libs
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue