build: fix escaping in light/CMakeLists.txt

This commit is contained in:
Eric Wasylishen 2016-07-27 19:21:53 -06:00
parent f4a363b416
commit 7edf27de0c
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ if (embree_FOUND)
endforeach()
# so the executable will search for dylib's in the same directory as the executable
add_custom_command(TARGET light POST_BUILD COMMAND bash ARGS -c "install_name_tool -add_rpath @loader_path $<TARGET_FILE:light> || true")
add_custom_command(TARGET light POST_BUILD COMMAND bash ARGS -c \"install_name_tool -add_rpath @loader_path $<TARGET_FILE:light> || true\")
install(FILES ${EMBREE_DYLIBS} DESTINATION bin)
endif()