FTXUI/examples/CMakeLists.txt

11 lines
241 B
CMake
Raw Normal View History

2019-01-03 07:35:59 +08:00
cmake_minimum_required(VERSION 3.0)
2019-01-03 05:33:59 +08:00
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)