FTXUI/examples/CMakeLists.txt

20 lines
603 B
CMake
Raw Normal View History

set(EXAMPLES_DIR ${CMAKE_CURRENT_SOURCE_DIR})
function(example name)
add_executable(ftxui_example_${name} ${name}.cpp)
target_link_libraries(ftxui_example_${name} PUBLIC ${DIRECTORY_LIB})
file(RELATIVE_PATH dir ${EXAMPLES_DIR} ${CMAKE_CURRENT_SOURCE_DIR})
set_property(GLOBAL APPEND PROPERTY FTXUI::EXAMPLES ${dir}/${name})
endfunction(example)
2019-01-03 05:33:59 +08:00
add_subdirectory(component)
add_subdirectory(dom)
2021-03-22 07:26:52 +08:00
if (EMSCRIPTEN)
get_property(EXAMPLES GLOBAL PROPERTY FTXUI::EXAMPLES)
2021-03-22 07:26:52 +08:00
foreach(file
"index.html"
"run_webassembly.py")
configure_file(${file} ${file})
2021-03-22 07:26:52 +08:00
endforeach(file)
endif()