From c626f8bd46ca59771a39a6288de2ebe6b08bde83 Mon Sep 17 00:00:00 2001 From: talksik Date: Tue, 3 Oct 2023 22:49:49 -0700 Subject: [PATCH] adding in headers --- CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9b0ebe5..cb3e51c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,3 +8,7 @@ set (source_dir "./src") file (GLOB source_files "${source_dir}/*.cpp") add_executable(HelloWorld ${source_files}) + +file (GLOB header_files "${source_dir}/*.h") +target_include_directories(HelloWorld PUBLIC ${source_dir}) +