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