19 lines
469 B
CMake
19 lines
469 B
CMake
cmake_minimum_required (VERSION 2.8)
|
|
project (endemm)
|
|
|
|
find_library(FMT_LIB fmt)
|
|
|
|
add_subdirectory(Containers)
|
|
add_subdirectory(Codecs)
|
|
add_subdirectory(Core)
|
|
add_subdirectory(DataConverters)
|
|
|
|
add_executable (endemm
|
|
$<TARGET_OBJECTS:Codecs>
|
|
$<TARGET_OBJECTS:Containers>
|
|
$<TARGET_OBJECTS:Core>
|
|
$<TARGET_OBJECTS:DataConverters>
|
|
endemm.cpp
|
|
)
|
|
target_link_libraries(endemm fmt)
|