Skip to content

Commit 4f36be0

Browse files
committed
CMake: fix header files include GLOB
Should change this to a static list of headers in future
1 parent 56bab59 commit 4f36be0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ set(DENGR_CLI_SOURCE "main.cpp")
9292
# C++ source files for unit tests
9393
file(GLOB TEST_SOURCES "tests/*.cpp")
9494
# Header files
95-
set(DENGR_HEADERS "dengr/*.hpp")
95+
file(GLOB DENGR_HEADERS "dengr/*.hpp")
9696

9797
# if project is a library
9898
add_library(dengr ${DENGR_SOURCES})

0 commit comments

Comments
 (0)