Skip to content

Commit 01bda7a

Browse files
committed
SWPROT-8953: build: Enable image provider
Note this commit could be improved if applied to other base, Observed issue (not present on current base with removed dirs): failed to create symbolic link '/usr/local/opt/unifysdk/components/uic_rust' because existing path cannot be removed: Is a directory failed to create symbolic link '/usr/local/opt/unifysdk/components/unify_attribute_poll' because existing path cannot be removed: Is a directory It did not break while it should. Also it has been observed that it fails to build on GH. Could also impact UnifySDK too. I am trying to rebuild on public Github runners. Origin: #33 Relate-to: #19 Signed-off-by: Philippe Coval <[email protected]>
1 parent 438f135 commit 01bda7a

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

helper.mk

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ version?=$(shell git describe --tags || echo "0")
1919
# Allow overloading from env if needed
2020
# VERBOSE?=1
2121
BUILD_DEV_GUI?=OFF
22+
BUILD_IMAGE_PROVIDER?=ON
2223

2324
cmake_options?=-B ${build_dir}
2425

@@ -72,6 +73,10 @@ packages+=nodejs
7273
endif
7374
endif
7475

76+
ifdef BUILD_IMAGE_PROVIDER
77+
cmake_options+=-DBUILD_IMAGE_PROVIDER=${BUILD_IMAGE_PROVIDER}
78+
endif
79+
7580
# Allow to bypass env detection, to support more build systems
7681
ifdef CMAKE_SYSTEM_PROCESSOR
7782
cmake_options+=-DCMAKE_SYSTEM_PROCESSOR="${CMAKE_SYSTEM_PROCESSOR}"

0 commit comments

Comments
 (0)