From 9babd5a54e8f68b5ffd1ca1f20dc6f6908c1db5e Mon Sep 17 00:00:00 2001 From: sowle Date: Wed, 16 Sep 2020 17:22:23 +0300 Subject: [PATCH] fixed an issue with gui wallet compilation when node_modules is present in the directory tree --- src/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 4c5d8b1a..cf97f685 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -75,6 +75,7 @@ if(BUILD_GUI) else() file(GLOB_RECURSE QTDAEMON gui/qt-daemon/*.cpp gui/qt-daemon/*.h) endif() + list(FILTER QTDAEMON EXCLUDE REGEX "node_modules") endif()