VS2012 nmake using v110_xp toolset?

后端 未结 4 1446
终归单人心
终归单人心 2021-02-05 23:29

Is there a way to use v110_xp toolset (instead of default \"v110\") when compiling with \"nmake\" ?

I\'m trying to compile a Qt5 library for VisualStudi

4条回答
  •  我寻月下人不归
    2021-02-05 23:44

    1. Edit Makefile.Debug or Makefile.Release file
    2. Add -D_USING_V110_SDK71_ to DEFINES

    Example:

    DEFINES = -D_USING_V110_SDK71_ -DUNICODE -DWIN32 -DQT_QML_DEBUG -DQT_DECLARATIVE_DEBUG

    Good luck!

提交回复
热议问题