Skip to content

Commit

Permalink
Further cleanups related to the cmake build system
Browse files Browse the repository at this point in the history
  • Loading branch information
Dimitri van Heesch committed Jun 18, 2015
1 parent f415b62 commit ba9bb02
Show file tree
Hide file tree
Showing 25 changed files with 7 additions and 10,109 deletions.
15 changes: 0 additions & 15 deletions .gitignore
Expand Up @@ -11,22 +11,7 @@
*.idb
*.pdb


/doc/translator_report.txt
/doc/config.doc
/doc/language.doc

/doxygen_docs
/doxygen.tag

/examples/*/html
/html
/latex
/rtf
/xml
/man
/docbook
/perlmod
!/templates/html
!/templates/latex

2 changes: 1 addition & 1 deletion CMakeLists.txt
Expand Up @@ -11,7 +11,7 @@
# Documents produced by Doxygen are derivative works derived from the
# input used in their production; they are not affected by this license.

cmake_minimum_required(VERSION 3.0)
cmake_minimum_required(VERSION 2.8.12)
project(doxygen)

option(build_wizard "Build the GUI frontend for doxygen." OFF)
Expand Down
32 changes: 0 additions & 32 deletions PLATFORMS

This file was deleted.

2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
1.8.9.1
1.8.10
9 changes: 5 additions & 4 deletions addon/doxyapp/doxyapp.cpp
Expand Up @@ -26,7 +26,8 @@
*/

#include <stdlib.h>
#include <unistd.h>
#include <qfile.h>
#include <qdir.h>
#include "doxygen.h"
#include "outputgen.h"
#include "parserintf.h"
Expand Down Expand Up @@ -308,10 +309,10 @@ int main(int argc,char **argv)
}

// remove temporary files
if (!Doxygen::objDBFileName.isEmpty()) unlink(Doxygen::objDBFileName);
if (!Doxygen::entryDBFileName.isEmpty()) unlink(Doxygen::entryDBFileName);
if (!Doxygen::objDBFileName.isEmpty()) QFile::remove(Doxygen::objDBFileName);
if (!Doxygen::entryDBFileName.isEmpty()) QFile::remove(Doxygen::entryDBFileName);
// clean up after us
rmdir("/tmp/doxygen");
QDir().rmdir("/tmp/doxygen");

while (1)
{
Expand Down
7 changes: 0 additions & 7 deletions winbuild/.gitignore
@@ -1,7 +0,0 @@
Debug/
Debug64/
Release/
Release64/
Doxygen.ncb
Doxygen.suo
*.user
30 changes: 0 additions & 30 deletions winbuild/Config.rules

This file was deleted.

71 changes: 0 additions & 71 deletions winbuild/Doxygen.sln

This file was deleted.

0 comments on commit ba9bb02

Please sign in to comment.