From: <and...@us...> - 2011-10-31 11:28:43
|
Revision: 12016 http://plplot.svn.sourceforge.net/plplot/?rev=12016&view=rev Author: andrewross Date: 2011-10-31 11:28:37 +0000 (Mon, 31 Oct 2011) Log Message: ----------- Small fix to ensure cmake support for building the ocaml examples works in the install tree. examples/ocaml/CMakeFiles.txt relies on BUILD_SHARED_LIBS being set in order to add the right linker options in the install tree. Without this building the examples in the install tree will fail once the plplot build directory has been deleted. Modified Paths: -------------- trunk/examples/plplot_configure.cmake_installed_examples.in Modified: trunk/examples/plplot_configure.cmake_installed_examples.in =================================================================== --- trunk/examples/plplot_configure.cmake_installed_examples.in 2011-10-28 19:07:41 UTC (rev 12015) +++ trunk/examples/plplot_configure.cmake_installed_examples.in 2011-10-31 11:28:37 UTC (rev 12016) @@ -23,6 +23,8 @@ set(MATH_LIB @MATH_LIB@) set(SH_EXECUTABLE @SH_EXECUTABLE@) +set(BUILD_SHARED_LIBS @BUILD_SHARED_LIBS@) + set(language_info_LIST @language_info_LIST@) # This list of set commands must be consistent with language_info_LIST This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |