diff options
-rw-r--r-- | Source/cmTryCompileCommand.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmTryCompileCommand.cxx b/Source/cmTryCompileCommand.cxx index 8638dd9..9128756 100644 --- a/Source/cmTryCompileCommand.cxx +++ b/Source/cmTryCompileCommand.cxx @@ -72,6 +72,9 @@ bool cmTryCompileCommand::InitialPass(std::vector<std::string> const& argv) return false; } fprintf(fout,"PROJECT(CMAKE_TRY_COMPILE)\n"); + fprintf(fout, "IF (CMAKE_ANSI_CXXFLAGS)\n"); + fprintf(fout, " SET(CMAKE_CXX_FLAGS \"${CMAKE_CXX_FLAGS} ${CMAKE_ANSI_CXXFLAGS}\")\n"); + fprintf(fout, "ENDIF (CMAKE_ANSI_CXXFLAGS)\n"); fprintf(fout,"ADD_EXECUTABLE(cmTryCompileExec \"%s\")\n",argv[2].c_str()); fclose(fout); projectName = "CMAKE_TRY_COMPILE"; |