|
From: <hez...@us...> - 2009-09-18 21:20:07
|
Revision: 10427
http://plplot.svn.sourceforge.net/plplot/?rev=10427&view=rev
Author: hezekiahcarty
Date: 2009-09-18 21:19:47 +0000 (Fri, 18 Sep 2009)
Log Message:
-----------
Add binary+build prefix to the installed OCaml files
Without this, CMake looks in the install tree rather than the build tree
for the installable OCaml files when using the new OCaml build system.
Modified Paths:
--------------
trunk/bindings/ocaml/CMakeLists.txt
Modified: trunk/bindings/ocaml/CMakeLists.txt
===================================================================
--- trunk/bindings/ocaml/CMakeLists.txt 2009-09-18 20:02:45 UTC (rev 10426)
+++ trunk/bindings/ocaml/CMakeLists.txt 2009-09-18 21:19:47 UTC (rev 10427)
@@ -195,12 +195,12 @@
)
set(OCAML_FULL_INSTALL_FILES
- plplot.cma
- plplot.cmxa
- plplot.a
- plplot.cmi
- libplplot_stubs.a
- plplot.mli
+ ${CMAKE_CURRENT_BINARY_DIR}/${OCAML_BUILD_DIR}/plplot.cma
+ ${CMAKE_CURRENT_BINARY_DIR}/${OCAML_BUILD_DIR}/plplot.cmxa
+ ${CMAKE_CURRENT_BINARY_DIR}/${OCAML_BUILD_DIR}/plplot.a
+ ${CMAKE_CURRENT_BINARY_DIR}/${OCAML_BUILD_DIR}/plplot.cmi
+ ${CMAKE_CURRENT_BINARY_DIR}/${OCAML_BUILD_DIR}/libplplot_stubs.a
+ ${CMAKE_CURRENT_BINARY_DIR}/${OCAML_BUILD_DIR}/plplot.mli
)
# Most files go in the plplot subdirectory
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|