From 57b1456441557e20503b1a350d1abe09ee1e3cb2 Mon Sep 17 00:00:00 2001 From: Nathan Seymour Date: Mon, 2 Dec 2024 08:14:09 -0600 Subject: [PATCH] move debug printer; --- unlogic/CMakeLists.txt | 4 +++- .../src}/compiler/transformer/debug/DebugPrinter.cpp | 0 .../src}/compiler/transformer/debug/DebugPrinter.h | 0 3 files changed, 3 insertions(+), 1 deletion(-) rename {src => unlogic/src}/compiler/transformer/debug/DebugPrinter.cpp (100%) rename {src => unlogic/src}/compiler/transformer/debug/DebugPrinter.h (100%) diff --git a/unlogic/CMakeLists.txt b/unlogic/CMakeLists.txt index 6b90d95..28bdb2a 100644 --- a/unlogic/CMakeLists.txt +++ b/unlogic/CMakeLists.txt @@ -52,9 +52,11 @@ add_library(unlogic STATIC src/parser/Parser.h src/compiler/transformer/IRGenerator.cpp src/compiler/transformer/IRGenerator.h + src/compiler/transformer/debug/DebugPrinter.cpp + src/compiler/transformer/debug/DebugPrinter.h + src/compiler/transformer/IRGenerationContext.h src/compiler/std/RuntimeLibrary.cpp src/compiler/std/RuntimeLibrary.h - src/compiler/transformer/IRGenerationContext.h src/graphic/Scene.cpp src/graphic/Scene.h src/graphic/Color.cpp diff --git a/src/compiler/transformer/debug/DebugPrinter.cpp b/unlogic/src/compiler/transformer/debug/DebugPrinter.cpp similarity index 100% rename from src/compiler/transformer/debug/DebugPrinter.cpp rename to unlogic/src/compiler/transformer/debug/DebugPrinter.cpp diff --git a/src/compiler/transformer/debug/DebugPrinter.h b/unlogic/src/compiler/transformer/debug/DebugPrinter.h similarity index 100% rename from src/compiler/transformer/debug/DebugPrinter.h rename to unlogic/src/compiler/transformer/debug/DebugPrinter.h