From de3d975df0ff7a193134af53fb3b61f920e6aa8a Mon Sep 17 00:00:00 2001 From: Alan MacDonald Date: Thu, 23 Mar 2023 17:17:35 -0700 Subject: [PATCH] enable USE_MICRO for mac and windows CI builds --- conda/recipe/bld.bat | 1 + conda/recipe/build.sh | 1 + 2 files changed, 2 insertions(+) diff --git a/conda/recipe/bld.bat b/conda/recipe/bld.bat index 6af4a9bacf63..f8988b135793 100644 --- a/conda/recipe/bld.bat +++ b/conda/recipe/bld.bat @@ -27,6 +27,7 @@ cmake ^ -DUSE_LLVM=ON ^ -DUSE_RPC=ON ^ -DUSE_CPP_RPC=ON ^ + -DUSE_MICRO=ON ^ -DUSE_SORT=ON ^ -DUSE_RANDOM=ON ^ -DUSE_PROFILER=ON ^ diff --git a/conda/recipe/build.sh b/conda/recipe/build.sh index 0131fd65a48e..3422c4d8f13b 100755 --- a/conda/recipe/build.sh +++ b/conda/recipe/build.sh @@ -49,6 +49,7 @@ cmake -DCMAKE_INSTALL_PREFIX="${PREFIX}" \ -DCMAKE_BUILD_TYPE=Release \ -DUSE_RPC=ON \ -DUSE_CPP_RPC=OFF \ + -DUSE_MICRO=ON \ -DUSE_SORT=ON \ -DUSE_RANDOM=ON \ -DUSE_PROFILER=ON \