From 69e305b10bb50779d4067e0e8a6ebf5b52579c5c Mon Sep 17 00:00:00 2001 From: kai Date: Sat, 15 Sep 2012 16:29:30 +0200 Subject: [PATCH] Remove quotes from arguments for add_custom_target. This fixes #163. --- runtime/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime/CMakeLists.txt b/runtime/CMakeLists.txt index ea98fd48..ed60599c 100644 --- a/runtime/CMakeLists.txt +++ b/runtime/CMakeLists.txt @@ -218,10 +218,10 @@ macro(dc INPUT_D OUTLIST_O OUTLIST_BC MOREFLAGS PATH SUFFIX) # Compile if(BUILD_BC_LIBS) set(OUTPUT ${OUTPUT_O} ${OUTPUT_BC}) - set(DC_FLAGS "--output-o --output-bc") + set(DC_FLAGS --output-o --output-bc) else() set(OUTPUT ${OUTPUT_O}) - set(DC_FLAGS "--output-o") + set(DC_FLAGS --output-o) endif() add_custom_command( OUTPUT