2007-07-13 08:58:43 +04:00
|
|
|
/*=========================================================================
|
|
|
|
|
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
|
|
|
Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
|
|
|
|
Copyright (c) 2004 Alexander Neundorf neundorf@kde.org, All rights reserved.
|
|
|
|
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html 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 "cmExtraCodeBlocksGenerator.h"
|
|
|
|
#include "cmGlobalUnixMakefileGenerator3.h"
|
|
|
|
#include "cmLocalUnixMakefileGenerator3.h"
|
|
|
|
#include "cmMakefile.h"
|
|
|
|
#include "cmake.h"
|
|
|
|
#include "cmSourceFile.h"
|
|
|
|
#include "cmGeneratedFileStream.h"
|
|
|
|
#include "cmTarget.h"
|
2007-08-29 18:12:09 +04:00
|
|
|
#include "cmSystemTools.h"
|
2007-07-13 08:58:43 +04:00
|
|
|
|
|
|
|
#include <cmsys/SystemTools.hxx>
|
|
|
|
|
2007-08-28 23:13:01 +04:00
|
|
|
/* Some useful URLs:
|
|
|
|
Homepage:
|
|
|
|
http://www.codeblocks.org
|
|
|
|
|
|
|
|
File format docs:
|
|
|
|
http://wiki.codeblocks.org/index.php?title=File_formats_description
|
|
|
|
http://wiki.codeblocks.org/index.php?title=Workspace_file
|
|
|
|
http://wiki.codeblocks.org/index.php?title=Project_file
|
|
|
|
|
|
|
|
Discussion:
|
|
|
|
http://forums.codeblocks.org/index.php/topic,6789.0.html
|
|
|
|
*/
|
|
|
|
|
2007-07-13 08:58:43 +04:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void cmExtraCodeBlocksGenerator
|
|
|
|
::GetDocumentation(cmDocumentationEntry& entry, const char*) const
|
|
|
|
{
|
2007-10-22 20:49:09 +04:00
|
|
|
entry.Name = this->GetName();
|
|
|
|
entry.Brief = "Generates CodeBlocks project files.";
|
|
|
|
entry.Full =
|
2007-07-13 08:58:43 +04:00
|
|
|
"Project files for CodeBlocks will be created in the top directory "
|
|
|
|
"and in every subdirectory which features a CMakeLists.txt file "
|
|
|
|
"containing a PROJECT() call. "
|
2007-07-18 18:19:33 +04:00
|
|
|
"Additionally a hierarchy of makefiles is generated into the "
|
|
|
|
"build tree. The appropriate make program can build the project through "
|
|
|
|
"the default make target. A \"make install\" target is also provided.";
|
2007-07-13 08:58:43 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
cmExtraCodeBlocksGenerator::cmExtraCodeBlocksGenerator()
|
|
|
|
:cmExternalMakefileProjectGenerator()
|
|
|
|
{
|
2007-07-18 18:19:33 +04:00
|
|
|
#if defined(_WIN32)
|
|
|
|
this->SupportedGlobalGenerators.push_back("MinGW Makefiles");
|
2007-08-27 21:23:37 +04:00
|
|
|
// disable until somebody actually tests it:
|
|
|
|
// this->SupportedGlobalGenerators.push_back("NMake Makefiles");
|
2007-08-01 22:58:55 +04:00
|
|
|
// this->SupportedGlobalGenerators.push_back("MSYS Makefiles");
|
2007-07-18 18:19:33 +04:00
|
|
|
#endif
|
2007-07-13 08:58:43 +04:00
|
|
|
this->SupportedGlobalGenerators.push_back("Unix Makefiles");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void cmExtraCodeBlocksGenerator::SetGlobalGenerator(
|
|
|
|
cmGlobalGenerator* generator)
|
|
|
|
{
|
|
|
|
cmExternalMakefileProjectGenerator::SetGlobalGenerator(generator);
|
|
|
|
cmGlobalUnixMakefileGenerator3* mf = (cmGlobalUnixMakefileGenerator3*)
|
|
|
|
generator;
|
|
|
|
mf->SetToolSupportsColor(false);
|
|
|
|
mf->SetForceVerboseMakefiles(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmExtraCodeBlocksGenerator::Generate()
|
|
|
|
{
|
2007-08-06 21:24:42 +04:00
|
|
|
// for each sub project in the project create a codeblocks project
|
2007-07-13 08:58:43 +04:00
|
|
|
for (std::map<cmStdString, std::vector<cmLocalGenerator*> >::const_iterator
|
|
|
|
it = this->GlobalGenerator->GetProjectMap().begin();
|
|
|
|
it!= this->GlobalGenerator->GetProjectMap().end();
|
|
|
|
++it)
|
|
|
|
{
|
|
|
|
// create a project file
|
|
|
|
this->CreateProjectFile(it->second);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* create the project file, if it already exists, merge it with the
|
|
|
|
existing one, otherwise create a new one */
|
2007-07-20 16:36:16 +04:00
|
|
|
void cmExtraCodeBlocksGenerator::CreateProjectFile(
|
|
|
|
const std::vector<cmLocalGenerator*>& lgs)
|
2007-07-13 08:58:43 +04:00
|
|
|
{
|
|
|
|
const cmMakefile* mf=lgs[0]->GetMakefile();
|
|
|
|
std::string outputDir=mf->GetStartOutputDirectory();
|
|
|
|
std::string projectDir=mf->GetHomeDirectory();
|
|
|
|
std::string projectName=mf->GetProjectName();
|
|
|
|
|
|
|
|
std::string filename=outputDir+"/";
|
|
|
|
filename+=projectName+".cbp";
|
|
|
|
std::string sessionFilename=outputDir+"/";
|
|
|
|
sessionFilename+=projectName+".layout";
|
|
|
|
|
|
|
|
/* if (cmSystemTools::FileExists(filename.c_str()))
|
|
|
|
{
|
|
|
|
this->MergeProjectFiles(outputDir, projectDir, filename,
|
|
|
|
cmakeFilePattern, sessionFilename);
|
|
|
|
}
|
|
|
|
else */
|
|
|
|
{
|
|
|
|
this->CreateNewProjectFile(lgs, filename);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void cmExtraCodeBlocksGenerator
|
|
|
|
::CreateNewProjectFile(const std::vector<cmLocalGenerator*>& lgs,
|
|
|
|
const std::string& filename)
|
|
|
|
{
|
|
|
|
const cmMakefile* mf=lgs[0]->GetMakefile();
|
|
|
|
cmGeneratedFileStream fout(filename.c_str());
|
|
|
|
if(!fout)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2007-08-29 18:12:09 +04:00
|
|
|
// figure out the compiler
|
|
|
|
std::string compiler = this->GetCBCompilerId(mf);
|
2007-07-13 08:58:43 +04:00
|
|
|
std::string make = mf->GetRequiredDefinition("CMAKE_MAKE_PROGRAM");
|
|
|
|
|
|
|
|
fout<<"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\" ?>\n"
|
|
|
|
"<CodeBlocks_project_file>\n"
|
|
|
|
" <FileVersion major=\"1\" minor=\"6\" />\n"
|
2007-08-29 18:12:09 +04:00
|
|
|
" <Project>\n"
|
|
|
|
" <Option title=\"" << mf->GetProjectName()<<"\" />\n"
|
2007-07-13 08:58:43 +04:00
|
|
|
" <Option makefile_is_custom=\"1\" />\n"
|
2007-08-29 18:12:09 +04:00
|
|
|
" <Option compiler=\"" << compiler << "\" />\n"
|
2007-07-13 08:58:43 +04:00
|
|
|
" <Build>\n";
|
|
|
|
|
|
|
|
bool installTargetCreated = false;
|
2007-11-25 14:21:38 +03:00
|
|
|
bool installStripTargetCreated = false;
|
2007-07-13 08:58:43 +04:00
|
|
|
bool testTargetCreated = false;
|
2007-11-25 14:21:38 +03:00
|
|
|
bool experimentalTargetCreated = false;
|
|
|
|
bool nightlyTargetCreated = false;
|
2007-07-13 08:58:43 +04:00
|
|
|
bool packageTargetCreated = false;
|
2007-11-25 14:21:38 +03:00
|
|
|
bool packageSourceTargetCreated = false;
|
|
|
|
bool rebuildCacheTargetCreated = false;
|
2007-11-25 15:45:18 +03:00
|
|
|
|
|
|
|
this->AppendTarget(fout, "all", 0, make.c_str(), mf, compiler.c_str());
|
|
|
|
|
|
|
|
// add all executable and library targets and some of the GLOBAL
|
|
|
|
// and UTILITY targets
|
2007-07-13 08:58:43 +04:00
|
|
|
for (std::vector<cmLocalGenerator*>::const_iterator lg=lgs.begin();
|
|
|
|
lg!=lgs.end(); lg++)
|
|
|
|
{
|
|
|
|
cmMakefile* makefile=(*lg)->GetMakefile();
|
|
|
|
cmTargets& targets=makefile->GetTargets();
|
|
|
|
for (cmTargets::iterator ti = targets.begin();
|
|
|
|
ti != targets.end(); ti++)
|
|
|
|
{
|
|
|
|
switch(ti->second.GetType())
|
|
|
|
{
|
2007-11-25 15:45:18 +03:00
|
|
|
case cmTarget::UTILITY:
|
2007-07-13 08:58:43 +04:00
|
|
|
case cmTarget::GLOBAL_TARGET:
|
2007-11-25 15:45:18 +03:00
|
|
|
// only add these targets once
|
|
|
|
if ((ti->first=="install") && (installTargetCreated==false))
|
2007-11-25 14:21:38 +03:00
|
|
|
{
|
2007-07-13 08:58:43 +04:00
|
|
|
installTargetCreated=true;
|
2007-11-25 14:21:38 +03:00
|
|
|
}
|
|
|
|
else if ((ti->first=="install/strip")
|
|
|
|
&& (installStripTargetCreated==false))
|
|
|
|
{
|
|
|
|
installStripTargetCreated=true;
|
|
|
|
}
|
2007-07-13 08:58:43 +04:00
|
|
|
else if ((ti->first=="test") && (testTargetCreated==false))
|
2007-11-25 14:21:38 +03:00
|
|
|
{
|
2007-07-13 08:58:43 +04:00
|
|
|
testTargetCreated=true;
|
2007-11-25 14:21:38 +03:00
|
|
|
}
|
|
|
|
else if ((ti->first=="Experimental")
|
|
|
|
&& (experimentalTargetCreated==false))
|
|
|
|
{
|
|
|
|
experimentalTargetCreated=true;
|
|
|
|
}
|
|
|
|
else if ((ti->first=="Nightly") && (nightlyTargetCreated==false))
|
|
|
|
{
|
|
|
|
nightlyTargetCreated=true;
|
|
|
|
}
|
|
|
|
else if ((ti->first=="package") && (packageTargetCreated==false))
|
|
|
|
{
|
|
|
|
packageTargetCreated=true;
|
|
|
|
}
|
|
|
|
else if ((ti->first=="package_source")
|
|
|
|
&& (packageSourceTargetCreated==false))
|
|
|
|
{
|
|
|
|
packageSourceTargetCreated=true;
|
|
|
|
}
|
|
|
|
else if ((ti->first=="rebuild_cache")
|
|
|
|
&& (rebuildCacheTargetCreated==false))
|
|
|
|
{
|
|
|
|
rebuildCacheTargetCreated=true;
|
|
|
|
}
|
2007-07-13 08:58:43 +04:00
|
|
|
else
|
2007-11-25 14:21:38 +03:00
|
|
|
{
|
2007-07-13 08:58:43 +04:00
|
|
|
break;
|
2007-11-25 14:21:38 +03:00
|
|
|
}
|
2007-11-25 15:45:18 +03:00
|
|
|
this->AppendTarget(fout, ti->first.c_str(), 0,
|
|
|
|
make.c_str(), makefile, compiler.c_str());
|
|
|
|
break;
|
2007-07-13 08:58:43 +04:00
|
|
|
case cmTarget::EXECUTABLE:
|
|
|
|
case cmTarget::STATIC_LIBRARY:
|
|
|
|
case cmTarget::SHARED_LIBRARY:
|
|
|
|
case cmTarget::MODULE_LIBRARY:
|
2007-08-29 18:12:09 +04:00
|
|
|
{
|
2007-11-25 15:45:18 +03:00
|
|
|
this->AppendTarget(fout, ti->first.c_str(), &ti->second,
|
|
|
|
make.c_str(), makefile, compiler.c_str());
|
|
|
|
std::string fastTarget = ti->first;
|
|
|
|
fastTarget += "/fast";
|
|
|
|
this->AppendTarget(fout, fastTarget.c_str(), &ti->second,
|
|
|
|
make.c_str(), makefile, compiler.c_str());
|
2007-08-29 18:12:09 +04:00
|
|
|
}
|
2007-07-13 08:58:43 +04:00
|
|
|
break;
|
2007-11-25 13:26:58 +03:00
|
|
|
// ignore these:
|
|
|
|
case cmTarget::INSTALL_FILES:
|
|
|
|
case cmTarget::INSTALL_PROGRAMS:
|
|
|
|
case cmTarget::INSTALL_DIRECTORY:
|
2007-07-13 08:58:43 +04:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fout<<" </Build>\n";
|
|
|
|
|
2007-08-29 18:12:09 +04:00
|
|
|
|
2007-11-25 13:26:58 +03:00
|
|
|
// Collect all used source files in the project
|
2007-07-13 08:58:43 +04:00
|
|
|
std::map<std::string, std::string> sourceFiles;
|
|
|
|
for (std::vector<cmLocalGenerator*>::const_iterator lg=lgs.begin();
|
|
|
|
lg!=lgs.end(); lg++)
|
2007-08-29 18:12:09 +04:00
|
|
|
{
|
2007-07-13 08:58:43 +04:00
|
|
|
cmMakefile* makefile=(*lg)->GetMakefile();
|
|
|
|
cmTargets& targets=makefile->GetTargets();
|
|
|
|
for (cmTargets::iterator ti = targets.begin();
|
|
|
|
ti != targets.end(); ti++)
|
|
|
|
{
|
2007-08-29 18:12:09 +04:00
|
|
|
switch(ti->second.GetType())
|
|
|
|
{
|
2007-07-13 08:58:43 +04:00
|
|
|
case cmTarget::EXECUTABLE:
|
|
|
|
case cmTarget::STATIC_LIBRARY:
|
|
|
|
case cmTarget::SHARED_LIBRARY:
|
|
|
|
case cmTarget::MODULE_LIBRARY:
|
2007-08-29 18:12:09 +04:00
|
|
|
{
|
2007-07-20 16:36:16 +04:00
|
|
|
const std::vector<cmSourceFile*>&sources=ti->second.GetSourceFiles();
|
2007-07-13 08:58:43 +04:00
|
|
|
for (std::vector<cmSourceFile*>::const_iterator si=sources.begin();
|
|
|
|
si!=sources.end(); si++)
|
2007-08-29 18:12:09 +04:00
|
|
|
{
|
2007-07-13 08:58:43 +04:00
|
|
|
sourceFiles[(*si)->GetFullPath()] = ti->first;
|
2007-08-29 18:12:09 +04:00
|
|
|
}
|
2007-07-13 08:58:43 +04:00
|
|
|
}
|
2007-08-29 18:12:09 +04:00
|
|
|
default: // intended fallthrough
|
2007-07-13 08:58:43 +04:00
|
|
|
break;
|
2007-08-29 18:12:09 +04:00
|
|
|
}
|
2007-07-13 08:58:43 +04:00
|
|
|
}
|
|
|
|
}
|
2007-08-29 18:12:09 +04:00
|
|
|
|
2007-11-25 13:26:58 +03:00
|
|
|
// insert all used source files in the CodeBlocks project
|
2007-07-20 16:36:16 +04:00
|
|
|
for (std::map<std::string, std::string>::const_iterator
|
|
|
|
sit=sourceFiles.begin();
|
2007-07-13 08:58:43 +04:00
|
|
|
sit!=sourceFiles.end();
|
|
|
|
++sit)
|
|
|
|
{
|
2007-08-29 18:12:09 +04:00
|
|
|
fout<<" <Unit filename=\""<<sit->first <<"\">\n"
|
|
|
|
" </Unit>\n";
|
2007-07-13 08:58:43 +04:00
|
|
|
}
|
2007-08-29 18:12:09 +04:00
|
|
|
|
2007-07-13 08:58:43 +04:00
|
|
|
fout<<" </Project>\n"
|
|
|
|
"</CodeBlocks_project_file>\n";
|
2007-08-29 18:12:09 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-11-25 15:45:18 +03:00
|
|
|
// Generate the xml code for one target.
|
|
|
|
void cmExtraCodeBlocksGenerator::AppendTarget(cmGeneratedFileStream& fout,
|
|
|
|
const char* targetName,
|
|
|
|
cmTarget* target,
|
|
|
|
const char* make,
|
|
|
|
const cmMakefile* makefile,
|
|
|
|
const char* compiler)
|
|
|
|
{
|
|
|
|
std::string makefileName = makefile->GetStartOutputDirectory();
|
|
|
|
makefileName += "/Makefile";
|
|
|
|
makefileName = cmSystemTools::ConvertToOutputPath(makefileName.c_str());
|
|
|
|
|
|
|
|
fout<<" <Target title=\"" << targetName << "\">\n";
|
|
|
|
if (target!=0)
|
|
|
|
{
|
|
|
|
int cbTargetType = this->GetCBTargetType(target);
|
|
|
|
fout<<" <Option output=\"" << target->GetLocation(0)
|
|
|
|
<< "\" prefix_auto=\"0\" extension_auto=\"0\" />\n"
|
|
|
|
" <Option working_dir=\""
|
|
|
|
<< makefile->GetStartOutputDirectory() << "\" />\n"
|
|
|
|
" <Option object_output=\"./\" />\n"
|
|
|
|
" <Option type=\"" << cbTargetType << "\" />\n"
|
|
|
|
" <Option compiler=\"" << compiler << "\" />\n"
|
|
|
|
" <Compiler>\n";
|
|
|
|
// the include directories for this target
|
|
|
|
const std::vector<std::string>& incDirs =
|
|
|
|
target->GetMakefile()->GetIncludeDirectories();
|
|
|
|
for(std::vector<std::string>::const_iterator dirIt=incDirs.begin();
|
|
|
|
dirIt != incDirs.end();
|
|
|
|
++dirIt)
|
|
|
|
{
|
|
|
|
fout <<" <Add directory=\"" << dirIt->c_str() << "\" />\n";
|
|
|
|
}
|
|
|
|
fout<<" </Compiler>\n";
|
|
|
|
}
|
|
|
|
else // e.g. all and the GLOBAL and UTILITY targets
|
|
|
|
{
|
|
|
|
fout<<" <Option working_dir=\""
|
|
|
|
<< makefile->GetStartOutputDirectory() << "\" />\n"
|
|
|
|
<<" <Option type=\"" << 4 << "\" />\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
fout<<" <MakeCommands>\n"
|
|
|
|
" <Build command=\""
|
|
|
|
<< this->BuildMakeCommand(make, makefileName.c_str(), targetName)
|
|
|
|
<< "\" />\n"
|
|
|
|
" <CompileFile command=\""
|
|
|
|
<< this->BuildMakeCommand(make, makefileName.c_str(),""$file"")
|
|
|
|
<< "\" />\n"
|
|
|
|
" <Clean command=\""
|
|
|
|
<< this->BuildMakeCommand(make, makefileName.c_str(), "clean")
|
|
|
|
<< "\" />\n"
|
|
|
|
" <DistClean command=\""
|
|
|
|
<< this->BuildMakeCommand(make, makefileName.c_str(), "clean")
|
|
|
|
<< "\" />\n"
|
|
|
|
" </MakeCommands>\n"
|
|
|
|
" </Target>\n";
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-11-25 13:26:58 +03:00
|
|
|
// Translate the cmake compiler id into the CodeBlocks compiler id
|
2007-08-29 18:12:09 +04:00
|
|
|
std::string cmExtraCodeBlocksGenerator::GetCBCompilerId(const cmMakefile* mf)
|
|
|
|
{
|
|
|
|
// figure out which language to use
|
|
|
|
// for now care only for C and C++
|
|
|
|
std::string compilerIdVar = "CMAKE_CXX_COMPILER_ID";
|
2007-08-31 21:42:21 +04:00
|
|
|
if (this->GlobalGenerator->GetLanguageEnabled("CXX") == false)
|
2007-08-29 18:12:09 +04:00
|
|
|
{
|
|
|
|
compilerIdVar = "CMAKE_C_COMPILER_ID";
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string hostSystemName = mf->GetSafeDefinition("CMAKE_HOST_SYSTEM_NAME");
|
|
|
|
std::string systemName = mf->GetSafeDefinition("CMAKE_SYSTEM_NAME");
|
|
|
|
std::string compilerId = mf->GetRequiredDefinition(compilerIdVar.c_str());
|
|
|
|
std::string compiler = "gcc";
|
|
|
|
if (compilerId == "MSVC")
|
|
|
|
{
|
|
|
|
compiler = "msvc";
|
|
|
|
}
|
|
|
|
else if (compilerId == "Borland")
|
|
|
|
{
|
|
|
|
compiler = "bcc";
|
|
|
|
}
|
|
|
|
else if (compilerId == "SDCC")
|
|
|
|
{
|
|
|
|
compiler = "sdcc";
|
|
|
|
}
|
|
|
|
else if (compilerId == "Intel")
|
|
|
|
{
|
|
|
|
compiler = "icc";
|
|
|
|
}
|
|
|
|
else if (compilerId == "Watcom")
|
|
|
|
{
|
|
|
|
compiler = "ow";
|
|
|
|
}
|
|
|
|
else if (compilerId == "GNU")
|
|
|
|
{
|
2007-08-29 23:19:15 +04:00
|
|
|
compiler = "gcc";
|
2007-08-29 18:12:09 +04:00
|
|
|
}
|
|
|
|
return compiler;
|
|
|
|
}
|
|
|
|
|
2007-07-13 08:58:43 +04:00
|
|
|
|
2007-11-25 13:26:58 +03:00
|
|
|
// Translate the cmake target type into the CodeBlocks target type id
|
2007-08-29 18:12:09 +04:00
|
|
|
int cmExtraCodeBlocksGenerator::GetCBTargetType(cmTarget* target)
|
|
|
|
{
|
|
|
|
if ( target->GetType()==cmTarget::EXECUTABLE)
|
|
|
|
{
|
|
|
|
if ((target->GetPropertyAsBool("WIN32_EXECUTABLE"))
|
|
|
|
|| (target->GetPropertyAsBool("MACOSX_BUNDLE")))
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if ( target->GetType()==cmTarget::STATIC_LIBRARY)
|
|
|
|
{
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
else if ((target->GetType()==cmTarget::SHARED_LIBRARY)
|
|
|
|
|| (target->GetType()==cmTarget::MODULE_LIBRARY))
|
|
|
|
{
|
|
|
|
return 3;
|
|
|
|
}
|
|
|
|
return 4;
|
2007-07-13 08:58:43 +04:00
|
|
|
}
|
|
|
|
|
2007-11-25 13:26:58 +03:00
|
|
|
// Create the command line for building the given target using the selected
|
|
|
|
// make
|
2007-08-29 18:12:09 +04:00
|
|
|
std::string cmExtraCodeBlocksGenerator::BuildMakeCommand(
|
|
|
|
const std::string& make, const char* makefile, const char* target)
|
|
|
|
{
|
|
|
|
std::string command = make;
|
|
|
|
if (strcmp(this->GlobalGenerator->GetName(), "NMake Makefiles")==0)
|
|
|
|
{
|
2007-08-29 23:19:15 +04:00
|
|
|
command += " /NOLOGO /f "";
|
2007-08-29 18:12:09 +04:00
|
|
|
command += makefile;
|
2007-08-29 23:19:15 +04:00
|
|
|
command += "" ";
|
2007-08-29 18:12:09 +04:00
|
|
|
command += target;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2007-08-29 23:19:15 +04:00
|
|
|
command += " -f "";
|
2007-08-29 18:12:09 +04:00
|
|
|
command += makefile;
|
2007-08-29 23:19:15 +04:00
|
|
|
command += "" ";
|
2007-08-29 18:12:09 +04:00
|
|
|
command += target;
|
|
|
|
}
|
|
|
|
return command;
|
|
|
|
}
|