1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
Description: fix CMake Warning(dev): CMP0167
Author: Christian T. Steigies <cts@debian.org>
Last-Update: 2025-10-05
Index: gle-graphics-4.3.7/src/CMakeLists.txt
===================================================================
--- gle-graphics-4.3.7.orig/src/CMakeLists.txt
+++ gle-graphics-4.3.7/src/CMakeLists.txt
@@ -152,7 +152,7 @@ ${CMAKE_CURRENT_SOURCE_DIR}/../project_i
#
find_package(ZLIB REQUIRED)
SET(Boost_USE_STATIC_LIBS ON)
-find_package(Boost)
+find_package(Boost CONFIG)
find_package(JPEG)
if(BUILD_MANIP)
# manip needs curses or pdcurses on windows
|