From cb8ebdeb44dff7c4471a5ad50807e8203ac59b46 Mon Sep 17 00:00:00 2001 From: ArthurSonzogni Date: Fri, 11 Apr 2025 02:03:18 +0200 Subject: [PATCH] fix workflows 3 --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c9a9edc6..00d27368 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.28) +cmake_minimum_required(VERSION 3.12) project(ftxui LANGUAGES CXX @@ -184,6 +184,6 @@ add_subdirectory(examples) # You can generate ./examples_modules/ by running # ./tools/generate_examples_modules.sh -if(EXISTS "examples_modules") +if(EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/examples_modules/CMakeLists.txt") add_subdirectory(examples_modules) endif()