From dd86f8b4067de4fb034a39795fe1a9196b4d640e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Micha=C3=ABl=20Celerier?= Date: Mon, 25 Nov 2024 13:34:58 -0500 Subject: [PATCH] max: try to debug why json_to_maxref not always foujnd --- cmake/avendish.cmake | 2 +- cmake/avendish.tools.cmake | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cmake/avendish.cmake b/cmake/avendish.cmake index a5729393..9dc9aad7 100644 --- a/cmake/avendish.cmake +++ b/cmake/avendish.cmake @@ -126,6 +126,7 @@ add_library(avnd_dummy_lib OBJECT "${AVND_SOURCE_DIR}/src/dummy.cpp") include(avendish.dependencies) include(avendish.disableexceptions) include(avendish.sources) +include(avendish.tools) include(avendish.ui.qt) include(avendish.dump) @@ -138,7 +139,6 @@ include(avendish.clap) include(avendish.ossia) include(avendish.standalone) include(avendish.example) -include(avendish.tools) # Used for getting completion in IDEs... function(avnd_register) diff --git a/cmake/avendish.tools.cmake b/cmake/avendish.tools.cmake index 649a354f..f6d85f62 100644 --- a/cmake/avendish.tools.cmake +++ b/cmake/avendish.tools.cmake @@ -1,6 +1,6 @@ - # Demo: dump all the known metadata. if(TARGET pantor::inja AND TARGET nlohmann_json::nlohmann_json) + message("Building json_to_maxref") add_executable(json_to_maxref examples/Demos/JSONToMaxref.cpp) if(NOT MSVC) target_compile_options(json_to_maxref PRIVATE -std=c++20)