|
From: <jt...@us...> - 2019-09-18 11:58:34
|
Revision: 1854
http://sourceforge.net/p/freeglut/code/1854
Author: jtsiomb
Date: 2019-09-18 11:58:31 +0000 (Wed, 18 Sep 2019)
Log Message:
-----------
fixed bug #251: freeglut cmake modules installation would disregard
CMAKE_INSTALL_LIBDIR
Modified Paths:
--------------
trunk/freeglut/freeglut/CMakeLists.txt
Modified: trunk/freeglut/freeglut/CMakeLists.txt
===================================================================
--- trunk/freeglut/freeglut/CMakeLists.txt 2019-09-18 11:53:32 UTC (rev 1853)
+++ trunk/freeglut/freeglut/CMakeLists.txt 2019-09-18 11:58:31 UTC (rev 1854)
@@ -622,7 +622,7 @@
"${CMAKE_CURRENT_BINARY_DIR}/FreeGLUT/FreeGLUTConfig.cmake"
@ONLY
)
-SET(ConfigPackageLocation lib/cmake/FreeGLUT)
+SET(ConfigPackageLocation ${CMAKE_INSTALL_LIBDIR}/cmake/FreeGLUT)
INSTALL(EXPORT FreeGLUTTargets
FILE FreeGLUTTargets.cmake
NAMESPACE FreeGLUT::
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|