docs(flows): DoD obligatorio con user-facing surface + abrir issues 0100-0103 (taxonomia, frontmatter migration, dev_console, work dashboard)

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-05-17 00:07:04 +02:00
parent 8357774b86
commit 4164f5adfc
6 changed files with 104 additions and 18 deletions
+5 -5
View File
@@ -33,10 +33,10 @@ target_link_libraries(navegator_dashboard PRIVATE
imgui_node_editor
)
# fn_table_viz: provides data_table::render(), viz_render, TQL engine, Lua, LLM.
# fn_module_data_table: provides data_table::render(), viz_render, TQL engine, Lua, LLM.
# Guard keeps the app compilable in builds where vendor/lua is absent.
if(TARGET fn_table_viz)
target_link_libraries(navegator_dashboard PRIVATE fn_table_viz)
if(TARGET fn_module_data_table)
target_link_libraries(navegator_dashboard PRIVATE fn_module_data_table)
endif()
set_target_properties(navegator_dashboard PROPERTIES WIN32_EXECUTABLE TRUE)
@@ -65,8 +65,8 @@ if(FN_BUILD_TESTS)
ws2_32
imgui_node_editor
)
if(TARGET fn_table_viz)
target_link_libraries(navegator_dashboard_tests PRIVATE fn_table_viz)
if(TARGET fn_module_data_table)
target_link_libraries(navegator_dashboard_tests PRIVATE fn_module_data_table)
endif()
# Excluye int main() de main.cpp; el harness define su propio main().
target_compile_definitions(navegator_dashboard_tests PRIVATE FN_TEST_BUILD)