From 08069d65cea269aec6d19c4d99f9f38138e6c962 Mon Sep 17 00:00:00 2001 From: skal Date: Mon, 16 Feb 2026 21:51:05 +0100 Subject: refactor: remove C++ seq_compiler and Gantt chart references - Remove tools/seq_compiler.cc (replaced by seq_compiler.py) - Remove C++ seq_compiler build target from cmake/DemoTools.cmake - Update documentation to remove Gantt chart mentions - Keep seq_compiler.py (active Python compiler) - All tests passing (34/34) --- cmake/DemoTools.cmake | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) (limited to 'cmake/DemoTools.cmake') diff --git a/cmake/DemoTools.cmake b/cmake/DemoTools.cmake index 43c4716..ae39ec9 100644 --- a/cmake/DemoTools.cmake +++ b/cmake/DemoTools.cmake @@ -1,5 +1,5 @@ # Build Tools Setup -# Configures asset_packer, seq_compiler, and tracker_compiler +# Configures asset_packer and tracker_compiler # Asset packer tool if(DEFINED ASSET_PACKER_PATH) @@ -13,17 +13,7 @@ else() set(ASSET_PACKER_DEPENDS asset_packer) endif() -# Sequence compiler tool (v1) -if(DEFINED SEQ_COMPILER_PATH) - set(SEQ_COMPILER_CMD ${SEQ_COMPILER_PATH}) - set(SEQ_COMPILER_DEPENDS ${SEQ_COMPILER_PATH}) -else() - add_executable(seq_compiler tools/seq_compiler.cc) - set(SEQ_COMPILER_CMD $) - set(SEQ_COMPILER_DEPENDS seq_compiler) -endif() - -# Sequence compiler tool (v2 - Python) +# Sequence compiler tool (Python) set(SEQ_COMPILER_SCRIPT ${CMAKE_CURRENT_SOURCE_DIR}/tools/seq_compiler.py) set(SEQ_COMPILER_CMD ${CMAKE_COMMAND} -E env python3 ${SEQ_COMPILER_SCRIPT}) set(SEQ_COMPILER_DEPENDS ${SEQ_COMPILER_SCRIPT}) -- cgit v1.2.3