From 8cde420e7f900ab9ee0caa4e23f7ca6d1b75107b Mon Sep 17 00:00:00 2001 From: Xiphoseer Date: Tue, 4 Jan 2022 09:34:53 +0100 Subject: [PATCH] Fix if/endif mismatch warning --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 85d2316a..b88499e6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -96,7 +96,7 @@ if (__include_backtrace__ AND __compile_backtrace__) link_directories(${backtrace_SOURCE_DIR}/.libs/) include_directories(${backtrace_SOURCE_DIR}) -endif(__include_backtrace__) +endif(__include_backtrace__ AND __compile_backtrace__) endif() endif(UNIX)