From ecef58688317274bea2047726a5c63c8280029dc Mon Sep 17 00:00:00 2001 From: GPayne Date: Sat, 14 May 2022 22:25:23 -0600 Subject: [PATCH] Use relative paths for CMake webbrowser module helper --- modules/cefwebgui/CMakeLists.txt | 2 +- modules/webgui/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/cefwebgui/CMakeLists.txt b/modules/cefwebgui/CMakeLists.txt index c6e4b30faf..e664632cf4 100644 --- a/modules/cefwebgui/CMakeLists.txt +++ b/modules/cefwebgui/CMakeLists.txt @@ -23,7 +23,7 @@ ########################################################################################## include(${OPENSPACE_CMAKE_EXT_DIR}/module_definition.cmake) -include(${WEBBROWSER_MODULE_PATH}/cmake/webbrowser_helpers.cmake) +include(../webbrowser/cmake/webbrowser_helpers.cmake) set(CEFWEBGUI_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR} CACHE INTERNAL "CEFWEBGUI_MODULE_PATH") set(CEFWEBGUI_SOURCE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/web CACHE INTERNAL "CEFWEBGUI_MODULE_PATH") diff --git a/modules/webgui/CMakeLists.txt b/modules/webgui/CMakeLists.txt index 3cf6c08871..6ee8f77798 100644 --- a/modules/webgui/CMakeLists.txt +++ b/modules/webgui/CMakeLists.txt @@ -23,7 +23,7 @@ ########################################################################################## include(${OPENSPACE_CMAKE_EXT_DIR}/module_definition.cmake) -include(${WEBBROWSER_MODULE_PATH}/cmake/webbrowser_helpers.cmake) +include(../webbrowser/cmake/webbrowser_helpers.cmake) set(WEBGUI_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR} CACHE INTERNAL "WEBGUI_MODULE_PATH")