2009-09-28 11:43:28 -04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2002-09-04 15:23:56 -04:00
|
|
|
|
2009-09-28 11:43:28 -04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2002-09-04 15:23:56 -04:00
|
|
|
|
2009-09-28 11:43:28 -04:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
2002-09-04 15:23:56 -04:00
|
|
|
#ifndef cmLocalVisualStudio6Generator_h
|
|
|
|
#define cmLocalVisualStudio6Generator_h
|
|
|
|
|
2006-07-11 13:23:02 -04:00
|
|
|
#include "cmLocalVisualStudioGenerator.h"
|
2002-09-04 15:23:56 -04:00
|
|
|
|
|
|
|
class cmTarget;
|
|
|
|
class cmSourceFile;
|
2003-06-03 10:30:23 -04:00
|
|
|
class cmSourceGroup;
|
|
|
|
class cmCustomCommand;
|
2002-09-04 15:23:56 -04:00
|
|
|
|
|
|
|
/** \class cmLocalVisualStudio6Generator
|
|
|
|
* \brief Write a LocalUnix makefiles.
|
|
|
|
*
|
|
|
|
* cmLocalVisualStudio6Generator produces a LocalUnix makefile from its
|
2006-03-15 11:02:08 -05:00
|
|
|
* member this->Makefile.
|
2002-09-04 15:23:56 -04:00
|
|
|
*/
|
2006-07-11 13:23:02 -04:00
|
|
|
class cmLocalVisualStudio6Generator : public cmLocalVisualStudioGenerator
|
2002-09-04 15:23:56 -04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
///! Set cache only and recurse to false by default.
|
|
|
|
cmLocalVisualStudio6Generator();
|
|
|
|
|
|
|
|
virtual ~cmLocalVisualStudio6Generator();
|
2007-05-09 14:41:38 -04:00
|
|
|
|
|
|
|
virtual void AddHelperCommands();
|
2012-03-28 13:49:01 -04:00
|
|
|
virtual void AddCMakeListsRules();
|
2007-05-09 14:41:38 -04:00
|
|
|
|
2002-09-04 15:23:56 -04:00
|
|
|
/**
|
2005-03-18 10:41:41 -05:00
|
|
|
* Generate the makefile for this directory.
|
2002-09-04 15:23:56 -04:00
|
|
|
*/
|
2005-03-18 10:41:41 -05:00
|
|
|
virtual void Generate();
|
2002-09-04 15:23:56 -04:00
|
|
|
|
|
|
|
void OutputDSPFile();
|
|
|
|
|
|
|
|
enum BuildType {STATIC_LIBRARY, DLL, EXECUTABLE, WIN32_EXECUTABLE, UTILITY};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Specify the type of the build: static, dll, or executable.
|
|
|
|
*/
|
2005-06-22 09:06:46 -04:00
|
|
|
void SetBuildType(BuildType, const char* libName, cmTarget&);
|
2002-09-04 15:23:56 -04:00
|
|
|
|
2007-08-01 15:25:40 -04:00
|
|
|
virtual std::string GetTargetDirectory(cmTarget const& target) const;
|
2012-03-07 14:04:33 -05:00
|
|
|
virtual std::string ComputeLongestObjectDirectory(cmTarget&) const;
|
2002-09-04 15:23:56 -04:00
|
|
|
private:
|
2006-03-15 11:02:08 -05:00
|
|
|
std::string DSPHeaderTemplate;
|
|
|
|
std::string DSPFooterTemplate;
|
2009-09-30 16:03:09 -04:00
|
|
|
|
2002-09-04 15:23:56 -04:00
|
|
|
void CreateSingleDSP(const char *lname, cmTarget &tgt);
|
|
|
|
void WriteDSPFile(std::ostream& fout, const char *libName,
|
|
|
|
cmTarget &tgt);
|
|
|
|
void WriteDSPBeginGroup(std::ostream& fout,
|
2002-10-23 18:03:27 -04:00
|
|
|
const char* group,
|
|
|
|
const char* filter);
|
2002-09-04 15:23:56 -04:00
|
|
|
void WriteDSPEndGroup(std::ostream& fout);
|
|
|
|
|
|
|
|
void WriteDSPHeader(std::ostream& fout, const char *libName,
|
2005-06-22 09:06:46 -04:00
|
|
|
cmTarget &tgt, std::vector<cmSourceGroup> &sgs);
|
2002-09-04 15:23:56 -04:00
|
|
|
|
|
|
|
void WriteDSPFooter(std::ostream& fout);
|
2006-02-09 18:42:58 -05:00
|
|
|
void AddDSPBuildRule(cmTarget& tgt);
|
2002-09-04 15:23:56 -04:00
|
|
|
void WriteCustomRule(std::ostream& fout,
|
|
|
|
const char* source,
|
2007-05-09 08:25:45 -04:00
|
|
|
const cmCustomCommand& command,
|
2002-09-04 15:23:56 -04:00
|
|
|
const char* flags);
|
2005-04-26 11:08:18 -04:00
|
|
|
void AddUtilityCommandHack(cmTarget& target, int count,
|
|
|
|
std::vector<std::string>& depends,
|
2006-02-08 12:01:21 -05:00
|
|
|
const cmCustomCommand& origCommand);
|
2008-01-29 17:30:34 -05:00
|
|
|
void WriteGroup(const cmSourceGroup *sg, cmTarget& target,
|
2005-07-13 11:21:30 -04:00
|
|
|
std::ostream &fout, const char *libName);
|
2009-06-16 11:57:18 -04:00
|
|
|
class EventWriter;
|
|
|
|
friend class EventWriter;
|
2009-10-28 12:19:15 -04:00
|
|
|
cmsys::auto_ptr<cmCustomCommand>
|
|
|
|
MaybeCreateOutputDir(cmTarget& target, const char* config);
|
2005-06-22 09:06:46 -04:00
|
|
|
std::string CreateTargetRules(cmTarget &target,
|
2007-05-09 08:25:45 -04:00
|
|
|
const char* configName,
|
2002-09-04 15:23:56 -04:00
|
|
|
const char *libName);
|
2006-04-19 10:34:41 -04:00
|
|
|
void ComputeLinkOptions(cmTarget& target, const char* configName,
|
|
|
|
const std::string extraOptions,
|
|
|
|
std::string& options);
|
2012-03-12 14:40:58 -04:00
|
|
|
void OutputObjects(cmTarget& target, const char* tool,
|
|
|
|
std::string& options);
|
2011-11-05 16:17:49 +01:00
|
|
|
std::string GetTargetIncludeOptions(cmTarget &target);
|
2006-03-15 11:02:08 -05:00
|
|
|
std::vector<std::string> Configurations;
|
2007-08-10 13:02:59 -04:00
|
|
|
|
|
|
|
std::string GetConfigName(std::string const& configuration) const;
|
2008-01-14 09:20:58 -05:00
|
|
|
|
|
|
|
// Special definition check for VS6.
|
|
|
|
virtual bool CheckDefinition(std::string const& define) const;
|
2002-09-04 15:23:56 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|