anthem/app/CMakeLists.txt

14 lines
276 B
CMake
Raw Normal View History

2016-11-21 17:51:14 +01:00
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)