Open xarthurx opened 5 years ago
A general question for Windows versions is, are we suppose to use GNU environment to compile the framework? (Is it necessary/mendatory?)
If not, what are the replacements for those in the Unix-based environment? (I think this is the main issue I encounter when trying to make the Windows version work.)
I never tested the windows build. It use to work with Microsoft Visual Studio (configure with CMake) but the previous maintainer drop support for that because of the headache it gives to him.
Concerning MinGW, I don't know if it could work.
Hi, I'm trying to compile on Windows platform.
Several things I noticed:
The current CMake need
pkg-config
which google says to be a standard software in Linux system to solve dependences, is there a windows replacement of that?If disable the above, I also need to disable the current lines:
#pkg_check_modules(CAIRO REQUIRED cairo)
#pkg_check_modules(FONTCONFIG REQUIRED fontconfig)
and
ZLIB_INCLUDE_DIR-NOTFOUND
andZLIB_LIBRARY_DEBUG-NOTFOUND
.My question here now is for Windows platform, are we suppose to use Linux Environment like MinGW or totally change to Windows based libs?