Skip to content

Commit c9e7684

Browse files
authored
Make doxygen generate a spy.tag in the doc files
1 parent 885f0ea commit c9e7684

File tree

4 files changed

+5
-7
lines changed

4 files changed

+5
-7
lines changed

.github/workflows/unit.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,13 @@ jobs:
1919
## Mac OS X Targets
2020
##################################################################################################
2121
macosx:
22-
runs-on: [macos-12]
22+
runs-on: [macos-14]
2323
strategy:
2424
fail-fast: false
2525
matrix:
2626
cfg:
2727
- { comp: clang , arch: x86_osx, mode: Debug }
2828
- { comp: clang , arch: x86_osx, mode: Release }
29-
- { comp: gcc , arch: x86_osx, mode: Debug }
30-
- { comp: gcc , arch: x86_osx, mode: Release }
3129
steps:
3230
- name: Fetch current branch
3331
uses: actions/[email protected]

cmake/dependencies.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
##======================================================================================================================
88
## Download and setup CPM
99
##======================================================================================================================
10-
set(CPM_DOWNLOAD_VERSION 0.34.0)
10+
set(CPM_DOWNLOAD_VERSION 0.40.2)
1111

1212
if(CPM_SOURCE_CACHE)
1313
set(CPM_DOWNLOAD_LOCATION "${CPM_SOURCE_CACHE}/cpm/CPM_${CPM_DOWNLOAD_VERSION}.cmake")

doc/Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2480,7 +2480,7 @@ TAGFILES =
24802480
# tag file that is based on the input files it reads. See section "Linking to
24812481
# external documentation" for more information about the usage of tag files.
24822482

2483-
GENERATE_TAGFILE =
2483+
GENERATE_TAGFILE = $(DOXYGEN_OUPUT)/spy.tag
24842484

24852485
# If the ALLEXTERNALS tag is set to YES, all external classes and namespaces
24862486
# will be listed in the class and namespace index. If set to NO, only the

test/toolchain/clang.x86_osx.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
## Copyright : SPY Project Contributors
44
## SPDX-License-Identifier: BSL-1.0
55
##==================================================================================================
6-
set(CMAKE_C_COMPILER /usr/local/opt/llvm@15/bin/clang )
7-
set(CMAKE_CXX_COMPILER /usr/local/opt/llvm@15/bin/clang++ )
6+
set(CMAKE_C_COMPILER /opt/homebrew/opt/llvm@15/bin/clang )
7+
set(CMAKE_CXX_COMPILER /opt/homebrew/opt/llvm@15/bin/clang++ )

0 commit comments

Comments
 (0)