From 873e9527800e8d1a9a96a20056752bf207619a93 Mon Sep 17 00:00:00 2001 From: Benjo Date: Mon, 17 Jan 2022 19:55:58 +0100 Subject: [PATCH] removed header files from add_executable --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4423796..495c077 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,7 +8,7 @@ if (WIN32) set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}) endif() -file(GLOB_RECURSE SRC_FILES src/**.cpp src/**.h) +file(GLOB_RECURSE SRC_FILES src/**.cpp) add_executable(AdventOfCode2022 ${SRC_FILES}) include(FetchContent)