From 8cd00e5f8a357bef5c7a7196fc77daf615d305f9 Mon Sep 17 00:00:00 2001 From: Glenn Waldron Date: Tue, 17 Sep 2024 14:03:28 -0400 Subject: [PATCH] cmake: fix bad install location for nodekit shaders when OSGEARTH_INSTALL_SHADERS is set to TRUE --- cmake/osgearth-macros.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/osgearth-macros.cmake b/cmake/osgearth-macros.cmake index 8ca78b6981..f774d82b01 100644 --- a/cmake/osgearth-macros.cmake +++ b/cmake/osgearth-macros.cmake @@ -54,7 +54,7 @@ macro(add_osgearth_plugin) # install the shader source files, if requested: if(OSGEARTH_INSTALL_SHADERS) - install(FILES ${MY_SHADERS} DESTINATION resources/shaders) + install(FILES ${MY_SHADERS} DESTINATION share/osgEarth/shaders) endif() # macos-specific