Added missing subdirectory to CMake configuration.

This commit is contained in:
Patrick Lühne 2017-03-29 21:32:33 +02:00
parent 0e5ee59ea7
commit dc0f700c46
Signed by: patrick
GPG Key ID: 05F3611E97A70ABF

View File

@ -3,6 +3,9 @@ set(target anthem)
file(GLOB core_sources "anthem/*.cpp") file(GLOB core_sources "anthem/*.cpp")
file(GLOB core_headers "../include/anthem/*.h") 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_sources "anthem/output/*.cpp")
file(GLOB output_headers "../include/anthem/output/*.h") file(GLOB output_headers "../include/anthem/output/*.h")
@ -10,6 +13,9 @@ set(sources
${core_sources} ${core_sources}
${core_headers} ${core_headers}
${input_sources}
${input_headers}
${output_sources} ${output_sources}
${output_headers} ${output_headers}
) )