aboutsummaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorVollstrecker <werner@vollstreckernet.de>2024-12-30 10:56:16 +0100
committerMark Adler <madler@alumni.caltech.edu>2025-01-31 20:02:26 -0800
commit15a3751836739a987bfd1fb73d1c2f20ef85e69b (patch)
tree510b825ebc267b339991d6c3cbb93f05cc11b286 /CMakeLists.txt
parentede311d685a536fbf4a287818b70412baa14ca76 (diff)
downloadzlib-15a3751836739a987bfd1fb73d1c2f20ef85e69b.tar.gz
zlib-15a3751836739a987bfd1fb73d1c2f20ef85e69b.tar.bz2
zlib-15a3751836739a987bfd1fb73d1c2f20ef85e69b.zip
CMake: Order the includes consistently.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt5
1 files changed, 3 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 9003fd5..f9e9620 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -38,11 +38,12 @@ if(NOT DEFINED CMAKE_BUILD_TYPE AND NOT IS_MULTI)
38 message(STATUS "No CMAKE_BUILD_TYPE set -- using Release") 38 message(STATUS "No CMAKE_BUILD_TYPE set -- using Release")
39 set(CMAKE_BUILD_TYPE Release) 39 set(CMAKE_BUILD_TYPE Release)
40endif(NOT DEFINED CMAKE_BUILD_TYPE AND NOT IS_MULTI) 40endif(NOT DEFINED CMAKE_BUILD_TYPE AND NOT IS_MULTI)
41include(CheckTypeSize) 41
42include(CheckCSourceCompiles)
42include(CheckFunctionExists) 43include(CheckFunctionExists)
43include(CheckIncludeFile) 44include(CheckIncludeFile)
44include(CheckCSourceCompiles)
45include(CMakePackageConfigHelpers) 45include(CMakePackageConfigHelpers)
46include(CheckTypeSize)
46include(CPack) 47include(CPack)
47include(GNUInstallDirs) 48include(GNUInstallDirs)
48 49