chore(Makefile): reduce ui-tests build and runtime

- do not depend on NIM for building/running StatusQ and Storybook stuff
This commit is contained in:
Lukáš Tinkl 2024-08-21 11:50:37 +02:00 committed by Lukáš Tinkl
parent 66fac6fa96
commit 7a29f93df5
1 changed files with 2 additions and 2 deletions

View File

@ -261,7 +261,7 @@ STATUSQ_BUILD_PATH := ui/StatusQ/build
STATUSQ_INSTALL_PATH := $(shell pwd)/bin
STATUSQ_CMAKE_CACHE := $(STATUSQ_BUILD_PATH)/CMakeCache.txt
$(STATUSQ_CMAKE_CACHE): | deps
$(STATUSQ_CMAKE_CACHE): | check-qt-dir
echo -e "\033[92mConfiguring:\033[39m StatusQ"
cmake \
-DCMAKE_INSTALL_PREFIX=$(STATUSQ_INSTALL_PATH) \
@ -342,7 +342,7 @@ STORYBOOK_SOURCE_PATH := storybook
STORYBOOK_BUILD_PATH := $(STORYBOOK_SOURCE_PATH)/build
STORYBOOK_CMAKE_CACHE := $(STORYBOOK_BUILD_PATH)/CMakeCache.txt
$(STORYBOOK_CMAKE_CACHE): | deps
$(STORYBOOK_CMAKE_CACHE): | check-qt-dir
echo -e "\033[92mConfiguring:\033[39m Storybook"
cmake \
-DCMAKE_INSTALL_PREFIX=$(STORYBOOK_INSTALL_PATH) \