refactor: extract instrument from engine to debug

This commit is contained in:
light7734 2025-07-11 02:01:33 +03:30
parent 320295ad73
commit ae336e3bba
Signed by: light7734
GPG key ID: 8C30176798F1A6BA
3 changed files with 1 additions and 4 deletions

View file

@ -1,7 +1,6 @@
#pragma once #pragma once
#include <chrono> #include <chrono>
#include <fstream> #include <fstream>
namespace lt { namespace lt {

View file

@ -1,4 +1,4 @@
#include <engine/debug/instrumentor.hpp> #include <debug/instrumentor.hpp>
namespace lt { namespace lt {

View file

@ -1,7 +1,6 @@
if(NOT WIN32) if(NOT WIN32)
add_library_module(engine add_library_module(engine
core/application.cpp core/application.cpp
debug/instrumentor.cpp
layer/layer.cpp layer/layer.cpp
layer/layer_stack.cpp layer/layer_stack.cpp
time/timer.cpp time/timer.cpp
@ -10,7 +9,6 @@ if(NOT WIN32)
else() else()
add_library_module(engine add_library_module(engine
core/application.cpp core/application.cpp
debug/instrumentor.cpp
layer/layer.cpp layer/layer.cpp
layer/layer_stack.cpp layer/layer_stack.cpp
time/timer.cpp time/timer.cpp