Skip to content

Commit

Permalink
Support googletest with the CMake package name GTest (#1002)
Browse files Browse the repository at this point in the history
  • Loading branch information
cjmayo authored Oct 19, 2024
1 parent 97423a0 commit e45df5d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ endif()

enable_testing()

find_package(gtest QUIET)
if(NOT gtest_FOUND)
find_package(GTest QUIET)
if(NOT GTest_FOUND)
if(NOT MANIFOLD_DOWNLOADS)
message(
WARNING
Expand Down

0 comments on commit e45df5d

Please sign in to comment.