From bcd9fe91c32e27c8b9e3b86bc9bd58996c9d43bc Mon Sep 17 00:00:00 2001 From: my name Date: Fri, 31 Jul 2026 11:49:08 +0200 Subject: [PATCH] now searches src too --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 3f10acf..628c0c6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.24) project(cppout) -file(GLOB SOURCE_FILES "*.cpp") +file(GLOB SOURCE_FILES "*/*.cpp") find_package(Curses REQUIRED) include_directories(${CURSES_INCLUDE_DIR})