From 411d1996c71ef2c6f873e3b5fd867428c9202c48 Mon Sep 17 00:00:00 2001 From: EntireTwix Date: Sun, 18 Dec 2022 19:09:55 -0800 Subject: [PATCH] :bug: used CMake variables incorrectly --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6f0aac1..21e2fee 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -82,13 +82,13 @@ set(RETURN_ON_DEL_NAME_VAL "\"\"") endif() if(DEFINED API_VERSION) -set(API_VERSION_VAL API_VERSION) +set(API_VERSION_VAL ${API_VERSION}$) else() set(API_VERSION_VAL 2) endif() if(DEFINED MIN_API_SUPPORT) -set(MIN_API_SUPPORT_VAL MIN_API_SUPPORT) +set(MIN_API_SUPPORT_VAL ${MIN_API_SUPPORT}$) else() set(MIN_API_SUPPORT_VAL 1) endif()