Skip to content

Commit

Permalink
3rdparty/CMakeLists.txt - with_gvedit must be a STRING (#60)
Browse files Browse the repository at this point in the history
The CMake with_gvedit variable is a STRING, not a BOOL.
Set with_gvedit to "OFF" not to FALSE.
  • Loading branch information
Allen Winter authored Jun 22, 2024
1 parent 896d433 commit 426863b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions 3rdparty/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ if(WITH_INTERNAL_GRAPHVIZ)

# cmake-lint: disable=C0103
set(with_gvedit
FALSE
CACHE BOOL " GVEdit interactive graph editor" FORCE
"OFF"
CACHE STRING " GVEdit interactive graph editor" FORCE
)
add_subdirectory(graphviz)

Expand Down

0 comments on commit 426863b

Please sign in to comment.