Skip to content

Commit

Permalink
Update build_dependencies.cmake - fixed cmake warning (#317)
Browse files Browse the repository at this point in the history
This commit fixes CMake warning: logical block: `IF (PDC_WIDE OR PDC_UTF8 OR PDC_GL_BUILD)` was closed with: `ENDIF (PDC_WIDE OR PDC_UTF8)` block with mis-matching arguments.
  • Loading branch information
inobelar authored Mar 16, 2024
1 parent 62582e4 commit b487f45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmake/build_dependencies.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,6 @@ IF (PDC_SDL2_DEPS_BUILD)
ENDIF()
ENDIF()

ENDIF (PDC_WIDE OR PDC_UTF8)
ENDIF (PDC_WIDE OR PDC_UTF8 OR PDC_GL_BUILD)

ENDIF()

0 comments on commit b487f45

Please sign in to comment.