diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2002-11-21 21:11:44 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2002-11-21 21:11:44 (GMT) |
commit | fc68dd61c32ec47e6dc19c322ea900092a6e30e2 (patch) | |
tree | bd0d29afb7a6328e7c692e3f99b61f8c5f42a76b /Source | |
parent | ddf68089567cacf287ab7409e5df55026185986c (diff) | |
download | CMake-fc68dd61c32ec47e6dc19c322ea900092a6e30e2.zip CMake-fc68dd61c32ec47e6dc19c322ea900092a6e30e2.tar.gz CMake-fc68dd61c32ec47e6dc19c322ea900092a6e30e2.tar.bz2 |
fix for c flags
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmTryCompileCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmTryCompileCommand.cxx b/Source/cmTryCompileCommand.cxx index 5dce747..dd91fe8 100644 --- a/Source/cmTryCompileCommand.cxx +++ b/Source/cmTryCompileCommand.cxx @@ -153,7 +153,7 @@ int cmTryCompileCommand::CoreTryCompileCode( return -1; } - fprintf(fout, "SET(CMAKE_C_FLAGS \"${CMAKE_C_FLAGS} ${COMPILE_DEFINITIONS}\"\")\n"); + fprintf(fout, "SET(CMAKE_C_FLAGS \"${CMAKE_C_FLAGS} ${COMPILE_DEFINITIONS}\")\n"); fprintf(fout, "SET(CMAKE_CXX_FLAGS \"${CMAKE_CXX_FLAGS} ${COMPILE_DEFINITIONS}\")\n"); fprintf(fout, "INCLUDE_DIRECTORIES(${INCLUDE_DIRECTORIES})\n"); fprintf(fout, "LINK_DIRECTORIES(${LINK_DIRECTORIES})\n"); |