asmaloney / GDExtensionTemplate

📜 A template project for building Godot 4 GDExtensions using CMake
The Unlicense
228 stars 22 forks source link

{CMake} Multi-config builds do not work #25

Open asmaloney opened 1 year ago

asmaloney commented 1 year ago

CMAKE_BUILD_TYPE applies to single-config builds, but not multi-config (e.g. Visual Studio, XCode) ones. For those we should be using generator expressions.

The fix for this is not obvious at the moment because of the way the template files are processed and because godot-cpp itself does not work properly for multi-config.

I have submitted fixes for godot-cpp in this PR.

Once it's fixed in godot-cpp I will revisit how the templates work here.