From b14110f596f78d0c4539c87b0b5906d73e71e519 Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Tue, 17 Feb 2015 16:01:41 -0800 Subject: [PATCH] ensure fixup bundle post build step called with list --- cmake/macros/AddPathsToLibPaths.cmake | 4 ---- cmake/macros/CopyDllsBesideWindowsExecutable.cmake | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/cmake/macros/AddPathsToLibPaths.cmake b/cmake/macros/AddPathsToLibPaths.cmake index bc066304bc..d86d054615 100644 --- a/cmake/macros/AddPathsToLibPaths.cmake +++ b/cmake/macros/AddPathsToLibPaths.cmake @@ -10,14 +10,10 @@ # macro(ADD_PATHS_TO_LIB_PATHS) - message(STATUS "ADD_PATHS called with ${ARGN}") foreach(_PATH ${ARGN}) - message(STATUS "ADDING ${_PATH}") - message(STATUS "CURRENT LIB_PATHS is ${LIB_PATHS}") set(TEMP_LIB_PATHS ${LIB_PATHS}) list(APPEND TEMP_LIB_PATHS ${_PATH}) set(LIB_PATHS ${TEMP_LIB_PATHS} CACHE TYPE LIST FORCE) - message(STATUS "LIB PATHS IS NOW ${LIB_PATHS}") endforeach() endmacro() \ No newline at end of file diff --git a/cmake/macros/CopyDllsBesideWindowsExecutable.cmake b/cmake/macros/CopyDllsBesideWindowsExecutable.cmake index e0558f7a44..d6a8147ed4 100644 --- a/cmake/macros/CopyDllsBesideWindowsExecutable.cmake +++ b/cmake/macros/CopyDllsBesideWindowsExecutable.cmake @@ -17,7 +17,7 @@ macro(COPY_DLLS_BESIDE_WINDOWS_EXECUTABLE) POST_BUILD COMMAND ${CMAKE_COMMAND} -DBUNDLE_EXECUTABLE=$ - -DLIB_PATHS=${LIB_PATHS} + -DLIB_PATHS="${LIB_PATHS}" -P ${HIFI_CMAKE_DIR}/scripts/FixupBundlePostBuild.cmake ) endif ()