From e1e30efe1d4263eeeb6940294c14b540ec03874c Mon Sep 17 00:00:00 2001 From: Steve King Date: Sat, 4 Sep 2010 14:20:55 -0700 Subject: [PATCH] Removed stray ';' problem in parameter list by changing from CMake list to a whitespace separated list of parameters. --- tests/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 92a5646..bae44c3 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -14,8 +14,8 @@ SET( GLOBAL_GCC_DEFS "-Wall -pedantic" ) # higher than C++ (30) and C (10). This causes CMAKE # to use the D linker in mixed linking cases. # Append our own definitions to the defaults. -SET( CMAKE_C_FLAGS ${CMAKE_C_FLAGS} ${GLOBAL_GCC_DEFS} ) -SET( CMAKE_D_FLAGS ${CMAKE_D_FLAGS} ${GLOBAL_DMD_DEFS} ) +SET( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${GLOBAL_GCC_DEFS}" ) +SET( CMAKE_D_FLAGS "${CMAKE_D_FLAGS} ${GLOBAL_DMD_DEFS}" ) enable_testing()