summaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
Diffstat (limited to 'cmake')
-rw-r--r--cmake/DemoTools.cmake14
1 files changed, 2 insertions, 12 deletions
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 $<TARGET_FILE:seq_compiler>)
- 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})