From ba735f660edfc91780a39f9db0de4261ed7ce1c9 Mon Sep 17 00:00:00 2001 From: hyunil park Date: Wed, 12 Jul 2023 14:01:52 +0900 Subject: [PATCH] [README] Modify guidelines for Build and Run test When the user builds nnstreamer-edge directly, pkgconfig is installed in the "/" path. Therefore, -DCMAKE_INSTALL_LIBDIR must be set together. Signed-off-by: hyunil park --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c9044e7..ccbc75a 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ $ sudo systemctl start mosquitto ### Build and Run test ``` # cd $NNST_EDGE_ROOT -$ cmake -B build -DCMAKE_INSTALL_PREFIX=/usr -DENABLE_TEST=ON -DMQTT_SUPPORT=ON +$ cmake -B build -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib -DENABLE_TEST=ON -DMQTT_SUPPORT=ON $ make -C build install # Run test -- 2.34.1