qode
qode copied to clipboard
Win32 support
Hi, first of all thanks for this great work! I'm looking at Nodegui for a desktop app I need to build for Win32 machines.
I know Qode currently supports Win64 only, but would it be possible it to support Win32 with some work?
If possible, I'd like to give it a try.
Thanks in advance.
Yes, I think its possible. You can check this file here: https://github.com/nodegui/qode/blob/master/build.js
if you see, there is TARGET_ARCH variable. Try setting that to x86 and build Then its just fixing things as they break.
Before starting with building qode I would actually first try and build nodejs itself on my machine just to make sure i have all dependecies sorted out.
If you want to see what exact commands you need to run to build: you can check the workflow here: https://github.com/nodegui/qode/blob/master/.github/workflows/windows.yml
Thanks @a7ul I'm going to give it a try!!!