microsoft / winfile

Original Windows File Manager (winfile) with enhancements
MIT License
6.76k stars 699 forks source link

software and add-ons to edit and compile File Manager #382

Closed ScottHollows closed 4 months ago

ScottHollows commented 1 year ago

What software and add-ons do I need to edit and compile FIle Manager from this Github repository ?

Are there any specific versions that I have to use or is the latest version ok ?

malxau commented 1 year ago

The "official" toolchain is Visual Studio 2019, with Windows SDK 10.0.18362.0 (19H1.) Community edition is fine.

It does work on newer versions, but msbuild files tightly specify the compiler and SDK version, so these would need to be changed to suit your environment.

Alternatively, there's also a GNUmakefile for using gcc/clang. I haven't used this and don't know exactly what would be needed; mingw + msys should work, as should llvm + msys, but I haven't verified this. If you do and hit issues, please let us know or file a pull request.

ScottHollows commented 1 year ago

thank you Malxau