Files
primitives_gallery/playground/tables/CMakeLists.txt
T
2026-05-11 16:30:43 +02:00

16 lines
413 B
CMake

# Tables playground (cpp_apps.md / playgrounds.md). NO se indexa.
add_imgui_app(tables_playground
main.cpp
data_table.cpp
data_table_logic.cpp
)
# Self-test E2E (logica pura, sin ImGui). No depende de fn_framework.
add_executable(tables_playground_self_test
self_test.cpp
data_table_logic.cpp
)
target_include_directories(tables_playground_self_test PRIVATE
${CMAKE_CURRENT_SOURCE_DIR}
)