博主头像
日月星

ワクワク

分类 c++ 下的文章

qml一键部署

QML一键部署xcopy %{ActiveProject:RunConfig:Executable:FileName} deploy\ /Y %{ActiveProject:RunConfig:Executable:NativePath}%{Qt:QT_INSTALL_BINS}\windeployqt %{ActiveProject:RunConfig:Executable:NativePath

C++ dll 导出

可以跨编译器的方法声明一个抽象类(都是纯虚函数)// "010.h" #pragma once #ifdef _DLL_EXPORTS #define DLL_API _declspec(dllexport) #else #define DLL_API _declspec(dllimport) #endif class IAnimal { public: virtua