Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions applications/dev_ui/dev_gui/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Developer GUI install
find_program(YARN_EXECUTABLE "yarn" REQUIRED)
find_program(YARN_EXECUTABLE "yarnpkg" "yarn" REQUIRED)

if(APPLE)
set(NPM_TARGET macos-x64)
Expand Down Expand Up @@ -27,7 +27,7 @@ add_custom_command(
COMMAND cp -r ${ZAP_CURRENT_OUTPUT_DIR}/. .
COMMAND ${YARN_EXECUTABLE} version --no-git-tag-version --new-version
${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_REV}
COMMAND ${YARN_EXECUTABLE} install --allow-same-version
COMMAND ${YARN_EXECUTABLE} install
COMMAND ${YARN_EXECUTABLE} run build
USES_TERMINAL)

Expand Down
3 changes: 2 additions & 1 deletion helper.mk
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ packages+=nlohmann-json3-dev
# TODO: remove for offline build
packages+=curl wget python3-pip
packages+=time
packages+=yarnpkg

rust_url?=https://sh.rustup.rs
RUST_VERSION?=1.65.0
Expand All @@ -36,7 +37,7 @@ exes+=${zpc_exe}
zpc_cmake_options?=\
-DBUILD_AOXPC=OFF \
-DBUILD_CPCD=OFF \
-DBUILD_DEV_GUI=OFF \
-DBUILD_DEV_GUI=ON \
-DBUILD_EMD=OFF \
-DBUILD_EPC=OFF \
-DBUILD_GMS=OFF \
Expand Down