aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabriele Bozzola <sbozzolator@gmail.com>2022-11-18 06:54:52 -0700
committerGitHub <noreply@github.com>2022-11-18 06:54:52 -0700
commitf14d113ee4618f052879509ec378feb9766b871b (patch)
tree535ce8ff4e7dabed391e2615c2c13819712591e3
parentfd2a0255b1d8c0f112b3e2a5e01ff2e510d05def (diff)
Fix #643
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 24c09ec..db61c5e 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -49,7 +49,7 @@ if (USE_SYSTEM_LIBVTERM)
endif()
execute_process(COMMAND grep -c "sb_clear" "${LIBVTERM_INCLUDE_DIR}/vterm.h" OUTPUT_VARIABLE VTermSBClearExists)
if (${VTermSBClearExists} EQUAL "0")
- add_definitions(-VTermSBClearNotExists)
+ add_definitions(-DVTermSBClearNotExists)
endif()
else()
message(STATUS "System libvterm not found: libvterm will be downloaded and compiled as part of the build process")