From 4b261778e53cb72409a37c3483e3360e99914989 Mon Sep 17 00:00:00 2001 From: samywang92 Date: Mon, 8 Jan 2024 09:27:10 -0800 Subject: [PATCH] update windows command --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 80d362e7..c2f8a0d4 100644 --- a/README.md +++ b/README.md @@ -22,14 +22,14 @@ Please follow the instructions provided for your preferred platform. #### a. Unix ```sh mkdir build && cd build -cmake -GNinja -DCMAKE_INSTALL_PREFIX= -DHalide_DIR= -DONNXRUNTIME_ROOT= -DOPENCV_DIR= ../ +cmake -GNinja -DCMAKE_INSTALL_PREFIX= -DHalide_DIR= -DHalideHelpers_DIR= -DONNXRUNTIME_ROOT= -DOPENCV_DIR= ../ cmake --build . ``` #### b. Windows ``` mkdir build cd build -cmake -G "Visual Studio 17 2022" -A x64 -DHalide_DIR= -DOpenCV_DIR= ../ +cmake -G "Visual Studio 17 2022" -A x64 -DHalideHelpers_DIR=<> -DHalide_DIR= -DOpenCV_DIR= -D ION_BUILD_ALL_BB=OFF -DION_BBS_TO_BUILD="ion-bb-core;ion-bb-image-processing;ion-bb-sgm;ion-bb-image-io" ../ cmake --build . --config Release ```