Skip to content

Commit fd4c5dd

Browse files
committedMar 29, 2021
Fix CMake version warning
1 parent fa5c63c commit fd4c5dd

File tree

1 file changed

+4
-12
lines changed

1 file changed

+4
-12
lines changed
 

‎CMakeLists.txt

+4-12
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1+
cmake_minimum_required(VERSION 3.5)
2+
13
project(minetestmapper CXX)
2-
cmake_minimum_required(VERSION 2.6)
3-
cmake_policy(SET CMP0003 NEW)
44

55
set(VERSION_MAJOR 1)
66
set(VERSION_MINOR 0)
@@ -46,8 +46,6 @@ if(NOT CUSTOM_DOCDIR STREQUAL "")
4646
endif()
4747

4848
#set(CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake)
49-
find_package(PkgConfig)
50-
include(FindPackageHandleStandardArgs)
5149

5250
# Libraries: gd
5351

@@ -61,18 +59,12 @@ endif(NOT LIBGD_LIBRARY OR NOT LIBGD_INCLUDE_DIR)
6159

6260
# Libraries: zlib
6361

64-
find_library(ZLIB_LIBRARY z)
65-
find_path(ZLIB_INCLUDE_DIR zlib.h)
66-
message (STATUS "zlib library: ${ZLIB_LIBRARY}")
67-
message (STATUS "zlib headers: ${ZLIB_INCLUDE_DIR}")
68-
if(NOT ZLIB_LIBRARY OR NOT ZLIB_INCLUDE_DIR)
69-
message(FATAL_ERROR "zlib not found!")
70-
endif(NOT ZLIB_LIBRARY OR NOT ZLIB_INCLUDE_DIR)
62+
find_package(ZLIB REQUIRED)
7163

7264
# Libraries: sqlite3
7365

7466
find_library(SQLITE3_LIBRARY sqlite3)
75-
find_path(SQLITE3_INCLUDE_DIR zlib.h)
67+
find_path(SQLITE3_INCLUDE_DIR sqlite3.h)
7668
message (STATUS "sqlite3 library: ${SQLITE3_LIBRARY}")
7769
message (STATUS "sqlite3 headers: ${SQLITE3_INCLUDE_DIR}")
7870
if(NOT SQLITE3_LIBRARY OR NOT SQLITE3_INCLUDE_DIR)

0 commit comments

Comments
 (0)
Please sign in to comment.