asegurate de que subimos todo

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-05-12 03:10:00 +02:00
parent 4c04162e23
commit d782d463cb
14 changed files with 8780 additions and 252 deletions
+8 -1
View File
@@ -3,13 +3,20 @@ add_imgui_app(tables_playground
main.cpp
data_table.cpp
data_table_logic.cpp
lua_engine.cpp
tql.cpp
viz.cpp
)
target_link_libraries(tables_playground PRIVATE lua54 implot)
# Self-test E2E (logica pura, sin ImGui). No depende de fn_framework.
# Self-test E2E (logica pura + lua_engine + tql).
add_executable(tables_playground_self_test
self_test.cpp
data_table_logic.cpp
lua_engine.cpp
tql.cpp
)
target_include_directories(tables_playground_self_test PRIVATE
${CMAKE_CURRENT_SOURCE_DIR}
)
target_link_libraries(tables_playground_self_test PRIVATE lua54)