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
No known key found for this signature in database
GPG Key ID: 05F3611E97A70ABF
1 changed files with 6 additions and 0 deletions

View File

@ -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}
)