2016-09-27 15:01:08 -04:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2004-10-11 11:32:14 -04:00
|
|
|
#ifndef cmGlobalKdevelopGenerator_h
|
|
|
|
#define cmGlobalKdevelopGenerator_h
|
|
|
|
|
2016-09-01 20:59:28 +02:00
|
|
|
#include <cmConfigure.h>
|
|
|
|
|
2007-06-08 11:57:16 -04:00
|
|
|
#include "cmExternalMakefileProjectGenerator.h"
|
|
|
|
|
2016-09-01 20:59:28 +02:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
2007-06-08 11:57:16 -04:00
|
|
|
class cmLocalGenerator;
|
2004-10-11 11:32:14 -04:00
|
|
|
|
2005-02-09 23:22:06 -05:00
|
|
|
/** \class cmGlobalKdevelopGenerator
|
|
|
|
* \brief Write Unix Makefiles accompanied by KDevelop3 project files.
|
2004-10-11 11:32:14 -04:00
|
|
|
*
|
2005-06-09 11:39:12 -04:00
|
|
|
* cmGlobalKdevelopGenerator produces a project file for KDevelop 3 (KDevelop
|
|
|
|
* > 3.1.1). The project is based on the "Custom Makefile based C/C++"
|
|
|
|
* project of KDevelop. Such a project consists of Unix Makefiles in the
|
2011-03-20 14:22:39 +01:00
|
|
|
* build directory together with a \<your_project\>.kdevelop project file,
|
|
|
|
* which contains the project settings and a \<your_project\>.kdevelop.filelist
|
2005-06-09 11:39:12 -04:00
|
|
|
* file, which lists the source files relative to the kdevelop project
|
|
|
|
* directory. The kdevelop project directory is the base source directory.
|
2004-10-11 11:32:14 -04:00
|
|
|
*/
|
2007-06-08 11:57:16 -04:00
|
|
|
class cmGlobalKdevelopGenerator : public cmExternalMakefileProjectGenerator
|
2004-10-11 11:32:14 -04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
cmGlobalKdevelopGenerator();
|
|
|
|
|
2016-07-20 18:28:39 +02:00
|
|
|
static cmExternalMakefileProjectGeneratorFactory* GetFactory();
|
2005-02-09 23:22:06 -05:00
|
|
|
|
2016-06-27 21:25:27 +02:00
|
|
|
void Generate() CM_OVERRIDE;
|
2016-05-16 10:34:04 -04:00
|
|
|
|
2007-06-08 11:57:16 -04:00
|
|
|
private:
|
2005-02-09 23:22:06 -05:00
|
|
|
/*** Create the foo.kdevelop.filelist file, return false if it doesn't
|
2011-10-13 19:51:18 +02:00
|
|
|
succeed. If the file already exists the contents will be merged.
|
2005-02-09 23:22:06 -05:00
|
|
|
*/
|
2007-06-08 11:57:16 -04:00
|
|
|
bool CreateFilelistFile(const std::vector<cmLocalGenerator*>& lgs,
|
2011-10-13 19:51:18 +02:00
|
|
|
const std::string& outputDir,
|
2005-02-09 23:22:06 -05:00
|
|
|
const std::string& projectDirIn,
|
|
|
|
const std::string& projectname,
|
2006-02-18 11:03:36 -05:00
|
|
|
std::string& cmakeFilePattern,
|
|
|
|
std::string& fileToOpen);
|
2005-02-09 23:22:06 -05:00
|
|
|
|
|
|
|
/** Create the foo.kdevelop file. This one calls MergeProjectFiles()
|
|
|
|
if it already exists, otherwise createNewProjectFile() The project
|
|
|
|
files will be created in \a outputDir (in the build tree), the
|
|
|
|
kdevelop project dir will be set to \a projectDir (in the source
|
|
|
|
tree). \a cmakeFilePattern consists of a lists of all cmake
|
|
|
|
listfiles used by this CMakeLists.txt */
|
|
|
|
void CreateProjectFile(const std::string& outputDir,
|
|
|
|
const std::string& projectDir,
|
2011-10-13 19:51:18 +02:00
|
|
|
const std::string& projectname,
|
|
|
|
const std::string& executable,
|
2006-02-18 11:03:36 -05:00
|
|
|
const std::string& cmakeFilePattern,
|
|
|
|
const std::string& fileToOpen);
|
2005-02-09 23:22:06 -05:00
|
|
|
|
|
|
|
/*** Reads the old foo.kdevelop line by line and only replaces the
|
2011-10-13 19:51:18 +02:00
|
|
|
"important" lines
|
2005-02-09 23:22:06 -05:00
|
|
|
*/
|
|
|
|
void MergeProjectFiles(const std::string& outputDir,
|
|
|
|
const std::string& projectDir,
|
|
|
|
const std::string& filename,
|
|
|
|
const std::string& executable,
|
2006-02-18 11:03:36 -05:00
|
|
|
const std::string& cmakeFilePattern,
|
|
|
|
const std::string& fileToOpen,
|
|
|
|
const std::string& sessionFilename);
|
|
|
|
///! Creates a new foo.kdevelop and a new foo.kdevses file
|
2011-10-13 19:51:18 +02:00
|
|
|
void CreateNewProjectFile(const std::string& outputDir,
|
|
|
|
const std::string& projectDir,
|
2005-02-09 23:22:06 -05:00
|
|
|
const std::string& filename,
|
2011-10-13 19:51:18 +02:00
|
|
|
const std::string& executable,
|
2006-02-18 11:03:36 -05:00
|
|
|
const std::string& cmakeFilePattern,
|
|
|
|
const std::string& fileToOpen,
|
|
|
|
const std::string& sessionFilename);
|
2005-02-09 23:22:06 -05:00
|
|
|
|
2007-08-26 19:27:33 -04:00
|
|
|
std::vector<std::string> Blacklist;
|
2004-10-11 11:32:14 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|