Removed stray ';' problem in parameter list by changing from CMake list to a whitespace separated list of parameters.

This commit is contained in:
Steve King 2010-09-04 14:20:55 -07:00
parent 4331f9ad6b
commit e1e30efe1d

View file

@ -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()