From: Simon Tatham Date: Mon, 5 Apr 2021 10:00:05 +0000 (+0100) Subject: Stop advertising GTK 1 as an option! X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ian/git?a=commitdiff_plain;h=8c97ef434f2003768a509f9a76a2b019a08966cb;p=sgt-puzzles.git Stop advertising GTK 1 as an option! When I wrote yesterday's commit c0c64dc1051bcbd I momentarily forgot which of my projects still support GTK 1 and which don't. Puzzles doesn't. --- diff --git a/cmake/platforms/unix.cmake b/cmake/platforms/unix.cmake index 17d539d..26d2e97 100644 --- a/cmake/platforms/unix.cmake +++ b/cmake/platforms/unix.cmake @@ -1,7 +1,7 @@ set(PUZZLES_GTK_VERSION "ANY" CACHE STRING "Which major version of GTK to build with") set_property(CACHE PUZZLES_GTK_VERSION - PROPERTY STRINGS ANY 3 2 1) + PROPERTY STRINGS ANY 3 2) set(STRICT OFF CACHE BOOL "Enable extra compiler warnings and make them errors")