File tree 1 file changed +4
-12
lines changed
1 file changed +4
-12
lines changed Original file line number Diff line number Diff line change
1
+ cmake_minimum_required (VERSION 3.5)
2
+
1
3
project (minetestmapper CXX)
2
- cmake_minimum_required (VERSION 2.6)
3
- cmake_policy (SET CMP0003 NEW)
4
4
5
5
set (VERSION_MAJOR 1)
6
6
set (VERSION_MINOR 0)
@@ -46,8 +46,6 @@ if(NOT CUSTOM_DOCDIR STREQUAL "")
46
46
endif ()
47
47
48
48
#set(CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake)
49
- find_package (PkgConfig)
50
- include (FindPackageHandleStandardArgs)
51
49
52
50
# Libraries: gd
53
51
@@ -61,18 +59,12 @@ endif(NOT LIBGD_LIBRARY OR NOT LIBGD_INCLUDE_DIR)
61
59
62
60
# Libraries: zlib
63
61
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)
71
63
72
64
# Libraries: sqlite3
73
65
74
66
find_library (SQLITE3_LIBRARY sqlite3)
75
- find_path (SQLITE3_INCLUDE_DIR zlib .h)
67
+ find_path (SQLITE3_INCLUDE_DIR sqlite3 .h)
76
68
message (STATUS "sqlite3 library: ${SQLITE3_LIBRARY} " )
77
69
message (STATUS "sqlite3 headers: ${SQLITE3_INCLUDE_DIR} " )
78
70
if (NOT SQLITE3_LIBRARY OR NOT SQLITE3_INCLUDE_DIR)
You can’t perform that action at this time.
0 commit comments