From 166658fc3598bcf9e05f1610077d1e9d19289550 Mon Sep 17 00:00:00 2001 From: henrykorir Date: Wed, 19 Jun 2024 22:40:38 +0300 Subject: [PATCH] List contents of the directory of binary --- CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index e08b407..dfe83bf 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -53,3 +53,7 @@ file(GLOB CURRENT_DIR_CONTENTS build) foreach(FILE ${CURRENT_DIR_CONTENTS}) message("File found: ${FILE}") endforeach() + +foreach(FILE ${PROJECT_BINARY_DIR}) + message("File found: ${FILE}") +endforeach()