From 078d8136b3eb348997764fbd7e25a7b3e26e7f03 Mon Sep 17 00:00:00 2001
From: Anatolii Kurotych <akurotych@gmail.com>
Date: Tue, 22 Jan 2019 10:27:19 +0200
Subject: [PATCH] [*] Fix build error

---
 CMakeLists.txt | 8 +-------
 1 file changed, 1 insertion(+), 7 deletions(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 0a2fb04..bc6b536 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,16 +1,10 @@
 project(libdap-server C)
 cmake_minimum_required(VERSION 3.0)
 
-# dependencies #
-if(NOT ${SUBMODULES_NO_BUILD} MATCHES ON)
+if(NOT (${SUBMODULES_NO_BUILD} MATCHES ON))
     add_subdirectory(libdap)
     add_subdirectory(libdap-server-core)
     add_subdirectory(libdap-server-udp)
-endif()
-################
-
-
-if(BUILD_LIB_DAP_SERVER_TESTS)
     enable_testing()
     add_subdirectory(test)
 endif()
-- 
GitLab