Steven821220 发表于 2018-3-3 18:52

利用QT开发带界面IDA插件VS开发环境搭建

前几天做了一个插件,资料比较,研究了好几天才搞定,这里记录一下:1、安装vs2010
2、安装qt4.8.4(安装配置细节请查阅有关资料)

      Qt4.8.4链接:http://download.qt.io/archive/qt/4.8/4.8.4/qt-win-opensource-4.8.4-vs2010.exe

3、安装Visual Studio Add-in 1.1.11插件
      相关链接:https://mirrors.tuna.tsinghua.edu.cn/qt/archive/vsaddin/qt-vs-addin-1.1.11-opensource.exe
4、插件安装完成后,会在VS2010菜单添加QT项;新建Qt工程为IDA插件,设置工程属性如下:
(1) "Preprocessor Defines":
   QT_DLL
   QT_GUI_LIB
   QT_CORE_LIB
   QT_THREAD_SUPPORT
   QT_NAMESPACE=QT
   and one more for debug builds:
   QT_NO_DEBUG


(2) "Additional Include Directories"
    $(QTDIR)\include (3) "Additional Library Directories" under "Link" options:
    $(IDADIR)\idasdk\lib\x86_win_qt (appended with where your IDA SDK is loaded)

by_aka 发表于 2018-3-4 21:40

谢谢楼主分享经验

838384855 发表于 2018-3-9 11:15

感谢大神分享,学习了
页: [1]
查看完整版本: 利用QT开发带界面IDA插件VS开发环境搭建