From 31f1d834095c9f366a04f969587f7f2eb26cc26f Mon Sep 17 00:00:00 2001 From: "Zachary J. Fields" Date: Thu, 4 May 2017 10:04:17 -0700 Subject: [PATCH] Add check for CMake version with remote modules --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7deffedf..8409f6ed 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -306,6 +306,7 @@ add_subdirectory(core) include_directories(${GW_INC}) # GW_INC defined in core if (${enable_native_remote_modules} OR ${enable_java_remote_modules}) + cmake_minimum_required(VERSION 3.2.2) add_subdirectory(proxy) endif()