From 7edf27de0ca65bcd2d6952ef44a2fcc00af95223 Mon Sep 17 00:00:00 2001 From: Eric Wasylishen Date: Wed, 27 Jul 2016 19:21:53 -0600 Subject: [PATCH] build: fix escaping in light/CMakeLists.txt --- light/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/light/CMakeLists.txt b/light/CMakeLists.txt index 3fd480d5..c460875a 100644 --- a/light/CMakeLists.txt +++ b/light/CMakeLists.txt @@ -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 $ || true") + add_custom_command(TARGET light POST_BUILD COMMAND bash ARGS -c \"install_name_tool -add_rpath @loader_path $ || true\") install(FILES ${EMBREE_DYLIBS} DESTINATION bin) endif()