|
From: <ai...@us...> - 2014-03-18 02:55:23
|
Revision: 13082
http://sourceforge.net/p/plplot/code/13082
Author: airwin
Date: 2014-03-18 02:55:19 +0000 (Tue, 18 Mar 2014)
Log Message:
-----------
Replace "d" by ${LIB_TAG} as appropriate so that new scheme with empty
LIB_TAG works properly. This issue only affected the Windows case.
Modified Paths:
--------------
trunk/bindings/ada/CMakeLists.txt
Modified: trunk/bindings/ada/CMakeLists.txt
===================================================================
--- trunk/bindings/ada/CMakeLists.txt 2014-03-17 19:56:51 UTC (rev 13081)
+++ trunk/bindings/ada/CMakeLists.txt 2014-03-18 02:55:19 UTC (rev 13082)
@@ -74,7 +74,7 @@
if(NON_TRANSITIVE)
# empty list ==> non-transitive linking for everything that links to
- # libplplotadad in the shared libraries case.
+ # libplplotada${LIB_TAG} in the shared libraries case.
target_link_libraries(plplotada${LIB_TAG} LINK_INTERFACE_LIBRARIES)
# This configures the pkg-config method to use non-transitive linking.
set(PC_REQUIRES_TAG "Requires.private")
@@ -90,7 +90,7 @@
add_custom_command(
TARGET plplotada${LIB_TAG} POST_BUILD
COMMAND ${CMAKE_COMMAND} -E copy_if_different
- libplplotadad.dll libplplotadad.dll.a
+ libplplotada${LIB_TAG}.dll libplplotada${LIB_TAG}.dll.a
WORKING_DIRECTORY ${CMAKE_BINARY_DIR}/dll
VERBATIM
)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|