mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-08-22 01:56:39 +08:00

Some checks are pending
Build / Bazel, ${{ matrix.cxx }}, ${{ matrix.os }} (cl, cl, windows-latest) (push) Waiting to run
Build / Bazel, ${{ matrix.cxx }}, ${{ matrix.os }} (clang, clang++, macos-latest) (push) Waiting to run
Build / Bazel, ${{ matrix.cxx }}, ${{ matrix.os }} (clang, clang++, ubuntu-latest) (push) Waiting to run
Build / Bazel, ${{ matrix.cxx }}, ${{ matrix.os }} (gcc, g++, macos-latest) (push) Waiting to run
Build / Bazel, ${{ matrix.cxx }}, ${{ matrix.os }} (gcc, g++, ubuntu-latest) (push) Waiting to run
Build / CMake, ${{ matrix.compiler }}, ${{ matrix.os }} (cl, Windows MSVC, windows-latest) (push) Waiting to run
Build / CMake, ${{ matrix.compiler }}, ${{ matrix.os }} (gcc, Linux GCC, ubuntu-latest) (push) Waiting to run
Build / CMake, ${{ matrix.compiler }}, ${{ matrix.os }} (llvm, llvm-cov gcov, Linux Clang, ubuntu-latest) (push) Waiting to run
Build / CMake, ${{ matrix.compiler }}, ${{ matrix.os }} (llvm, llvm-cov gcov, MacOS clang, macos-latest) (push) Waiting to run
Build / Test modules (llvm, ubuntu-latest) (push) Waiting to run
Documentation / documentation (push) Waiting to run
The file "sw.js" was removed mistakenly Fixed: https://github.com/ArthurSonzogni/FTXUI/issues/1098
29 lines
773 B
CMake
29 lines
773 B
CMake
if(NOT FTXUI_BUILD_EXAMPLES)
|
|
return()
|
|
endif()
|
|
|
|
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})
|
|
target_compile_features(ftxui_example_${name} PRIVATE cxx_std_20)
|
|
endfunction(example)
|
|
|
|
add_subdirectory(component)
|
|
add_subdirectory(dom)
|
|
|
|
if (EMSCRIPTEN)
|
|
get_property(EXAMPLES GLOBAL PROPERTY FTXUI::EXAMPLES)
|
|
foreach(file
|
|
"index.css"
|
|
"index.html"
|
|
"index.mjs"
|
|
"run_webassembly.py"
|
|
"sw.js"
|
|
)
|
|
configure_file(${file} ${file})
|
|
endforeach(file)
|
|
endif()
|