refactor(cmake): update include paths and defer test support linkage

- Updated include paths in several source files to reflect the new directory structure, ensuring consistency across the project.
- Deferred the linkage of the yaze_test_support library to the test.cmake file for better dependency management and ordering.

Benefits:
- Improved organization of include paths for better maintainability.
- Enhanced modularity by managing test dependencies separately.
This commit is contained in:
scawful
2025-10-11 12:19:51 -04:00
parent 1f56ff2fb8
commit 18986e3656
7 changed files with 16 additions and 10 deletions

View File

@@ -1,8 +1,8 @@
#ifndef YAZE_APP_EDITOR_EDITOR_MANAGER_H
#define YAZE_APP_EDITOR_EDITOR_MANAGER_H
#include "editor/system/user_settings.h"
#include "editor/ui/workspace_manager.h"
#include "app/editor/system/user_settings.h"
#include "app/editor/ui/workspace_manager.h"
#define IMGUI_DEFINE_MATH_OPERATORS
#include "imgui/imgui.h"
@@ -278,6 +278,7 @@ class EditorManager {
#ifdef YAZE_WITH_GRPC
// Agent editor - manages chat, collaboration, and network coordination
AgentEditor agent_editor_;
std::unique_ptr<agent::AgentControlServer> agent_control_server_;
#endif
std::string version_ = "";