Skip to content

Commit b545eaf

Browse files
JWT_BUILD_DOCS
1 parent 3505b0c commit b545eaf

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/documentation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
version: "1.10.0"
1515
- run: sudo apt install graphviz
1616
- run: |
17-
cmake . -DJWT_BUILD_DOC=ON
17+
cmake . -DJWT_BUILD_DOCS=ON
1818
cmake --build . --target build_docs
1919
- if: github.event_name == 'push'
2020
name: deploy

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ project(jwt-cpp)
1717

1818
option(JWT_BUILD_EXAMPLES "Configure CMake to build examples (or not)" ON)
1919
option(JWT_BUILD_TESTS "Configure CMake to build tests (or not)" OFF)
20-
option(JWT_BUILD_DOC "Configure CMake to build documentation (or not)" OFF)
20+
option(JWT_BUILD_DOCS "Configure CMake to build documentation (or not)" OFF)
2121
option(JWT_ENABLE_COVERAGE "Enable code coverage testing" OFF)
2222
option(JWT_ENABLE_FUZZING "Enable fuzz testing" OFF)
2323

@@ -155,6 +155,6 @@ if(JWT_ENABLE_FUZZING)
155155
add_subdirectory(tests/fuzz)
156156
endif()
157157

158-
if(JWT_BUILD_DOC)
158+
if(JWT_BUILD_DOCS)
159159
add_subdirectory(docs)
160160
endif()

0 commit comments

Comments
 (0)