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
#find_package(OpenAL REQUIRED)
#find_package(MPG123 REQUIRED)
#find_package(Freetype REQUIRED)
- Then, cmake said it also missing
ZLIB_INCLUDE_DIR-NOTFOUND and ZLIB_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?
Hi, I'm trying to compile on Windows platform.
Several things I noticed:
The current CMake need
pkg-configwhich 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-NOTFOUNDandZLIB_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?