[asterisk-scf-commits] asterisk-scf/integration/slice-plugins.git branch "master" updated.

Commits to the Asterisk SCF project code repositories asterisk-scf-commits at lists.digium.com
Fri Jan 7 00:01:52 UTC 2011


branch "master" has been updated
       via  a1626334e6aea8343ed69b3c25709854a56d4090 (commit)
      from  48ced450203f5dfff2417c0e0ea09b0c33904515 (commit)

Summary of changes:
 src/CMakeLists.txt |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)


- Log -----------------------------------------------------------------
commit a1626334e6aea8343ed69b3c25709854a56d4090
Author: Kevin P. Fleming <kpfleming at digium.com>
Date:   Thu Jan 6 18:01:47 2011 -0600

    Quick fix for Windows path issue.

diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index facbcf7..f68ab39 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -1,4 +1,8 @@
 add_library(SliceVisitorPattern SHARED SliceVisitorPattern.cpp)
 
-get_filename_component(library_path ${ICE_CXX_LIB_Ice} PATH)
+if(WIN32)
+  get_filename_component(library_path ${ICE_CXX_LIB_DEBUG_Ice} PATH)
+else()
+  get_filename_component(library_path ${ICE_CXX_LIB_Ice} PATH)
+endif()
 install(TARGETS SliceVisitorPattern LIBRARY DESTINATION ${library_path})

-----------------------------------------------------------------------


-- 
asterisk-scf/integration/slice-plugins.git



More information about the asterisk-scf-commits mailing list