ninja

Environment variable used by CMake to detect Visual C++ compiler tools for Ninja

一世执手 提交于 2019-11-26 21:07:01
I have Mingw64 GCC 6.3.0 (always in PATH ) and Visual C++ compiler tools from Visual Studio 2017 RTM (not in PATH ). If I run cmake . -G "MinGW Makefiles" , GCC 6.3.0 will be selected. If I run cmake . -G "Ninja" , GCC 6.3.0 will be selected. My Visual C++ compiler tools is none standard, I only keep the parts I need and delete the rest (like MSBuild, IDE etc.). I use my own batch script to set up PATH , INCLUDE and LIB (works just fine). If I run this batch script and run cmake . , MSVC will be selected and build with NMake. With the same environment, cmake . -G "Ninja" , GCC 6.3.0 is

[xlua] build_xlua_with_libs生成

半世苍凉 提交于 2019-11-26 18:46:49
参考地址: https://github.com/chexiongsheng/build_xlua_with_libs 需要注意的是,在windows上编译安卓的时候,运行make_android_lua53.bat会报关于ninja.exe的错。 如果用IDEA下载cmake的话就是正常的,参考: https://blog.csdn.net/sailuoatm/article/details/86625886 来源: oschina 链接: https://my.oschina.net/diguo2046/blog/3133746

Environment variable used by CMake to detect Visual C++ compiler tools for Ninja

核能气质少年 提交于 2019-11-26 07:49:22
问题 I have Mingw64 GCC 6.3.0 (always in PATH ) and Visual C++ compiler tools from Visual Studio 2017 RTM (not in PATH ). If I run cmake . -G \"MinGW Makefiles\" , GCC 6.3.0 will be selected. If I run cmake . -G \"Ninja\" , GCC 6.3.0 will be selected. My Visual C++ compiler tools is none standard, I only keep the parts I need and delete the rest (like MSBuild, IDE etc.). I use my own batch script to set up PATH , INCLUDE and LIB (works just fine). If I run this batch script and run cmake . , MSVC