this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

CMake protect PATH in dSYM generation

authored by

Niram7777 and committed by
GitHub
633c427d ed47f719

+1 -1
+1 -1
cmake/dsym.cmake
··· 12 12 if (DSYMUTIL_EXE AND build_type MATCHES debug) 13 13 14 14 add_custom_command(OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/${target}.dSYM" DEPENDS "${target}" COMMAND ${CMAKE_COMMAND} -E env 15 - "PATH=${CMAKE_BINARY_DIR}/src/external/cctools-port/cctools/misc:$ENV{PATH}" 15 + "PATH='${CMAKE_BINARY_DIR}/src/external/cctools-port/cctools/misc:$ENV{PATH}'" 16 16 "${DSYMUTIL_EXE}" "-flat" "-o" "${target}.dSYM" "$<TARGET_FILE:${target}>") 17 17 18 18 add_custom_target("${target}-dSYM" ALL DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/${target}.dSYM" getuuid lipo)