summaryrefslogtreecommitdiffstats
path: root/CMakeLists.txt
Commit message (Collapse)AuthorAgeFilesLines
* Refactoring: move qcstring and remove qtoolsDimitri van Heesch2021-03-251-1/+0
|
* Refactoring: Move xml parser to a separate directoryDimitri van Heesch2021-02-061-0/+1
|
* Detect generateDS and recreate index.py/compound.py automaticallyDimitri van Heesch2021-02-031-0/+1
|
* Replace the C++ doxmlparser libary by a python based moduleDimitri van Heesch2021-02-021-1/+0
|
* Update CMakeLists.txtDaniel G2020-12-091-1/+2
| | | | | | Update CMakeLists.txt to allow cross compiling on Linux for Windows. Pass -DCMAKE_CXX_FLAGS="$(CXXFLAGS) -DCYGWIN=1" to cmake so right PRETTY_FUNC is used in markdown.cpp when -DWIN32 is set somewhere else. Pass -DCMAKE_EXE_LINKER_FLAGS="$(LDFLAGS) -Wl,--whole-archive -liconv -Wl,--no-whole-archive" (and make sure win-iconv is in library search path. https://github.com/win-iconv/win-iconv)
* Updated minimum MacOS requirements to version 10.14Dimitri van Heesch2020-10-051-1/+1
| | | | Only when use_libclang is enabled, because libclang needs it.
* Allow building doxygen as a subprojectAnonymous Maarten2020-09-161-7/+7
|
* Fix compiling with clang parser support and with Clang compiler, too (#7922)Deniz Bahadir2020-07-291-0/+3
| | | | | | | | | | | | | | | | | | | | | | * Fix compiling with clang parser support and with Clang compiler, too When compiling the code with the Clang compiler a new CMake option `use_libc++` is available which is enabled by default. It determines if the Clang compiler should use libc++ as its C++ standard library or uses the systems default (e.g. libstdc++ on Linux). Disabling that option might help when compiling with Clang and the option `use_libclang` is enabled but the associated library was not built with libc++ as its C++ standard library. Additionally, the doxygen executable that is created when CMake option `static_libclang` is enabled, no longer crashes. * Removing obsolete (and wrong) forcing of -std=c++11 for GCC The entire Doxygen project already requires the compiler to run in C++14 mode. That setting is applied globally in the top-most `CMakeLists.txt` file. Therefore, forcing GCC to run in C++11 mode in `src/CMakeLists.txt` is wrong and obsolete.
* Make a switch to choose between dynamic library to clang-cpp or static ↵Dimitri van Heesch2020-07-201-0/+1
| | | | linking against clangTooling
* Add options to enable various sanitizersDimitri van Heesch2020-06-131-0/+2
| | | | | | | | | New CMAKE options (default OFF): - SANITIZE_ADDRESS:BOOL=OFF - SANITIZE_LINK_STATIC:BOOL=OFF - SANITIZE_MEMORY:BOOL=OFF - SANITIZE_THREAD:BOOL=OFF - SANITIZE_UNDEFINED:BOOL=OFF
* Refactoring: Removed creation of MemberDef's for macro definitions from pre.lDimitri van Heesch2020-05-241-0/+2
|
* issue #7664 bigobj not found with MSYS Makefilesalbert-github2020-03-241-1/+2
| | | | MSYS compiles also with gcc and therefore should skip this code analogous to MinGW as well
* Fix C compiler warnings about C++ flags (#7636)Laurent Rineau2020-03-121-1/+1
| | | | | | | | | | | | | | | | * Fix C compiler warnings about C++ flags ``` cc1: warning: command line option ‘-Wnon-virtual-dtor’ is valid for C++/ObjC++ but not for C cc1: warning: command line option ‘-Woverloaded-virtual’ is valid for C++/ObjC++ but not for C ``` ... using the generator expression `$<COMPILE_LANGUAGE:CXX>`. * COMPILE_LANGUAGE is new in CMake 3.3 See https://cmake.org/cmake/help/v3.3/release/3.3.html * CMake 3.3 is required
* Enabled stricter compiler warnings and fixed all new warningsDimitri van Heesch2020-03-081-0/+1
|
* Merge branch 'master' into spellingDimitri van Heesch2019-12-231-0/+5
|\
| * Warning whit Windows compilation using NMakealbert-github2019-12-181-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | When using NMake Makefiles on windows we get messages like: ``` D:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Tools\MSVC\14.16.27023\include\vector(960): warning C4530: C++ exception handler used, but unwind semantics are not enabled. Specify /EHsc ``` From the help information of `cl`: ``` /EHs enable C++ EH (no SEH exceptions) /EHc extern "C" defaults to nothrow ``` Looking at the usage with the `msbuild / vsxproj` type builds (as done on appveyor), here the option `/EHsc` is used.
| * Adding JAVACC_FLAGS for javacc compilationalbert-github2019-12-121-0/+2
| | | | | | | | | | | | | | | | | | | | During transition to cmake build the, essential for debugging, flag possibility was not added. (Added analogous to LEX_FLAGS and YACC_Flags). Available debug options (according to old Makefile): `-debug_parser` `-debug_token_manager` `-debug_lookahead`
* | spelling: buffersJosh Soref2019-11-121-1/+1
|/
* Latest libclang needs C++14Eric Niebler2019-09-101-2/+2
|
* Spelling correctionalbert-github2019-09-031-1/+1
| | | | Spelling correction
* Generating doxygen's documentation in CHM formatalbert-github2019-08-111-1/+12
| | | | | | | | | | | | | | | Until now the chm format of the doxygen documentation was generated by a separate script, this is now integrated in the CMake procedure. - option -Dbuild_doc_chm to enable the possibility to generate the CHM documentation (only works for windows) - procedure is as follows - generate the base documentation for the CHM output - copy the documentation of the examples to the tree with the base CHM output (cannot use it from its default place due to the fact that in the next face the first page of the CHM file will be wrong - add the html, png, css and gif files of the examples to the so called hhp file (has to happen during runtime, hence a small python script, created inline so there is no extra file in the source tree) - create the resulting doxygen_manual.chm Some improvements during the process - the html files of the examples are added so that the full documentation of the examples is accessible and not just the top pages of the examples - keep the index terms of base chm file (mostly the commands and configuration parameters) - see to it that the doxygen logo is copied by doxygen and not by means of cmake
* Merge branch 'feature/bug_gitversion' of ↵Dimitri van Heesch2019-07-301-1/+2
|\ | | | | | | https://github.com/albert-github/doxygen into albert-github-feature/bug_gitversion
| * Show git version informationalbert-github2019-05-311-4/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The original version has as features: - getting the git version number for usage in doxygen - making the doxygen version number inclusion dependent on the VERSION file The disadvantage of the chosen methodology was that an extra correction step was necessary, by defining getter methods to retrieve the values this correction can be hidden. The information is coming from different sources: - the VERSION file - the git "repository and build system (when present) Furthermore there are a couple of places where the version information is used (a.o. doxygen and doxywizard executable, though the doxygenwizard was only done "half hearted") The handling of the VERSION file has been made in such a way that it is comparable with the generation of the git version changes. For a better abstraction the version handling is all done in a separate directory.
| * Show git version informationalbert-github2019-04-071-1/+5
| | | | | | | | | | | | | | | | Show the git version on designated places (currently version, help and Doxyfile difference). The implementation is based on the git_watcher.cmake (https://github.com/andrew-hardin/cmake-git-version-tracking). The information is useful to see which. master, version of doxygen is used for a build on systems where a lot of builds are make (Fossies.org) or very regular builds are made (CGAL) Furthermore the tracking of the VERSION file was not done (when changed the version.cpp was not updated), this is corrected as well.
* | Enable compiler extension to avoid build issuesDimitri van Heesch2019-07-291-1/+1
| |
* | Fixed two compilation issuesDimitri van Heesch2019-07-281-0/+5
| |
* | Option for 'input buffer overflow'albert-github2019-07-201-0/+2
| | | | | | | | Cmake option `-Denlarge_lex_buffers=<size>` to enlarge input and read buffers for source code lexers.
* | issue #7091 HEAD fails to build on macOS with stock `bison`albert-github2019-06-291-0/+3
| | | | | | | | | | | | | | | | Placed minimum `bison` requirement. Tested with bison version 2.7 so used this as minimum. Note: win_flex_bison uses a different external numbering. The e.g. the version 2.5.16 of win_flex_bison contains bison version 3.0.4.
* | issue #6880 mscgen links placed in the wrong place when using SVG outputDimitri van Heesch2019-06-231-0/+1
| |
* | Split off lodepng functionality in a separate libraryDimitri van Heesch2019-06-221-0/+1
|/
* Minimum required version for CMakealbert-github2019-01-151-1/+1
| | | | | The `env` command with `-E` is first supported with version 3.1 setting the minimum required version as such (Based on message: https://stackoverflow.com/questions/54194646/make-docs-fails-while-building-doxygen-v1-8-15-for-rhel-distros-for-s390x and CMake documentation: https://cmake.org/cmake/help/v2.8.12/cmake.html, https://cmake.org/cmake/help/v3.0/manual/cmake.1.html and https://cmake.org/cmake/help/v3.1/manual/cmake.1.html)
* sqlite3: require sqlite >= 3.9.0Travis A. Everett2018-10-171-1/+4
| | | | The generated schema is malformed in versions below 3.9.0.
* Bump minimal deployment target for OSX to 10.9 to avoid deprecation warning ↵Dimitri van Heesch2018-07-051-1/+1
| | | | while linking
* CMake: avoid if() around the whole contents of documentation CMakeLists.txtRolf Eike Beer2017-10-201-2/+5
|
* CMake: avoid if() around the whole contents of plugin CMakeLists.txtRolf Eike Beer2017-10-201-5/+1
| | | | Just don't call add_subdirectory() if the build flag is not set.
* CMake: remove CUSTOM_(LINK|INCLUDE)_DIRRolf Eike Beer2017-10-201-10/+0
| | | | | | | When some header or library is not found introduce a proper find_* call for it and use the results. Especially injecting additional link directories would just confuse the automatic library ordering done by CMake and is basically never the right solution for any link problem.
* CMake: remove needless variable expansionsRolf Eike Beer2017-10-201-14/+15
|
* Use hidden symbol visibility by defaultEmil Velikov2017-09-041-0/+7
| | | | | | | | | | Allows us to hide all the internal symbols from the final binary. Shaving some 10+% of its size. v2: use CMAKE_{LANG}_VISIBILITY_PRESET v3: add CMP0063 guard Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
* Fixes for cross platform build with new LLVM/CLANG versionDimitri van Heesch2017-08-201-1/+2
|
* Merge branch 'master' of https://github.com/dvj/doxygen into dvj-masterDimitri van Heesch2017-07-081-2/+7
|\
| * make use of clang compilation databaseDoug Johnston2017-04-061-2/+7
| | | | | | | | See: https://clang.llvm.org/docs/JSONCompilationDatabase.html
* | CMakeLists: Avoid MSVC iconv changes for MinGW buildsAdrian DC2017-07-071-5/+7
|/ | | | | Change-Id: Ibad47399f87511f6d8ef7c2238c932377777a333 Signed-off-by: Adrian DC <radian.dc@gmail.com>
* Merge pull request #425 from analizo/doxyparseDimitri van Heesch2017-02-191-0/+2
|\ | | | | new addon doxyparse, a source parsing engine
| * new addon doxyparse, a source parsing engineJoenio Costa2015-12-131-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | doxyparse parses source code and dumps the dependencies between the code elements. Today doxyparse is in use by Analizo* toolkit, a suite of source code analysis tools, aimed at being language-independent and extensible. * http://analizo.org Signed-off-by: Antonio Terceiro <terceiro@softwarelivre.org> Signed-off-by: João M. Miranda <joaomm88@gmail.com> Signed-off-by: Paulo Meirelles <paulo@softwarelivre.org> Signed-off-by: Vinicius Daros <vkdaros@mercurio.eclipse.ime.usp.br>
* | Adding compilation options for flex/lex and bison/yaccalbert-github2016-03-051-0/+8
|/ | | | | | | The pull request #419 didn't work for the ninja build platform The pull request #442 did only work when cmake was called but not during compilation ("make") In this patch we set the LEX_FLAGS and YACC_FLAGS when specified on the command line with cmake to the specified value, in the other case these flags are for the Ninja build system they are omitted and for all other build systems they are set to $(LEX_FLAGS) and $(YACC_FLAGS) so they can be used during runtime as well.
* allow building with custom iconv on Windowsalex85k2015-10-281-1/+3
|
* Fixed compiler warning for MacOSXDimitri van Heesch2015-09-191-0/+1
|
* Merge pull request #368 from olibre/masterDimitri van Heesch2015-07-211-0/+3
|\ | | | | Enable build of RPM/DEB/... packages
| * Rework the generation of packages DEB/RPM/... (CPack)olibre2015-07-201-1/+1
| |
| * Use CPack to generate rpm/deb packagesolibre2015-07-141-0/+3
| | | | | | | | | | Removed old unmaintained packages/rpm/doxygen.spec.in Provided cmake/packaging.cmake needs tunning on different distributions