wb2osz / direwolf

Dire Wolf is a software "soundcard" AX.25 packet modem/TNC and APRS encoder/decoder. It can be used stand-alone to observe APRS traffic, as a tracker, digipeater, APRStt gateway, or Internet Gateway (IGate). For more information, look at the bottom 1/4 of this page and in https://github.com/wb2osz/direwolf/blob/dev/doc/README.md
GNU General Public License v2.0
1.51k stars 299 forks source link

Update deprecated CMake command `exec_program()` #526

Closed MrColdboot closed 2 months ago

MrColdboot commented 2 months ago

Per the cmake documentation:

Changed in version 3.28: This command is available only if policy CMP0153 is not set to NEW. Port projects to the execute_process() command.

Deprecated since version 3.0: Use the execute_process() command instead.

To avoid warnings or future errors, calls to exec_program() have been replaced with the recommended execute_process() command.

wb2osz commented 2 months ago

Thank you for submitting this improvement.