mirror of
https://github.com/BlackMATov/meta.hpp.git
synced 2025-12-16 22:17:02 +07:00
delete doxygen cmake target
This commit is contained in:
2
.github/workflows/darwin.yml
vendored
2
.github/workflows/darwin.yml
vendored
@@ -20,7 +20,7 @@ jobs:
|
|||||||
- name: Setup
|
- name: Setup
|
||||||
run: |
|
run: |
|
||||||
brew update
|
brew update
|
||||||
brew install cmake ninja doxygen
|
brew install cmake ninja
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
|
|||||||
2
.github/workflows/linux.yml
vendored
2
.github/workflows/linux.yml
vendored
@@ -19,7 +19,7 @@ jobs:
|
|||||||
- name: Setup
|
- name: Setup
|
||||||
run: |
|
run: |
|
||||||
sudo apt-get update -o Acquire::Retries=10
|
sudo apt-get update -o Acquire::Retries=10
|
||||||
sudo apt-get install -o Acquire::Retries=10 -y cmake ninja-build doxygen ${{matrix.config.cc}} ${{matrix.config.cxx}}
|
sudo apt-get install -o Acquire::Retries=10 -y cmake ninja-build ${{matrix.config.cc}} ${{matrix.config.cxx}}
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
|
|||||||
2
.github/workflows/windows.yml
vendored
2
.github/workflows/windows.yml
vendored
@@ -17,7 +17,7 @@ jobs:
|
|||||||
name: "${{matrix.config.vc}}-${{matrix.config.arch}}"
|
name: "${{matrix.config.vc}}-${{matrix.config.arch}}"
|
||||||
steps:
|
steps:
|
||||||
- name: Setup
|
- name: Setup
|
||||||
run: choco install cmake ninja doxygen.install
|
run: choco install cmake ninja
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
|
|||||||
@@ -14,7 +14,6 @@ include(EnableGCov)
|
|||||||
include(EnableUBSan)
|
include(EnableUBSan)
|
||||||
include(SetupTargets)
|
include(SetupTargets)
|
||||||
|
|
||||||
add_subdirectory(doxygen)
|
|
||||||
add_subdirectory(manuals)
|
add_subdirectory(manuals)
|
||||||
add_subdirectory(singles)
|
add_subdirectory(singles)
|
||||||
add_subdirectory(unbench)
|
add_subdirectory(unbench)
|
||||||
|
|||||||
@@ -1,14 +0,0 @@
|
|||||||
find_package(Doxygen REQUIRED)
|
|
||||||
|
|
||||||
set(DOXYGEN_EXCLUDE_SYMBOLS "meta_hpp::detail")
|
|
||||||
set(DOXYGEN_EXTRACT_ALL YES)
|
|
||||||
set(DOXYGEN_RECURSIVE NO)
|
|
||||||
|
|
||||||
set(META_HPP_ROOT_DIR "${CMAKE_CURRENT_SOURCE_DIR}/../..")
|
|
||||||
set(META_HPP_DOXYGEN_INPUT_DIR "${META_HPP_ROOT_DIR}/headers/meta.hpp")
|
|
||||||
|
|
||||||
doxygen_add_docs(
|
|
||||||
${PROJECT_NAME}.doxygen ALL
|
|
||||||
${META_HPP_DOXYGEN_INPUT_DIR}
|
|
||||||
WORKING_DIRECTORY ${META_HPP_DOXYGEN_INPUT_DIR}
|
|
||||||
COMMENT "Generating API documentation with Doxygen")
|
|
||||||
Reference in New Issue
Block a user