From cc56a7fd698f6ea91fefad3ba9126f1c8a99c3c0 Mon Sep 17 00:00:00 2001 From: Reimu NotMoe <34613827+ReimuNotMoe@users.noreply.github.com> Date: Sun, 20 Aug 2023 20:57:58 +0800 Subject: [PATCH] fix minor typo in CMakeLists.txt --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index bdfee7f1..3f32c111 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,7 +31,7 @@ if(NOT CMAKE_BUILD_TYPE) set(CMAKE_BUILD_TYPE Debug) endif() -option(USE_LIBCPP "Use libc++ by adding -stdlib=libc++ flag if availbale." ON) +option(USE_LIBCPP "Use libc++ by adding -stdlib=libc++ flag if available." ON) option(USE_ASAN "Use address sanitizer by adding -fsanitize=address -fno-omit-frame-pointer flags" OFF) option(USE_UBSAN "Use address sanitizer by adding -fsanitize=undefined -fno-sanitize-recover=all -fno-omit-frame-pointer flags" OFF) option(BUILD_UVW_LIBS "Prepare targets for static library rather than for a header-only library." OFF)