Skip to content

Commit f1fff46

Browse files
Copilot0xrinegade
andcommitted
Fix doxygen documentation output path to match CI workflow expectations
Co-authored-by: 0xrinegade <[email protected]>
1 parent 4b733a2 commit f1fff46

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

.github/workflows/cpp_sdk.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -252,9 +252,6 @@ jobs:
252252

253253
- name: Install libsodium
254254
run: sudo apt-get update && sudo apt-get install -y libsodium-dev lcov
255-
256-
- name: Create doxygen output directory
257-
run: mkdir -p cpp_sdk/docs/doxygen
258255

259256
- name: Install dependencies
260257
run: |

cpp_sdk/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ add_custom_target(coverage
146146
)
147147

148148
add_custom_target(docs
149-
COMMAND ${CMAKE_COMMAND} -E make_directory docs/doxygen
149+
COMMAND ${CMAKE_COMMAND} -E make_directory docs
150150
COMMAND doxygen ${CMAKE_CURRENT_SOURCE_DIR}/docs/Doxyfile
151151
COMMENT "Generating API documentation"
152152
)

cpp_sdk/docs/Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ PROJECT_NUMBER = 1.0.0
33
PROJECT_BRIEF = "Modern C++17 wrapper for Solana AI Registries"
44
PROJECT_LOGO =
55

6-
OUTPUT_DIRECTORY = docs/doxygen
6+
OUTPUT_DIRECTORY = docs
77
CREATE_SUBDIRS = NO
88
ALLOW_UNICODE_NAMES = NO
99
BRIEF_MEMBER_DESC = YES

0 commit comments

Comments
 (0)