mirror of
https://github.com/Expand-sys/CCash
synced 2026-03-22 20:47:10 +11:00
🐛 used CMake variables incorrectly
This commit is contained in:
parent
722f8d0f48
commit
411d1996c7
1 changed files with 2 additions and 2 deletions
|
|
@ -82,13 +82,13 @@ set(RETURN_ON_DEL_NAME_VAL "\"\"")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(DEFINED API_VERSION)
|
if(DEFINED API_VERSION)
|
||||||
set(API_VERSION_VAL API_VERSION)
|
set(API_VERSION_VAL ${API_VERSION}$)
|
||||||
else()
|
else()
|
||||||
set(API_VERSION_VAL 2)
|
set(API_VERSION_VAL 2)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(DEFINED MIN_API_SUPPORT)
|
if(DEFINED MIN_API_SUPPORT)
|
||||||
set(MIN_API_SUPPORT_VAL MIN_API_SUPPORT)
|
set(MIN_API_SUPPORT_VAL ${MIN_API_SUPPORT}$)
|
||||||
else()
|
else()
|
||||||
set(MIN_API_SUPPORT_VAL 1)
|
set(MIN_API_SUPPORT_VAL 1)
|
||||||
endif()
|
endif()
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue