diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index de78875..e54626e 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -3,6 +3,9 @@ set(target anthem) file(GLOB core_sources "anthem/*.cpp") file(GLOB core_headers "../include/anthem/*.h") +file(GLOB input_sources "anthem/input/*.cpp") +file(GLOB input_headers "../include/anthem/input/*.h") + file(GLOB output_sources "anthem/output/*.cpp") file(GLOB output_headers "../include/anthem/output/*.h") @@ -10,6 +13,9 @@ set(sources ${core_sources} ${core_headers} + ${input_sources} + ${input_headers} + ${output_sources} ${output_headers} )