From 0ca8b415e91a69b58cab5a7aa10bd3fe3b016faa Mon Sep 17 00:00:00 2001 From: Mat Sutcliffe Date: Sun, 3 Dec 2023 18:33:12 +0000 Subject: [PATCH] doxygen: Remove qmake files --- docs/{Doxyfile.qmake => Doxyfile} | 0 docs/docs.pro | 42 ------------------------------- 2 files changed, 42 deletions(-) rename docs/{Doxyfile.qmake => Doxyfile} (100%) delete mode 100644 docs/docs.pro diff --git a/docs/Doxyfile.qmake b/docs/Doxyfile similarity index 100% rename from docs/Doxyfile.qmake rename to docs/Doxyfile diff --git a/docs/docs.pro b/docs/docs.pro deleted file mode 100644 index 1c29dd260..000000000 --- a/docs/docs.pro +++ /dev/null @@ -1,42 +0,0 @@ -# SPDX-FileCopyrightText: Copyright (C) swift Project Community / Contributors -# SPDX-License-Identifier: CC0-1.0 - -load(common_pre) - -TEMPLATE = lib -CONFIG += staticlib -CONFIG -= qt - -OTHER_FILES += Doxyfile.qmake -OTHER_FILES += src/*.dox -OTHER_FILES += src/wiki/*.dox - -win32: DOXYGEN_BIN = $$system($$(SYSTEMROOT)\system32\where doxygen 2> nul) -else: DOXYGEN_BIN = $$system(which doxygen 2> /dev/null) - -!isEmpty(DOXYGEN_BIN) { - DOXYFILE = Doxyfile.qmake - DOXY_INPUT = . - win32-g++ { - doxy.commands = set DOXY_SRC_ROOT=$$SourceRoot & - doxy.commands += doxygen $$PWD/$$DOXYFILE - } - else:win32 { - doxy.commands = set DOXY_SRC_ROOT=$$SourceRoot & - doxy.commands += doxygen $$PWD\\$$DOXYFILE - } - else { - doxy.commands = DOXY_SRC_ROOT="$$SourceRoot" - doxy.commands += doxygen $$PWD/$$DOXYFILE - } - - doxy.CONFIG = no_link target_predeps - doxy.depends = $$PWD/$$DOXYFILE - doxy.input = DOXY_INPUT - doxy.name = DOXY - doxy.output = html/index.html - - QMAKE_EXTRA_COMPILERS += doxy -} - -load(common_post)