mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2024-11-26 20:47:05 +08:00
13 lines
246 B
CMake
13 lines
246 B
CMake
find_package(ftxui)
|
|
function(example name)
|
|
add_executable(${name} ${name}.cpp)
|
|
target_link_libraries(${name} PUBLIC component)
|
|
endfunction(example)
|
|
|
|
example(input)
|
|
example(menu)
|
|
example(menu2)
|
|
example(menu_style)
|
|
example(toggle)
|
|
example(tab)
|