Qt自动生成ui_xxx.h和moc_xxx.cpp

在.ui的常规中 命令行$(QT_DIR)\bin\uic.exe Drag2DWidget.ui -o ui_Drag2DWidget.h

说明UIC Drag2DWidget.ui

输出ui_Drag2DWidget.h;%(Outputs)

附加依赖项$(QT_DIR)\bin\uic.exe;Drag2DWidget.ui;%(AdditionalInputs)

在.h中的常规中命令行$(QT_DIR)\bin\moc.exe  -DUNICODE -DWIN32 -DQT_DLL -DQT_SQL_LIB -DQT_OPENGL_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_HAVE_MMX -DQT_HAVE_3DNOW -DQT_HAVE_SSE -DQT_HAVE_MMXEXT -DQT_HAVE_SSE2 -DQT_THREAD_SUPPORT -I"$(QT_DIR)\include\QtCore" -I"$(QT_DIR)\include\QtGui" -I"$(QT_DIR)\include\QtOpenGL" -I"$(QT_DIR)\include\QtSql" -I"$(QT_DIR)\include" -I"." -I"..\LB_DB" -I"..\LB_Model" -I"..\LB_osgView" -I"$(OSGPATH)\include" -I"$(QT_DIR)\include\ActiveQt" -I"debug" -I"." -I$(QT_DIR)\mkspecs\win32-msvc2010 -D_MSC_VER=1600 -DWIN32 Drag2DWidget.h -o debug\moc_Drag2DWidget.cpp

说明MOC Drag2DWidget.h

输出debug\moc_Drag2DWidget.cpp;%(Outputs)

附加依赖项$(QT_DIR)\bin\moc.exe;Drag2DWidget.h

你可能感兴趣的:(Qt自动生成ui_xxx.h和moc_xxx.cpp)