Skip to content

Commit 188ec19

Browse files
committed
Fix nits
1 parent 651e975 commit 188ec19

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

cmake/ext/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ Add subdirectories of PHP extensions.
33
44
## INTERFACE target
55
6-
* `PHP::extensions` (`php_extensions`) is an INTERFACE library with all enabled
7-
extensions linked.
6+
* `php_extensions` (alias `PHP::extensions`) is an INTERFACE library with all
7+
enabled extensions linked into for convenience.
88
99
## Custom CMake properties
1010

cmake/main/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ PHP main binding.
33
44
## INTERFACE target
55
6-
* `php` with alias `PHP::PHP` is an INTERFACE library that ties PHP core, Zend
6+
* `php` (alias `PHP::PHP`) is an INTERFACE library that ties PHP core, Zend
77
Engine and PHP extensions together and can be easily linked to SAPIs.
88
#]=============================================================================]
99

@@ -151,7 +151,7 @@ target_link_libraries(
151151
PHP::main
152152
$<TARGET_OBJECTS:PHP::main>
153153
# Pass transitively depending on the SAPI type.
154-
$<IF:$<IN_LIST:$<TARGET_PROPERTY:NAME>,php_cli;php_cgi;php_phpdbg;php_embed>,php_main_internal_functions_cli $<TARGET_OBJECTS:php_main_internal_functions_cli>,php_main_internal_functions $<TARGET_OBJECTS:php_main_internal_functions>>
154+
$<IF:$<IN_LIST:$<TARGET_PROPERTY:NAME>,php_cgi;php_cli;php_embed;php_phpdbg>,php_main_internal_functions_cli $<TARGET_OBJECTS:php_main_internal_functions_cli>,php_main_internal_functions $<TARGET_OBJECTS:php_main_internal_functions>>
155155
Zend::Zend
156156
$<TARGET_OBJECTS:Zend::Zend>
157157
PHP::extensions

0 commit comments

Comments
 (0)