mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2024-11-23 19:20:50 +08:00
ef0de8d873
[nxxm](https://nxxm.github.io)
7 lines
158 B
CMake
7 lines
158 B
CMake
function(example name)
|
|
add_executable(${name} ${name}.cpp)
|
|
target_link_libraries(${name} PUBLIC component)
|
|
endfunction(example)
|
|
|
|
example(print_key_press)
|