@@ -4,9 +4,8 @@ cmake_minimum_required(VERSION 3.25 FATAL_ERROR)
44include (cmake/CMakeDefaults.cmake)
55
66message ("
7- +--------------------------------------------------------------------+
8- | Running system checks |
9- +--------------------------------------------------------------------+
7+ Running system checks
8+ ---------------------
109" )
1110
1211message (STATUS "CMake version: ${CMAKE_VERSION} " )
@@ -28,42 +27,9 @@ set(CMAKE_C_STANDARD_REQUIRED TRUE)
2827# Configure project.
2928include (cmake/Bootstrap.cmake)
3029
31- # Create a project wide INTERFACE library with project configuration.
32- add_library (php_configuration INTERFACE )
33- add_library (PHP::configuration ALIAS php_configuration)
34- target_include_directories (
35- php_configuration
36- INTERFACE
37- ${PHP_BINARY_DIR}
38- ${PHP_SOURCE_DIR}
39- )
40-
41- # Create a custom target for generating files (parsers, lexers, etc.) manually:
42- # cmake --build <dir> -t php_generate_files
43- add_custom_target (php_generate_files)
44-
45- # Configure build types.
46- include (cmake/BuildTypes.cmake)
47-
48- # Set platform-specific configuration.
49- include (cmake/Platform.cmake)
50-
51- # Set PHP configuration options and variables.
52- include (cmake/Configuration .cmake)
53-
54- # Check requirements.
55- include (cmake/Requirements.cmake)
56-
57- # Run PHP configuration checks.
58- include (cmake/ConfigureChecks.cmake)
59-
60- # Check compilation options.
61- include (cmake/Flags .cmake)
62-
6330message ("
64- +--------------------------------------------------------------------+
65- | Configuring SAPI modules |
66- +--------------------------------------------------------------------+
31+ Configuring SAPI modules
32+ ------------------------
6733" )
6834add_subdirectory (sapi/apache2handler)
6935add_subdirectory (sapi/cgi)
@@ -75,24 +41,21 @@ add_subdirectory(sapi/litespeed)
7541add_subdirectory (sapi/phpdbg)
7642
7743message ("
78- +--------------------------------------------------------------------+
79- | Configuring PHP extensions |
80- +--------------------------------------------------------------------+
44+ Configuring PHP extensions
45+ --------------------------
8146" )
8247include (PHP/Extensions)
8348php_extensions_add(ext )
8449
8550message ("
86- +--------------------------------------------------------------------+
87- | Configuring Zend engine |
88- +--------------------------------------------------------------------+
51+ Configuring Zend engine
52+ -----------------------
8953" )
9054add_subdirectory (Zend)
9155
9256message ("
93- +--------------------------------------------------------------------+
94- | Configuring PHP |
95- +--------------------------------------------------------------------+
57+ Configuring PHP
58+ ---------------
9659" )
9760add_subdirectory (pear)
9861add_subdirectory (TSRM)
@@ -170,14 +133,14 @@ endif()
170133include (PHP/FeatureSummary)
171134
172135message ("
173- +--------------------------------------------------------------------+
174- | License: |
175- | This software is subject to the PHP License, available in this |
176- | distribution in the file LICENSE. By continuing this installation |
177- | process, you are bound by the terms of this license agreement. |
178- | If you do not agree with the terms of this license, you must abort |
179- | the installation process at this point. |
180- +--------------------------------------------------------------------+
136+ License
137+ -------
138+
139+ This software is subject to the PHP License, available in this
140+ distribution in the file LICENSE. By continuing this installation
141+ process, you are bound by the terms of this license agreement.
142+ If you do not agree with the terms of this license, you must abort
143+ the installation process at this point.
181144
182145Thank you for using PHP.
183146" )
0 commit comments