I like to compile the GTK3 Library with cmake instead of meson as mason
Meson needs Python11.dll(windows 10 or higher) and MSYS2 requires Windows 8 or higher eventually i like to switch to Linux fully so im trying to avoid WinspyOS/Updateshell
I like to compile the GTK3 Library with cmake instead of meson as mason
Meson needs Python11.dll(windows 10 or higher) and MSYS2 requires Windows 8 or higher eventually i like to switch to Linux fully so im trying to avoid WinspyOS/Updateshell
You can't build a project using build system A when it uses build system B internally. Specifically for this case: CMake doesn't magically know what to do with meson.build
files and vice versa. So the answer to your original question is: no, you can't do this.
The GTK docs provides a section in its documentation on how to build for Windows using either MSYS2 or gvsbuild. If neither of those work out for you, you'll have to resort to using containerization technologies like docker/podman, WSL, or a virtual machine.