diff --git a/CMakeLists.txt b/CMakeLists.txt index 377d6e9..e76ac64 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -60,7 +60,7 @@ target_include_directories(graph_explorer PRIVATE ${FN_CPP_ROOT_DIR}/functions ) -target_link_libraries(graph_explorer PRIVATE SQLite::SQLite3 DuckDB::DuckDB fn_table_viz) +target_link_libraries(graph_explorer PRIVATE SQLite::SQLite3 DuckDB::DuckDB fn_module_data_table) duckdb_copy_runtime(graph_explorer) # Threads — issue 0026 (jobs system) usa std::thread + std::mutex + condvar. diff --git a/app.md b/app.md index 6535880..3292462 100644 --- a/app.md +++ b/app.md @@ -48,10 +48,14 @@ uses_functions: - extract_iocs_py_cybersecurity - extract_graph_hybrid_py_pipelines uses_types: [] +uses_modules: [data_table_cpp] framework: "imgui" entry_point: "main.cpp" dir_path: "projects/osint_graph/apps/graph_explorer" repo_url: "https://gitea-dgg044oo04woo4ggcsws4gk0.organic-machine.com/dataforge/graph_explorer" +icon: + phosphor: "graph" + accent: "#0891b2" python_runtime: true python_runtime_deps: - requests diff --git a/views.cpp b/views.cpp index 806dc7e..b1a0b0a 100644 --- a/views.cpp +++ b/views.cpp @@ -18,7 +18,7 @@ #include "core/icons_tabler.h" // data_table — issue 0081-J: migracion panel Table a data_table::render. -#include "viz/data_table.h" +#include "data_table/data_table.h" #include "imgui.h" diff --git a/views_jobs.cpp b/views_jobs.cpp index 5a99462..e438344 100644 --- a/views_jobs.cpp +++ b/views_jobs.cpp @@ -19,7 +19,7 @@ #include "core/icons_tabler.h" #include "core/tokens.h" #include "core/data_table_types.h" -#include "viz/data_table.h" +#include "data_table/data_table.h" #include "imgui.h"