Initial commit.

This commit is contained in:
2016-11-21 17:51:14 +01:00
commit 3100f4a733
14 changed files with 262 additions and 0 deletions

13
app/CMakeLists.txt Normal file
View File

@@ -0,0 +1,13 @@
set(target anthem-app)
file(GLOB core_sources "*.cpp")
file(GLOB core_headers "*.h")
set(sources
${core_sources}
${core_headers}
)
add_executable(${target} ${sources})
target_link_libraries(${target} anthem)
set_target_properties(${target} PROPERTIES OUTPUT_NAME anthem)