FreeRDP/cmake/WarnUnmaintained.cmake
akallabeth e3c93573f3
[cmake] add explicit instructions to turn off unmaintained modules
* Add detailed CMake warning to disable unmaintained modules
* Add sample shadow subsystem implementation
* Allow building shadow server with dummy subsystem
2025-03-17 16:23:51 +01:00

16 lines
755 B
CMake

macro(warn_unmaintained name)
message(WARNING "[unmaintained] ${name} is unmaintained!")
message(WARNING "[unmaintained] use at your own risk!")
message(
WARNING
"[unmaintained] If problems occur please check https://github.com/FreeRDP/FreeRDP/issues for known issues, but be prepared to fix them on your own!"
)
message(WARNING "[unmaintained] Developers hang out in https://matrix.to/#/#FreeRDP:matrix.org?via=matrix.org")
message(
WARNING
"[unmaintained] - don't hesitate to ask some questions. (replies might take some time depending on your timezone)"
)
message(WARNING "[unmaintained] - if you intend using this component write us a message")
message(WARNING "[unmaintained] use ${ARGN} to disable")
endmacro()