From d3f39a38b225e871d2e49d19de14b6bcd5c75b43 Mon Sep 17 00:00:00 2001 From: Brad King Date: Mon, 2 Mar 2009 09:44:48 -0500 Subject: [PATCH] BUG: Fix cswig exe install dir MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This fixes the CableSwig executable install rules to use the proper configuration variable. Patch from Gaƫtan Lehmann. --- Executables/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Executables/CMakeLists.txt b/Executables/CMakeLists.txt index 8798f32..de23744 100644 --- a/Executables/CMakeLists.txt +++ b/Executables/CMakeLists.txt @@ -20,5 +20,5 @@ TARGET_LINK_LIBRARIES(cableidx ) INSTALL(TARGETS cswig cableidx - RUNTIME DESTINATION ${GCCXML_INSTALL_ROOT}bin + RUNTIME DESTINATION ${CableSwig_INSTALL_ROOT}bin COMPONENT Development)