From 7bd510dc1013018ba6307e1cbe1f5eee8cede40f Mon Sep 17 00:00:00 2001 From: OBattler Date: Thu, 28 Mar 2024 00:25:30 +0100 Subject: [PATCH] Actually take the Olivetti M290 Dev branched option into account. --- src/machine/CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/machine/CMakeLists.txt b/src/machine/CMakeLists.txt index e88631044..ecc374e66 100644 --- a/src/machine/CMakeLists.txt +++ b/src/machine/CMakeLists.txt @@ -37,6 +37,10 @@ if(LASERXT) target_compile_definitions(mch PRIVATE USE_LASERXT) endif() +if(OLIVETTI) + target_compile_definitions(mch PRIVATE USE_OLIVETTI) +endif() + if(OPEN_AT) target_compile_definitions(mch PRIVATE USE_OPEN_AT) endif()