mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2024-11-23 03:10:01 +08:00
20 lines
369 B
CMake
20 lines
369 B
CMake
function(example name)
|
|
add_executable(${name} ${name}.cpp)
|
|
target_link_libraries(${name} PUBLIC dom)
|
|
endfunction(example)
|
|
|
|
example(blink)
|
|
example(bold)
|
|
example(color)
|
|
example(dbox)
|
|
example(dim)
|
|
example(frame)
|
|
example(gauge)
|
|
example(inverted)
|
|
example(package_manager)
|
|
example(separator)
|
|
example(spinner)
|
|
example(style_gallery)
|
|
example(underlined)
|
|
example(vbox_hbox)
|