Skip to content

Commit 69e7cb3

Browse files
committed
Add reference to Symfony
1 parent 7839f4d commit 69e7cb3

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

cmake/rsp/debug.cmake

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ if (NOT COMMAND "dump")
1616
#
1717
# Note: function outputs using cmake's WARNING message mode
1818
#
19+
# This function is inspired by Symfony's `dump()`, (copyright Fabien Potencier - MIT License)
20+
# @see https://symfony.com/doc/current/components/var_dumper.html
21+
#
1922
# @see https://cmake.org/cmake/help/latest/command/message.html#general-messages
2023
# @see var_dump()
2124
#
@@ -39,6 +42,9 @@ if (NOT COMMAND "dd")
3942
#
4043
# Note: function outputs using cmake's FATAL_ERROR message mode
4144
#
45+
# This function is inspired by Symfony's `dd()`, (copyright Fabien Potencier - MIT License)
46+
# @see https://symfony.com/doc/current/components/var_dumper.html
47+
#
4248
# @see https://cmake.org/cmake/help/latest/command/message.html#general-messages
4349
# @see var_dump()
4450
#
@@ -60,6 +66,8 @@ if (NOT COMMAND "var_dump")
6066

6167
#! var_dump : Outputs human-readable information about given properties
6268
#
69+
# This function is inspired by Symfony's var dumper component, (copyright Fabien Potencier - MIT License)
70+
# @see https://symfony.com/doc/current/components/var_dumper.html
6371
#
6472
# @param [OUTPUT <variable>] Optional - If specified, information is assigned to output variable
6573
# instead of being printed to stderr.

0 commit comments

Comments
 (0)