FTXUI/examples/dom/CMakeLists.txt

19 lines
352 B
CMake
Raw Normal View History

function(example name)
add_executable(${name} ${name}.cpp)
target_link_libraries(${name} PUBLIC dom)
endfunction(example)
2019-01-06 08:28:14 +08:00
example(blink)
example(bold)
2019-01-03 07:35:59 +08:00
example(color)
example(dbox)
2019-01-06 08:28:14 +08:00
example(dim)
2019-01-03 05:33:59 +08:00
example(frame)
2019-01-03 07:35:59 +08:00
example(gauge)
2019-01-06 08:28:14 +08:00
example(inverted)
example(package_manager)
2019-01-03 05:33:59 +08:00
example(separator)
2019-01-06 08:28:14 +08:00
example(underlined)
example(style_gallery)
2019-01-03 05:33:59 +08:00
example(vbox_hbox)