summaryrefslogtreecommitdiff
path: root/Source/cmTryCompileCommand.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmTryCompileCommand.cxx')
-rw-r--r--Source/cmTryCompileCommand.cxx3
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmTryCompileCommand.cxx b/Source/cmTryCompileCommand.cxx
index 8638dd9079..91287565e5 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";