| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187 |
- /*=========================================================================
- Program: Insight Segmentation & Registration Toolkit
- Module: $RCSfile$
- Language: C++
- Date: $Date$
- Version: $Revision$
- Copyright (c) 2002 Insight Consortium. All rights reserved.
- See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
- This software is distributed WITHOUT ANY WARRANTY; without even
- the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
- PURPOSE. See the above copyright notices for more information.
- =========================================================================*/
- #include "cmTryCompileCommand.h"
- #include "cmCacheManager.h"
- int cmTryCompileCommand::CoreTryCompileCode(
- cmMakefile *mf, std::vector<std::string> const& argv, bool clean)
- {
- // which signature were we called with ?
- bool srcFileSignature = true;
- int i;
-
- // where will the binaries be stored
- const char* binaryDirectory = argv[1].c_str();
- const char* sourceDirectory = argv[2].c_str();
- const char* projectName = 0;
- const char* targetName = 0;
- std::string tmpString;
-
- // compute the binary dir when TRY_COMPILE is called with a src file
- // signature
- if (srcFileSignature)
- {
- tmpString = argv[1] + "/CMakeTmp";
- binaryDirectory = tmpString.c_str();
- }
- // make sure the binary directory exists
- cmSystemTools::MakeDirectory(binaryDirectory);
-
- // do not allow recursive try Compiles
- if (!strcmp(binaryDirectory,mf->GetHomeOutputDirectory()))
- {
- cmSystemTools::Error("Attempt at a recursive or nested TRY_COMPILE",
- binaryDirectory);
- return -1;
- }
-
- // look for CMAKE_FLAGS and store them
- std::vector<std::string> cmakeFlags;
- for (i = 3; i < argv.size(); ++i)
- {
- if (argv[i] == "CMAKE_FLAGS")
- {
- for (; i < argv.size() && argv[i] != "COMPILE_DEFINITIONS";
- ++i)
- {
- cmakeFlags.push_back(argv[i]);
- }
- break;
- }
- else
- {
- srcFileSignature = false;
- }
- }
- // look for COMPILE_DEFINITIONS and store them
- std::vector<std::string> compileFlags;
- for (i = 0; i < argv.size(); ++i)
- {
- if (argv[i] == "COMPILE_DEFINITIONS")
- {
- // only valid for srcfile signatures
- if (!srcFileSignature)
- {
- cmSystemTools::Error(
- "COMPILE_FLAGS specified on a srcdir type TRY_COMPILE");
- return -1;
- }
- for (i = i + 1; i < argv.size() && argv[i] != "CMAKE_FLAGS";
- ++i)
- {
- compileFlags.push_back(argv[i]);
- }
- break;
- }
- }
-
- // which signature are we using? If we are using var srcfile bindir
- if (srcFileSignature)
- {
- // remove any CMakeCache.txt files so we will have a clean test
- std::string ccFile = tmpString + "/CMakeCache.txt";
- cmSystemTools::RemoveFile(ccFile.c_str());
-
- // we need to create a directory and CMakeList file etc...
- // first create the directories
- sourceDirectory = binaryDirectory;
- // now create a CMakeList.txt file in that directory
- std::string outFileName = tmpString + "/CMakeLists.txt";
- FILE *fout = fopen(outFileName.c_str(),"w");
- if (!fout)
- {
- cmSystemTools::Error("Failed to create CMakeList file for ",
- outFileName.c_str());
- return -1;
- }
- 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");
- // handle any compile flags we need to pass on
- if (compileFlags.size())
- {
- fprintf(fout, "ADD_DEFINITIONS( ");
- for (i = 0; i < compileFlags.size(); ++i)
- {
- fprintf(fout,"%s ",compileFlags[i].c_str());
- }
- fprintf(fout, ")\n");
- }
-
- fprintf(fout, "ADD_EXECUTABLE(cmTryCompileExec \"%s\")\n",argv[2].c_str());
- fclose(fout);
- projectName = "CMAKE_TRY_COMPILE";
- targetName = "cmTryCompileExec";
- }
- // else the srcdir bindir project target signature
- else
- {
- projectName = argv[3].c_str();
-
- if (argv.size() == 5)
- {
- targetName = argv[4].c_str();
- }
- }
-
- // actually do the try compile now that everything is setup
- int res = mf->TryCompile(sourceDirectory, binaryDirectory,
- projectName, targetName, &cmakeFlags);
-
- // set the result var to the return value to indicate success or failure
- mf->AddDefinition(argv[0].c_str(), (res == 0 ? "TRUE" : "FALSE"));
-
- // if They specified clean then we clean up what we can
- if (srcFileSignature && clean)
- {
- cmDirectory dir;
- dir.Load(binaryDirectory);
- size_t fileNum;
- for (fileNum = 0; fileNum < dir.GetNumberOfFiles(); ++fileNum)
- {
- if (strcmp(dir.GetFile(fileNum),".") &&
- strcmp(dir.GetFile(fileNum),".."))
- {
- std::string fullPath = binaryDirectory;
- fullPath += "/";
- fullPath += dir.GetFile(fileNum);
- cmSystemTools::RemoveFile(fullPath.c_str());
- }
- }
- }
-
- return res;
- }
- // cmExecutableCommand
- bool cmTryCompileCommand::InitialPass(std::vector<std::string> const& argv)
- {
- if(argv.size() < 3)
- {
- return false;
- }
- cmTryCompileCommand::CoreTryCompileCode(m_Makefile,argv,true);
-
- return true;
- }
-
|