summaryrefslogtreecommitdiffstats
path: root/addon/doxywizard/CMakeLists.txt
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'feature/bug_consistency_state_2' of ↵Dimitri van Heesch2019-09-121-1/+12
|\ | | | | | | https://github.com/albert-github/doxygen into albert-github-feature/bug_consistency_state_2
| * Consistent way to show scanner statealbert-github2019-09-051-1/+12
| | | | | | | | | | Create a consistent way to display the state mnemonics of the different scanners (analogous to the fortranscanner.l) Use an automatic procedure to generate the routine with the translation of the states to a string.
* | Remove unneeded include directory for building doxywizardDimitri van Heesch2019-09-071-1/+0
|/
* Rename version libary to avoid name clash with Window's version.libDimitri van Heesch2019-08-081-2/+2
|
* Show git version informationalbert-github2019-05-311-3/+3
| | | | | | | | | | | | | | | | | 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-2/+4
| | | | | | | | 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.
* Some fixes made during packaging of the binariesDimitri van Heesch2018-12-271-0/+1
|
* fix build with qt 5.11, deprecated qt5_use_modules macro was removed, patch ↵pgajdos2018-06-191-9/+6
| | | | by Christophe Giboudeaux
* CMake: avoid if() around the whole contents of plugin CMakeLists.txtRolf Eike Beer2017-10-201-4/+0
| | | | Just don't call add_subdirectory() if the build flag is not set.
* CMake: search for Qt5 only in config file modeRolf Eike Beer2017-10-201-1/+1
|
* flex: use %option instead of command line options.Adrian Negreanu2016-09-211-1/+1
|
* fix ninja build errorRafael Sadowski2016-01-161-1/+1
| | | | error: build.ninja:1548: bad $-escape (literal $ must be written as $$)
* Adding compilation options for flex/lex and bison/yaccalbert-github2015-12-081-1/+1
| | | | | | | | | | | | | | | Adding the options LAEX_FLAGS and YACC_FLAGS to the COMPILE_FLAGS for flex/lex bison/yacc to create more flexibility during compilation. Example: when one wants to compile e.g. fortranscanner.l with the flex debug flag -d one can perform the following steps: - touch fortranscanner.l in te src directory - run make LEX_FLAGS=-d or set environment variable LEX_FLAGS to -d run make to undo this touch again forttranscanner -l and run make (don't forget to unset the environment variable LEX_FLAGS) Analogous for bison/yacc wit the YACC_FLAGS
* DO NOT hardcode x86-64 architecture.Marcin Juszkiewicz2015-10-081-1/+1
| | | | | | | | | | | doxygen built on most of architectures by pure luck and order of Qt5 qatomics_arch.h header where check for QT_ARCH_X86_64 was *after* most of other architectures. But not after AArch64 where it failed due to attempt of using x86-64 atomics code. Signed-off-by: Marcin Juszkiewicz <mjuszkiewicz@redhat.com>
* Make doxywizard compatible with Qt5Dimitri van Heesch2015-07-141-5/+41
|
* Don't show a console when launching doxywizard on Windows.Dimitri van Heesch2015-07-011-2/+2
|
* Further cmake changesDimitri van Heesch2015-05-311-17/+0
| | | | | | | - made static build option for all windows targets - made wizard flex interactive - add 64bit support for libiconv on windows build - updated test mechanism
* Removed old build files, added install targets and other optionsDimitri van Heesch2015-05-171-10/+52
|
* use cmakeAdrian Negreanu2015-05-151-0/+55
runtest.pl replaced by testing/test_driver.cmake version.py replaced by cmake/version.cmake lang_cfg.py replaced by cmake/lang_cfg.cmake settings.py implemented in src/CMakeLists.txt increasebuffer.py replaced by defining the YY_BUF_SIZE and YY_READ_BUF_SIZE Signed-off-by: Adrian Negreanu <adrian.m.negreanu@intel.com>