From 1cce9db710d26816563b1254f835574f40f03a8b Mon Sep 17 00:00:00 2001 From: spectralio <63775040+spectralio@users.noreply.github.com> Date: Fri, 17 Apr 2020 13:08:32 +0200 Subject: [PATCH] fix missing underscore --- modules/java/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/java/CMakeLists.txt b/modules/java/CMakeLists.txt index 8cc4bd07a6..c1e1e772ce 100644 --- a/modules/java/CMakeLists.txt +++ b/modules/java/CMakeLists.txt @@ -19,7 +19,7 @@ include(${CMAKE_CURRENT_SOURCE_DIR}/common.cmake) macro(glob_more_specific_sources _type _root _output) unset(_masks) if(${_type} STREQUAL "H") - set(_masks "${_root}/cpp/*.h" "${root}/cpp/*.hpp") + set(_masks "${_root}/cpp/*.h" "${_root}/cpp/*.hpp") elseif(${_type} STREQUAL "CPP") set(_masks "${_root}/cpp/*.cpp") elseif(${_type} STREQUAL "JAVA")