Merge pull request #1649 from enetheru/fix-backward-break

CMake: fix break for build prior to modernisation PR
pull/1655/head
David Snopek 2024-11-28 06:58:57 -06:00 committed by GitHub
commit af4eaa76d7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 0 deletions

View File

@ -293,4 +293,8 @@ function( godotcpp_generate )
endforeach ()
# Added for backwards compatibility with prior cmake solution so that builds dont immediately break
# from a missing target.
add_library( godot::cpp ALIAS template_debug )
endfunction()