Skip to content

Commit

Permalink
Merge pull request #896 from mcourteaux/master
Browse files Browse the repository at this point in the history
Correct misleading comment.
  • Loading branch information
wolfpld authored Sep 30, 2024
2 parents 9f4d7fa + 28a229c commit e6eb989
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmake/vendor.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ if (NOT NO_FILESELECTOR AND NOT EMSCRIPTEN)
if (GTK_FILESELECTOR)
pkg_check_modules(GTK3 gtk+-3.0)
if (NOT GTK3_FOUND)
message(FATAL_ERROR "GTK3 not found. Please install it or set TRACY_GTK_FILESELECTOR to OFF.")
message(FATAL_ERROR "GTK3 not found. Please install it or set GTK_FILESELECTOR to OFF.")
endif()
add_library(TracyGtk3 INTERFACE)
target_include_directories(TracyGtk3 INTERFACE ${GTK3_INCLUDE_DIRS})
Expand All @@ -212,7 +212,7 @@ if (NOT NO_FILESELECTOR AND NOT EMSCRIPTEN)
else()
pkg_check_modules(DBUS dbus-1)
if (NOT DBUS_FOUND)
message(FATAL_ERROR "D-Bus not found. Please install it or set TRACY_GTK_FILESELECTOR to ON.")
message(FATAL_ERROR "D-Bus not found. Please install it or set GTK_FILESELECTOR to ON.")
endif()
add_library(TracyDbus INTERFACE)
target_include_directories(TracyDbus INTERFACE ${DBUS_INCLUDE_DIRS})
Expand Down

0 comments on commit e6eb989

Please sign in to comment.