From 872faf3e50ee153f65fb33e4f5ddf7ac06fe9f6a Mon Sep 17 00:00:00 2001 From: Marek Kotewicz Date: Sat, 28 Mar 2015 18:16:48 +0100 Subject: [PATCH] fixed #1450 --- libtestutils/CMakeLists.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/libtestutils/CMakeLists.txt b/libtestutils/CMakeLists.txt index 202b9823c..4ae52e0c9 100644 --- a/libtestutils/CMakeLists.txt +++ b/libtestutils/CMakeLists.txt @@ -18,6 +18,11 @@ set(EXECUTABLE testutils) file(GLOB HEADERS "*.h") +if (NOT JSONRPC) + list(REMOVE_ITEM SRC_LIST "./FixedWebThreeServer.cpp") + list(REMOVE_ITEM HEADERS "./FixedWebThreeServer.h") +endif() + if (ETH_STATIC) add_library(${EXECUTABLE} STATIC ${SRC_LIST} ${HEADERS}) else()