FTXUI/examples/CMakeLists.txt
2019-01-03 00:35:59 +01:00

11 lines
241 B
CMake

cmake_minimum_required(VERSION 3.0)
function(example name)
add_executable(${name} ${name}.cpp)
target_link_libraries(${name} PUBLIC ftxui)
endfunction(example)
add_subdirectory(component)
add_subdirectory(dom)
example(print_key_press)