FTXUI/examples/util/CMakeLists.txt
2020-03-22 21:33:41 +01:00

8 lines
214 B
CMake

function(example name)
add_executable(${name} ${name}.cpp)
target_link_libraries(${name} PUBLIC component)
set_property(TARGET ${name} PROPERTY CXX_STANDARD 17)
endfunction(example)
example(print_key_press)