Makefile.Release 232 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678
  1. #############################################################################
  2. # Makefile for building: project01
  3. # Generated by qmake (3.1) (Qt 5.15.2)
  4. # Project: D:\qt\project01\project01.pro
  5. # Template: app
  6. #############################################################################
  7. MAKEFILE = Makefile.Release
  8. EQ = =
  9. ####### Compiler, tools and options
  10. CC = gcc
  11. CXX = g++
  12. DEFINES = -DUNICODE -D_UNICODE -DWIN32 -DMINGW_HAS_SECURE_API=1 -DQT_QML_DEBUG -DQT_NO_DEBUG -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_NEEDS_QMAIN
  13. CFLAGS = -fno-keep-inline-dllexport -O2 -Wall -Wextra -Wextra $(DEFINES)
  14. CXXFLAGS = -fno-keep-inline-dllexport -O2 -std=gnu++1z -Wall -Wextra -Wextra -fexceptions -mthreads $(DEFINES)
  15. INCPATH = -ID:\qt\project01 -I. -ID:\app\Qt\5.15.2\msvc2019_64\include\qwt -ID:\app\Qt\5.15.2\mingw81_64\include -ID:\app\Qt\5.15.2\mingw81_64\include\QtWidgets -ID:\app\Qt\5.15.2\mingw81_64\include\QtGui -ID:\app\Qt\5.15.2\mingw81_64\include\QtANGLE -ID:\app\Qt\5.15.2\mingw81_64\include\QtCore -Irelease -I. -I/include -ID:\app\Qt\5.15.2\mingw81_64\mkspecs\win32-g++
  16. LINKER = g++
  17. LFLAGS = -Wl,-s -Wl,-subsystem,windows -mthreads
  18. LIBS = -LD:\build-qwt-Desktop_Qt_5_12_8_MSVC2017_64bit-Debug\lib -lqwtd -lqwt D:\app\Qt\5.15.2\mingw81_64\lib\libQt5Widgets.a D:\app\Qt\5.15.2\mingw81_64\lib\libQt5Gui.a D:\app\Qt\5.15.2\mingw81_64\lib\libQt5Core.a -lmingw32 D:\app\Qt\5.15.2\mingw81_64\lib\libqtmain.a -LC:\openssl\lib -LC:\Utils\my_sql\mysql-5.7.25-winx64\lib -LC:\Utils\postgresql\pgsql\lib -lshell32
  19. QMAKE = D:\app\Qt\5.15.2\mingw81_64\bin\qmake.exe
  20. DEL_FILE = del
  21. CHK_DIR_EXISTS= if not exist
  22. MKDIR = mkdir
  23. COPY = copy /y
  24. COPY_FILE = copy /y
  25. COPY_DIR = xcopy /s /q /y /i
  26. INSTALL_FILE = copy /y
  27. INSTALL_PROGRAM = copy /y
  28. INSTALL_DIR = xcopy /s /q /y /i
  29. QINSTALL = D:\app\Qt\5.15.2\mingw81_64\bin\qmake.exe -install qinstall
  30. QINSTALL_PROGRAM = D:\app\Qt\5.15.2\mingw81_64\bin\qmake.exe -install qinstall -exe
  31. DEL_FILE = del
  32. SYMLINK = $(QMAKE) -install ln -f -s
  33. DEL_DIR = rmdir
  34. MOVE = move
  35. IDC = idc
  36. IDL = midl
  37. ZIP = zip -r -9
  38. DEF_FILE =
  39. RES_FILE =
  40. SED = $(QMAKE) -install sed
  41. MOVE = move
  42. ####### Output directory
  43. OBJECTS_DIR = release
  44. ####### Files
  45. SOURCES = D:\qt\project01\Group.cpp \
  46. D:\qt\project01\ImageWidget.cpp \
  47. D:\qt\project01\ImageWidget_nodrag.cpp \
  48. D:\qt\project01\Login.cpp \
  49. D:\qt\project01\OriginalWnd\Demo001_1.cpp \
  50. D:\qt\project01\OriginalWnd\Demo001_2.cpp \
  51. D:\qt\project01\OriginalWnd\Demo001_3.cpp \
  52. D:\qt\project01\OriginalWnd\OriginalWnd.cpp \
  53. D:\qt\project01\OriginalWnd\treeviewmanager.cpp \
  54. D:\qt\project01\main.cpp \
  55. D:\qt\project01\MainWnd.cpp release\qrc_res.cpp \
  56. release\moc_Group.cpp \
  57. release\moc_ImageWidget.cpp \
  58. release\moc_ImageWidget_nodrag.cpp \
  59. release\moc_Login.cpp \
  60. release\moc_MainWnd.cpp \
  61. release\moc_Demo001_1.cpp \
  62. release\moc_Demo001_2.cpp \
  63. release\moc_Demo001_3.cpp \
  64. release\moc_OriginalWnd.cpp \
  65. release\moc_treeviewmanager.cpp
  66. OBJECTS = release/Group.o \
  67. release/ImageWidget.o \
  68. release/ImageWidget_nodrag.o \
  69. release/Login.o \
  70. release/Demo001_1.o \
  71. release/Demo001_2.o \
  72. release/Demo001_3.o \
  73. release/OriginalWnd.o \
  74. release/treeviewmanager.o \
  75. release/main.o \
  76. release/MainWnd.o \
  77. release/qrc_res.o \
  78. release/moc_Group.o \
  79. release/moc_ImageWidget.o \
  80. release/moc_ImageWidget_nodrag.o \
  81. release/moc_Login.o \
  82. release/moc_MainWnd.o \
  83. release/moc_Demo001_1.o \
  84. release/moc_Demo001_2.o \
  85. release/moc_Demo001_3.o \
  86. release/moc_OriginalWnd.o \
  87. release/moc_treeviewmanager.o
  88. DIST = images/drop.png D:\qt\project01\Group.h \
  89. D:\qt\project01\ImageWidget.h \
  90. D:\qt\project01\ImageWidget_nodrag.h \
  91. D:\qt\project01\Login.h \
  92. D:\qt\project01\MainWnd.h \
  93. D:\qt\project01\OriginalWnd\Demo001_1.h \
  94. D:\qt\project01\OriginalWnd\Demo001_2.h \
  95. D:\qt\project01\OriginalWnd\Demo001_3.h \
  96. D:\qt\project01\OriginalWnd\OriginalWnd.h \
  97. D:\qt\project01\OriginalWnd\treeviewmanager.h D:\qt\project01\Group.cpp \
  98. D:\qt\project01\ImageWidget.cpp \
  99. D:\qt\project01\ImageWidget_nodrag.cpp \
  100. D:\qt\project01\Login.cpp \
  101. D:\qt\project01\OriginalWnd\Demo001_1.cpp \
  102. D:\qt\project01\OriginalWnd\Demo001_2.cpp \
  103. D:\qt\project01\OriginalWnd\Demo001_3.cpp \
  104. D:\qt\project01\OriginalWnd\OriginalWnd.cpp \
  105. D:\qt\project01\OriginalWnd\treeviewmanager.cpp \
  106. D:\qt\project01\main.cpp \
  107. D:\qt\project01\MainWnd.cpp
  108. QMAKE_TARGET = project01
  109. DESTDIR = release\ #avoid trailing-slash linebreak
  110. TARGET = project01.exe
  111. DESTDIR_TARGET = release\project01.exe
  112. ####### Build rules
  113. first: all
  114. all: Makefile.Release release/project01.exe
  115. release/project01.exe: D:/app/Qt/5.15.2/mingw81_64/lib/libQt5Widgets.a D:/app/Qt/5.15.2/mingw81_64/lib/libQt5Gui.a D:/app/Qt/5.15.2/mingw81_64/lib/libQt5Core.a D:/app/Qt/5.15.2/mingw81_64/lib/libqtmain.a ui_Group.h ui_ImageWidget.h ui_ImageWidget_nodrag.h ui_Login.h ui_MainWnd.h ui_Demo001_1.h ui_Demo001_2.h ui_Demo001_3.h ui_OriginalWnd.h $(OBJECTS)
  116. $(LINKER) $(LFLAGS) -o $(DESTDIR_TARGET) @object_script.project01.Release $(LIBS)
  117. qmake: FORCE
  118. @$(QMAKE) -o Makefile.Release D:\qt\project01\project01.pro -spec win32-g++ "CONFIG+=debug" "CONFIG+=qml_debug"
  119. qmake_all: FORCE
  120. dist:
  121. $(ZIP) project01.zip $(SOURCES) $(DIST) D:\qt\project01\project01.pro D:\app\Qt\5.15.2\mingw81_64\mkspecs\features\spec_pre.prf D:\app\Qt\5.15.2\mingw81_64\mkspecs\qdevice.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\features\device_config.prf D:\app\Qt\5.15.2\mingw81_64\mkspecs\common\sanitize.conf D:\app\Qt\5.15.2\mingw81_64\mkspecs\common\gcc-base.conf D:\app\Qt\5.15.2\mingw81_64\mkspecs\common\g++-base.conf D:\app\Qt\5.15.2\mingw81_64\mkspecs\common\angle.conf D:\app\Qt\5.15.2\mingw81_64\mkspecs\features\win32\windows_vulkan_sdk.prf D:\app\Qt\5.15.2\mingw81_64\mkspecs\common\windows-vulkan.conf D:\app\Qt\5.15.2\mingw81_64\mkspecs\common\g++-win32.conf D:\app\Qt\5.15.2\mingw81_64\mkspecs\common\windows-desktop.conf D:\app\Qt\5.15.2\mingw81_64\mkspecs\qconfig.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_3danimation.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_3danimation_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_3dcore.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_3dcore_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_3dextras.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_3dextras_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_3dinput.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_3dinput_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_3dlogic.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_3dlogic_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_3dquick.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_3dquick_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_3dquickanimation.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_3dquickanimation_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_3dquickextras.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_3dquickextras_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_3dquickinput.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_3dquickinput_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_3dquickrender.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_3dquickrender_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_3dquickscene2d.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_3dquickscene2d_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_3drender.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_3drender_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_accessibility_support_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_axbase.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_axbase_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_axcontainer.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_axcontainer_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_axserver.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_axserver_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_bluetooth.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_bluetooth_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_bootstrap_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_concurrent.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_concurrent_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_core.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_core_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_dbus.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_dbus_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_designer.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_designer_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_designercomponents_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_devicediscovery_support_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_edid_support_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_egl_support_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_eventdispatcher_support_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_fb_support_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_fontdatabase_support_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_gamepad.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_gamepad_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_gui.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_gui_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_help.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_help_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_location.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_location_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_multimedia.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_multimedia_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_multimediawidgets.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_multimediawidgets_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_network.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_network_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_nfc.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_nfc_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_opengl.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_opengl_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_openglextensions.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_openglextensions_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_packetprotocol_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_platformcompositor_support_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_positioning.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_positioning_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_positioningquick.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_positioningquick_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_printsupport.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_printsupport_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_qml.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_qml_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_qmldebug_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_qmldevtools_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_qmlmodels.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_qmlmodels_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_qmltest.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_qmltest_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_qmlworkerscript.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_qmlworkerscript_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_qtmultimediaquicktools_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_quick.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_quick_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_quickcontrols2.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_quickcontrols2_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_quickparticles_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_quickshapes_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_quicktemplates2.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_quicktemplates2_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_quickwidgets.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_quickwidgets_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_remoteobjects.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_remoteobjects_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_repparser.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_repparser_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_scxml.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_scxml_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_sensors.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_sensors_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_serialbus.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_serialbus_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_serialport.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_serialport_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_sql.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_sql_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_svg.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_svg_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_testlib.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_testlib_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_texttospeech.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_texttospeech_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_theme_support_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_uiplugin.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_uitools.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_uitools_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_vulkan_support_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_webchannel.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_webchannel_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_websockets.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_websockets_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_widgets.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_widgets_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_windowsuiautomation_support_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_winextras.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_winextras_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_xml.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_xml_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_xmlpatterns.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_xmlpatterns_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\modules\qt_lib_zlib_private.pri D:\app\Qt\5.15.2\mingw81_64\mkspecs\features\qt_functions.prf D:\app\Qt\5.15.2\mingw81_64\mkspecs\features\qt_config.prf D:\app\Qt\5.15.2\mingw81_64\mkspecs\win32-g++\qmake.conf D:\app\Qt\5.15.2\mingw81_64\mkspecs\features\spec_post.prf .qmake.stash D:\app\Qt\5.15.2\mingw81_64\mkspecs\features\exclusive_builds.prf D:\app\Qt\5.15.2\mingw81_64\mkspecs\features\toolchain.prf D:\app\Qt\5.15.2\mingw81_64\mkspecs\features\default_pre.prf D:\app\Qt\5.15.2\mingw81_64\mkspecs\features\win32\default_pre.prf D:\app\Qt\5.15.2\mingw81_64\mkspecs\features\resolve_config.prf D:\app\Qt\5.15.2\mingw81_64\mkspecs\features\exclusive_builds_post.prf D:\app\Qt\5.15.2\mingw81_64\mkspecs\features\default_post.prf D:\app\Qt\5.15.2\mingw81_64\mkspecs\features\build_pass.prf D:\app\Qt\5.15.2\mingw81_64\mkspecs\features\qml_debug.prf D:\app\Qt\5.15.2\mingw81_64\mkspecs\features\precompile_header.prf D:\app\Qt\5.15.2\mingw81_64\mkspecs\features\warn_on.prf D:\app\Qt\5.15.2\mingw81_64\mkspecs\features\qt.prf D:\app\Qt\5.15.2\mingw81_64\mkspecs\features\resources_functions.prf D:\app\Qt\5.15.2\mingw81_64\mkspecs\features\resources.prf D:\app\Qt\5.15.2\mingw81_64\mkspecs\features\moc.prf D:\app\Qt\5.15.2\mingw81_64\mkspecs\features\win32\opengl.prf D:\app\Qt\5.15.2\mingw81_64\mkspecs\features\uic.prf D:\app\Qt\5.15.2\mingw81_64\mkspecs\features\qmake_use.prf D:\app\Qt\5.15.2\mingw81_64\mkspecs\features\file_copies.prf D:\app\Qt\5.15.2\mingw81_64\mkspecs\features\win32\windows.prf D:\app\Qt\5.15.2\mingw81_64\mkspecs\features\testcase_targets.prf D:\app\Qt\5.15.2\mingw81_64\mkspecs\features\exceptions.prf D:\app\Qt\5.15.2\mingw81_64\mkspecs\features\yacc.prf D:\app\Qt\5.15.2\mingw81_64\mkspecs\features\lex.prf D:\qt\project01\project01.pro D:\qt\project01\res.qrc D:\app\Qt\5.15.2\mingw81_64\lib\Qt5Widgets.prl D:\app\Qt\5.15.2\mingw81_64\lib\Qt5Gui.prl D:\app\Qt\5.15.2\mingw81_64\lib\Qt5Core.prl D:\app\Qt\5.15.2\mingw81_64\lib\qtmain.prl D:\qt\project01\res.qrc D:\app\Qt\5.15.2\mingw81_64\mkspecs\features\data\dummy.cpp D:\qt\project01\Group.h D:\qt\project01\ImageWidget.h D:\qt\project01\ImageWidget_nodrag.h D:\qt\project01\Login.h D:\qt\project01\MainWnd.h D:\qt\project01\OriginalWnd\Demo001_1.h D:\qt\project01\OriginalWnd\Demo001_2.h D:\qt\project01\OriginalWnd\Demo001_3.h D:\qt\project01\OriginalWnd\OriginalWnd.h D:\qt\project01\OriginalWnd\treeviewmanager.h D:\qt\project01\Group.cpp D:\qt\project01\ImageWidget.cpp D:\qt\project01\ImageWidget_nodrag.cpp D:\qt\project01\Login.cpp D:\qt\project01\OriginalWnd\Demo001_1.cpp D:\qt\project01\OriginalWnd\Demo001_2.cpp D:\qt\project01\OriginalWnd\Demo001_3.cpp D:\qt\project01\OriginalWnd\OriginalWnd.cpp D:\qt\project01\OriginalWnd\treeviewmanager.cpp D:\qt\project01\main.cpp D:\qt\project01\MainWnd.cpp D:\qt\project01\Group.ui D:\qt\project01\ImageWidget.ui D:\qt\project01\ImageWidget_nodrag.ui D:\qt\project01\Login.ui D:\qt\project01\MainWnd.ui D:\qt\project01\OriginalWnd\Demo001_1.ui D:\qt\project01\OriginalWnd\Demo001_2.ui D:\qt\project01\OriginalWnd\Demo001_3.ui D:\qt\project01\OriginalWnd\OriginalWnd.ui
  122. clean: compiler_clean
  123. -$(DEL_FILE) release\Group.o release\ImageWidget.o release\ImageWidget_nodrag.o release\Login.o release\Demo001_1.o release\Demo001_2.o release\Demo001_3.o release\OriginalWnd.o release\treeviewmanager.o release\main.o release\MainWnd.o release\qrc_res.o release\moc_Group.o release\moc_ImageWidget.o release\moc_ImageWidget_nodrag.o release\moc_Login.o release\moc_MainWnd.o release\moc_Demo001_1.o release\moc_Demo001_2.o release\moc_Demo001_3.o release\moc_OriginalWnd.o release\moc_treeviewmanager.o
  124. distclean: clean
  125. -$(DEL_FILE) .qmake.stash
  126. -$(DEL_FILE) $(DESTDIR_TARGET)
  127. -$(DEL_FILE) Makefile.Release
  128. mocclean: compiler_moc_header_clean compiler_moc_objc_header_clean compiler_moc_source_clean
  129. mocables: compiler_moc_header_make_all compiler_moc_objc_header_make_all compiler_moc_source_make_all
  130. check: first
  131. benchmark: first
  132. compiler_no_pch_compiler_make_all:
  133. compiler_no_pch_compiler_clean:
  134. compiler_rcc_make_all: release/qrc_res.cpp
  135. compiler_rcc_clean:
  136. -$(DEL_FILE) release\qrc_res.cpp
  137. release/qrc_res.cpp: D:/qt/project01/res.qrc \
  138. D:/app/Qt/5.15.2/mingw81_64/bin/rcc.exe \
  139. D:/qt/project01/light.qss \
  140. D:/qt/project01/images/login_pass.png \
  141. D:/qt/project01/images/home_right.png \
  142. D:/qt/project01/images/home_minus.png \
  143. D:/qt/project01/images/home_openFile.png \
  144. D:/qt/project01/images/slider.png \
  145. D:/qt/project01/images/home_down.png \
  146. D:/qt/project01/images/two.png \
  147. D:/qt/project01/images/login.png \
  148. D:/qt/project01/images/home_left.png \
  149. D:/qt/project01/images/unknown_1.png \
  150. D:/qt/project01/images/unknown_2.png \
  151. D:/qt/project01/images/unknown_4_1.png \
  152. D:/qt/project01/images/unknown_3_1.png \
  153. D:/qt/project01/images/unknown_4_2.png \
  154. D:/qt/project01/images/home_add.png \
  155. D:/qt/project01/images/unknown_3_2.png \
  156. D:/qt/project01/images/unknown_2_2.png \
  157. D:/qt/project01/images/home_up.png \
  158. D:/qt/project01/images/one.png \
  159. D:/qt/project01/images/logo.png \
  160. D:/qt/project01/images/drop.png \
  161. D:/qt/project01/images/login_user.png \
  162. D:/qt/project01/images/light/Message.png \
  163. D:/qt/project01/images/light/Demo001_1.png \
  164. D:/qt/project01/images/light/Demo001_2.png \
  165. D:/qt/project01/images/light/Demo001_3.png \
  166. D:/qt/project01/images/light/Productionn\ assistance.png \
  167. D:/qt/project01/images/light/ruler.png \
  168. D:/qt/project01/images/light/System.png \
  169. D:/qt/project01/images/light/Diagnosis.png \
  170. D:/qt/project01/images/light/start.png \
  171. D:/qt/project01/images/light/pen.png \
  172. D:/qt/project01/images/light/Help.png \
  173. D:/qt/project01/images/light/user.png \
  174. D:/qt/project01/images/light/logo1.png \
  175. D:/qt/project01/images/light/Module.png \
  176. D:/qt/project01/images/light/Disposition.png \
  177. D:/qt/project01/images/light/logo.png \
  178. D:/qt/project01/images/light/zoom\ out.png \
  179. D:/qt/project01/images/light/stop.png \
  180. D:/qt/project01/images/light/home.png \
  181. D:/qt/project01/images/light/zoom\ up.png \
  182. D:/qt/project01/images/light/Program.png \
  183. D:/qt/project01/images/test_image/image_1.png \
  184. D:/qt/project01/images/test_image/image_5.png \
  185. D:/qt/project01/images/test_image/image_4.png \
  186. D:/qt/project01/images/test_image/image_8.png \
  187. D:/qt/project01/images/test_image/image_3.png \
  188. D:/qt/project01/images/test_image/image_7.png \
  189. D:/qt/project01/images/test_image/image_2.png \
  190. D:/qt/project01/images/test_image/image_6.png \
  191. D:/qt/project01/images/test_image/image.png \
  192. D:/qt/project01/images/deep/home.png \
  193. D:/qt/project01/images/deep/System.png \
  194. D:/qt/project01/images/deep/Module.png \
  195. D:/qt/project01/images/deep/Message.png \
  196. D:/qt/project01/images/deep/Disposition.png \
  197. D:/qt/project01/images/deep/Diagnosis.png \
  198. D:/qt/project01/images/deep/Productionn\ assistance.png \
  199. D:/qt/project01/images/deep/Program.png \
  200. D:/qt/project01/images/deep/Help.png \
  201. D:/qt/project01/config/menu_config.json
  202. D:\app\Qt\5.15.2\mingw81_64\bin\rcc.exe -name res D:\qt\project01\res.qrc -o release\qrc_res.cpp
  203. compiler_moc_predefs_make_all: release/moc_predefs.h
  204. compiler_moc_predefs_clean:
  205. -$(DEL_FILE) release\moc_predefs.h
  206. release/moc_predefs.h: D:/app/Qt/5.15.2/mingw81_64/mkspecs/features/data/dummy.cpp
  207. g++ -fno-keep-inline-dllexport -O2 -std=gnu++1z -Wall -Wextra -Wextra -dM -E -o release\moc_predefs.h D:\app\Qt\5.15.2\mingw81_64\mkspecs\features\data\dummy.cpp
  208. compiler_moc_header_make_all: release/moc_Group.cpp release/moc_ImageWidget.cpp release/moc_ImageWidget_nodrag.cpp release/moc_Login.cpp release/moc_MainWnd.cpp release/moc_Demo001_1.cpp release/moc_Demo001_2.cpp release/moc_Demo001_3.cpp release/moc_OriginalWnd.cpp release/moc_treeviewmanager.cpp
  209. compiler_moc_header_clean:
  210. -$(DEL_FILE) release\moc_Group.cpp release\moc_ImageWidget.cpp release\moc_ImageWidget_nodrag.cpp release\moc_Login.cpp release\moc_MainWnd.cpp release\moc_Demo001_1.cpp release\moc_Demo001_2.cpp release\moc_Demo001_3.cpp release\moc_OriginalWnd.cpp release\moc_treeviewmanager.cpp
  211. release/moc_Group.cpp: D:/qt/project01/Group.h \
  212. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QWidget \
  213. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qwidget.h \
  214. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtwidgetsglobal.h \
  215. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtguiglobal.h \
  216. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qglobal.h \
  217. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qconfig-bootstrapped.h \
  218. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qconfig.h \
  219. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtcore-config.h \
  220. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsystemdetection.h \
  221. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qprocessordetection.h \
  222. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcompilerdetection.h \
  223. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtypeinfo.h \
  224. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsysinfo.h \
  225. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlogging.h \
  226. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qflags.h \
  227. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic.h \
  228. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbasicatomic.h \
  229. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_bootstrap.h \
  230. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qgenericatomic.h \
  231. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_cxx11.h \
  232. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_msvc.h \
  233. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qglobalstatic.h \
  234. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmutex.h \
  235. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qnumeric.h \
  236. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qversiontagging.h \
  237. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtgui-config.h \
  238. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtwidgets-config.h \
  239. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qwindowdefs.h \
  240. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobjectdefs.h \
  241. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qnamespace.h \
  242. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobjectdefs_impl.h \
  243. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qwindowdefs_win.h \
  244. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobject.h \
  245. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstring.h \
  246. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qchar.h \
  247. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbytearray.h \
  248. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qrefcount.h \
  249. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qarraydata.h \
  250. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringliteral.h \
  251. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringalgorithms.h \
  252. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringview.h \
  253. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringbuilder.h \
  254. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlist.h \
  255. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qalgorithms.h \
  256. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qiterator.h \
  257. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qhashfunctions.h \
  258. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qpair.h \
  259. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvector.h \
  260. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontainertools_impl.h \
  261. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qpoint.h \
  262. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbytearraylist.h \
  263. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringlist.h \
  264. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qregexp.h \
  265. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringmatcher.h \
  266. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcoreevent.h \
  267. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qscopedpointer.h \
  268. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmetatype.h \
  269. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvarlengtharray.h \
  270. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontainerfwd.h \
  271. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobject_impl.h \
  272. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmargins.h \
  273. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpaintdevice.h \
  274. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qrect.h \
  275. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsize.h \
  276. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpalette.h \
  277. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qcolor.h \
  278. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qrgb.h \
  279. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qrgba64.h \
  280. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qbrush.h \
  281. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qmatrix.h \
  282. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpolygon.h \
  283. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qregion.h \
  284. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qdatastream.h \
  285. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qiodevice.h \
  286. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qline.h \
  287. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtransform.h \
  288. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qimage.h \
  289. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpixelformat.h \
  290. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpixmap.h \
  291. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsharedpointer.h \
  292. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qshareddata.h \
  293. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qhash.h \
  294. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsharedpointer_impl.h \
  295. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfont.h \
  296. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfontmetrics.h \
  297. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfontinfo.h \
  298. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qsizepolicy.h \
  299. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qcursor.h \
  300. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qkeysequence.h \
  301. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qevent.h \
  302. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvariant.h \
  303. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmap.h \
  304. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qdebug.h \
  305. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtextstream.h \
  306. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlocale.h \
  307. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qset.h \
  308. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontiguouscache.h \
  309. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qurl.h \
  310. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qurlquery.h \
  311. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qfile.h \
  312. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qfiledevice.h \
  313. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qvector2d.h \
  314. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtouchdevice.h \
  315. release/moc_predefs.h \
  316. D:/app/Qt/5.15.2/mingw81_64/bin/moc.exe
  317. D:\app\Qt\5.15.2\mingw81_64\bin\moc.exe $(DEFINES) --include D:/qt/project01/build/Desktop_Qt_5_15_2_MinGW_64_bit-Debug/release/moc_predefs.h -ID:/app/Qt/5.15.2/mingw81_64/mkspecs/win32-g++ -ID:/qt/project01 -ID:/app/Qt/5.15.2/msvc2019_64/include/qwt -ID:/app/Qt/5.15.2/mingw81_64/include -ID:/app/Qt/5.15.2/mingw81_64/include/QtWidgets -ID:/app/Qt/5.15.2/mingw81_64/include/QtGui -ID:/app/Qt/5.15.2/mingw81_64/include/QtANGLE -ID:/app/Qt/5.15.2/mingw81_64/include/QtCore -I. -ID:/app/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++ -ID:/app/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++/x86_64-w64-mingw32 -ID:/app/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++/backward -ID:/app/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include -ID:/app/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include-fixed -ID:/app/Qt/Tools/mingw810_64/x86_64-w64-mingw32/include D:\qt\project01\Group.h -o release\moc_Group.cpp
  318. release/moc_ImageWidget.cpp: D:/qt/project01/ImageWidget.h \
  319. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QWidget \
  320. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qwidget.h \
  321. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtwidgetsglobal.h \
  322. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtguiglobal.h \
  323. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qglobal.h \
  324. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qconfig-bootstrapped.h \
  325. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qconfig.h \
  326. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtcore-config.h \
  327. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsystemdetection.h \
  328. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qprocessordetection.h \
  329. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcompilerdetection.h \
  330. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtypeinfo.h \
  331. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsysinfo.h \
  332. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlogging.h \
  333. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qflags.h \
  334. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic.h \
  335. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbasicatomic.h \
  336. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_bootstrap.h \
  337. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qgenericatomic.h \
  338. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_cxx11.h \
  339. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_msvc.h \
  340. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qglobalstatic.h \
  341. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmutex.h \
  342. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qnumeric.h \
  343. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qversiontagging.h \
  344. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtgui-config.h \
  345. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtwidgets-config.h \
  346. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qwindowdefs.h \
  347. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobjectdefs.h \
  348. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qnamespace.h \
  349. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobjectdefs_impl.h \
  350. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qwindowdefs_win.h \
  351. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobject.h \
  352. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstring.h \
  353. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qchar.h \
  354. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbytearray.h \
  355. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qrefcount.h \
  356. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qarraydata.h \
  357. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringliteral.h \
  358. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringalgorithms.h \
  359. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringview.h \
  360. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringbuilder.h \
  361. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlist.h \
  362. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qalgorithms.h \
  363. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qiterator.h \
  364. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qhashfunctions.h \
  365. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qpair.h \
  366. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvector.h \
  367. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontainertools_impl.h \
  368. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qpoint.h \
  369. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbytearraylist.h \
  370. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringlist.h \
  371. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qregexp.h \
  372. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringmatcher.h \
  373. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcoreevent.h \
  374. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qscopedpointer.h \
  375. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmetatype.h \
  376. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvarlengtharray.h \
  377. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontainerfwd.h \
  378. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobject_impl.h \
  379. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmargins.h \
  380. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpaintdevice.h \
  381. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qrect.h \
  382. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsize.h \
  383. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpalette.h \
  384. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qcolor.h \
  385. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qrgb.h \
  386. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qrgba64.h \
  387. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qbrush.h \
  388. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qmatrix.h \
  389. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpolygon.h \
  390. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qregion.h \
  391. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qdatastream.h \
  392. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qiodevice.h \
  393. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qline.h \
  394. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtransform.h \
  395. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qimage.h \
  396. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpixelformat.h \
  397. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpixmap.h \
  398. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsharedpointer.h \
  399. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qshareddata.h \
  400. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qhash.h \
  401. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsharedpointer_impl.h \
  402. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfont.h \
  403. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfontmetrics.h \
  404. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfontinfo.h \
  405. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qsizepolicy.h \
  406. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qcursor.h \
  407. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qkeysequence.h \
  408. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qevent.h \
  409. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvariant.h \
  410. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmap.h \
  411. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qdebug.h \
  412. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtextstream.h \
  413. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlocale.h \
  414. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qset.h \
  415. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontiguouscache.h \
  416. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qurl.h \
  417. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qurlquery.h \
  418. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qfile.h \
  419. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qfiledevice.h \
  420. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qvector2d.h \
  421. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtouchdevice.h \
  422. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/QPixmap \
  423. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/QMouseEvent \
  424. release/moc_predefs.h \
  425. D:/app/Qt/5.15.2/mingw81_64/bin/moc.exe
  426. D:\app\Qt\5.15.2\mingw81_64\bin\moc.exe $(DEFINES) --include D:/qt/project01/build/Desktop_Qt_5_15_2_MinGW_64_bit-Debug/release/moc_predefs.h -ID:/app/Qt/5.15.2/mingw81_64/mkspecs/win32-g++ -ID:/qt/project01 -ID:/app/Qt/5.15.2/msvc2019_64/include/qwt -ID:/app/Qt/5.15.2/mingw81_64/include -ID:/app/Qt/5.15.2/mingw81_64/include/QtWidgets -ID:/app/Qt/5.15.2/mingw81_64/include/QtGui -ID:/app/Qt/5.15.2/mingw81_64/include/QtANGLE -ID:/app/Qt/5.15.2/mingw81_64/include/QtCore -I. -ID:/app/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++ -ID:/app/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++/x86_64-w64-mingw32 -ID:/app/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++/backward -ID:/app/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include -ID:/app/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include-fixed -ID:/app/Qt/Tools/mingw810_64/x86_64-w64-mingw32/include D:\qt\project01\ImageWidget.h -o release\moc_ImageWidget.cpp
  427. release/moc_ImageWidget_nodrag.cpp: D:/qt/project01/ImageWidget_nodrag.h \
  428. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QWidget \
  429. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qwidget.h \
  430. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtwidgetsglobal.h \
  431. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtguiglobal.h \
  432. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qglobal.h \
  433. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qconfig-bootstrapped.h \
  434. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qconfig.h \
  435. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtcore-config.h \
  436. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsystemdetection.h \
  437. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qprocessordetection.h \
  438. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcompilerdetection.h \
  439. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtypeinfo.h \
  440. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsysinfo.h \
  441. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlogging.h \
  442. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qflags.h \
  443. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic.h \
  444. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbasicatomic.h \
  445. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_bootstrap.h \
  446. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qgenericatomic.h \
  447. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_cxx11.h \
  448. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_msvc.h \
  449. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qglobalstatic.h \
  450. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmutex.h \
  451. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qnumeric.h \
  452. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qversiontagging.h \
  453. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtgui-config.h \
  454. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtwidgets-config.h \
  455. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qwindowdefs.h \
  456. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobjectdefs.h \
  457. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qnamespace.h \
  458. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobjectdefs_impl.h \
  459. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qwindowdefs_win.h \
  460. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobject.h \
  461. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstring.h \
  462. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qchar.h \
  463. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbytearray.h \
  464. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qrefcount.h \
  465. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qarraydata.h \
  466. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringliteral.h \
  467. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringalgorithms.h \
  468. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringview.h \
  469. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringbuilder.h \
  470. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlist.h \
  471. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qalgorithms.h \
  472. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qiterator.h \
  473. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qhashfunctions.h \
  474. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qpair.h \
  475. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvector.h \
  476. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontainertools_impl.h \
  477. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qpoint.h \
  478. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbytearraylist.h \
  479. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringlist.h \
  480. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qregexp.h \
  481. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringmatcher.h \
  482. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcoreevent.h \
  483. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qscopedpointer.h \
  484. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmetatype.h \
  485. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvarlengtharray.h \
  486. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontainerfwd.h \
  487. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobject_impl.h \
  488. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmargins.h \
  489. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpaintdevice.h \
  490. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qrect.h \
  491. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsize.h \
  492. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpalette.h \
  493. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qcolor.h \
  494. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qrgb.h \
  495. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qrgba64.h \
  496. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qbrush.h \
  497. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qmatrix.h \
  498. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpolygon.h \
  499. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qregion.h \
  500. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qdatastream.h \
  501. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qiodevice.h \
  502. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qline.h \
  503. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtransform.h \
  504. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qimage.h \
  505. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpixelformat.h \
  506. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpixmap.h \
  507. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsharedpointer.h \
  508. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qshareddata.h \
  509. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qhash.h \
  510. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsharedpointer_impl.h \
  511. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfont.h \
  512. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfontmetrics.h \
  513. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfontinfo.h \
  514. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qsizepolicy.h \
  515. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qcursor.h \
  516. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qkeysequence.h \
  517. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qevent.h \
  518. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvariant.h \
  519. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmap.h \
  520. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qdebug.h \
  521. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtextstream.h \
  522. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlocale.h \
  523. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qset.h \
  524. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontiguouscache.h \
  525. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qurl.h \
  526. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qurlquery.h \
  527. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qfile.h \
  528. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qfiledevice.h \
  529. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qvector2d.h \
  530. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtouchdevice.h \
  531. release/moc_predefs.h \
  532. D:/app/Qt/5.15.2/mingw81_64/bin/moc.exe
  533. D:\app\Qt\5.15.2\mingw81_64\bin\moc.exe $(DEFINES) --include D:/qt/project01/build/Desktop_Qt_5_15_2_MinGW_64_bit-Debug/release/moc_predefs.h -ID:/app/Qt/5.15.2/mingw81_64/mkspecs/win32-g++ -ID:/qt/project01 -ID:/app/Qt/5.15.2/msvc2019_64/include/qwt -ID:/app/Qt/5.15.2/mingw81_64/include -ID:/app/Qt/5.15.2/mingw81_64/include/QtWidgets -ID:/app/Qt/5.15.2/mingw81_64/include/QtGui -ID:/app/Qt/5.15.2/mingw81_64/include/QtANGLE -ID:/app/Qt/5.15.2/mingw81_64/include/QtCore -I. -ID:/app/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++ -ID:/app/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++/x86_64-w64-mingw32 -ID:/app/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++/backward -ID:/app/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include -ID:/app/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include-fixed -ID:/app/Qt/Tools/mingw810_64/x86_64-w64-mingw32/include D:\qt\project01\ImageWidget_nodrag.h -o release\moc_ImageWidget_nodrag.cpp
  534. release/moc_Login.cpp: D:/qt/project01/Login.h \
  535. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QMainWindow \
  536. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qmainwindow.h \
  537. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtwidgetsglobal.h \
  538. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtguiglobal.h \
  539. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qglobal.h \
  540. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qconfig-bootstrapped.h \
  541. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qconfig.h \
  542. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtcore-config.h \
  543. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsystemdetection.h \
  544. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qprocessordetection.h \
  545. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcompilerdetection.h \
  546. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtypeinfo.h \
  547. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsysinfo.h \
  548. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlogging.h \
  549. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qflags.h \
  550. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic.h \
  551. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbasicatomic.h \
  552. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_bootstrap.h \
  553. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qgenericatomic.h \
  554. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_cxx11.h \
  555. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_msvc.h \
  556. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qglobalstatic.h \
  557. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmutex.h \
  558. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qnumeric.h \
  559. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qversiontagging.h \
  560. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtgui-config.h \
  561. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtwidgets-config.h \
  562. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qwidget.h \
  563. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qwindowdefs.h \
  564. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobjectdefs.h \
  565. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qnamespace.h \
  566. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobjectdefs_impl.h \
  567. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qwindowdefs_win.h \
  568. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobject.h \
  569. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstring.h \
  570. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qchar.h \
  571. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbytearray.h \
  572. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qrefcount.h \
  573. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qarraydata.h \
  574. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringliteral.h \
  575. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringalgorithms.h \
  576. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringview.h \
  577. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringbuilder.h \
  578. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlist.h \
  579. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qalgorithms.h \
  580. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qiterator.h \
  581. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qhashfunctions.h \
  582. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qpair.h \
  583. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvector.h \
  584. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontainertools_impl.h \
  585. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qpoint.h \
  586. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbytearraylist.h \
  587. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringlist.h \
  588. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qregexp.h \
  589. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringmatcher.h \
  590. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcoreevent.h \
  591. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qscopedpointer.h \
  592. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmetatype.h \
  593. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvarlengtharray.h \
  594. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontainerfwd.h \
  595. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobject_impl.h \
  596. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmargins.h \
  597. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpaintdevice.h \
  598. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qrect.h \
  599. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsize.h \
  600. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpalette.h \
  601. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qcolor.h \
  602. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qrgb.h \
  603. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qrgba64.h \
  604. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qbrush.h \
  605. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qmatrix.h \
  606. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpolygon.h \
  607. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qregion.h \
  608. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qdatastream.h \
  609. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qiodevice.h \
  610. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qline.h \
  611. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtransform.h \
  612. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qimage.h \
  613. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpixelformat.h \
  614. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpixmap.h \
  615. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsharedpointer.h \
  616. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qshareddata.h \
  617. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qhash.h \
  618. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsharedpointer_impl.h \
  619. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfont.h \
  620. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfontmetrics.h \
  621. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfontinfo.h \
  622. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qsizepolicy.h \
  623. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qcursor.h \
  624. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qkeysequence.h \
  625. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qevent.h \
  626. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvariant.h \
  627. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmap.h \
  628. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qdebug.h \
  629. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtextstream.h \
  630. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlocale.h \
  631. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qset.h \
  632. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontiguouscache.h \
  633. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qurl.h \
  634. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qurlquery.h \
  635. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qfile.h \
  636. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qfiledevice.h \
  637. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qvector2d.h \
  638. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtouchdevice.h \
  639. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtabwidget.h \
  640. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qicon.h \
  641. release/moc_predefs.h \
  642. D:/app/Qt/5.15.2/mingw81_64/bin/moc.exe
  643. D:\app\Qt\5.15.2\mingw81_64\bin\moc.exe $(DEFINES) --include D:/qt/project01/build/Desktop_Qt_5_15_2_MinGW_64_bit-Debug/release/moc_predefs.h -ID:/app/Qt/5.15.2/mingw81_64/mkspecs/win32-g++ -ID:/qt/project01 -ID:/app/Qt/5.15.2/msvc2019_64/include/qwt -ID:/app/Qt/5.15.2/mingw81_64/include -ID:/app/Qt/5.15.2/mingw81_64/include/QtWidgets -ID:/app/Qt/5.15.2/mingw81_64/include/QtGui -ID:/app/Qt/5.15.2/mingw81_64/include/QtANGLE -ID:/app/Qt/5.15.2/mingw81_64/include/QtCore -I. -ID:/app/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++ -ID:/app/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++/x86_64-w64-mingw32 -ID:/app/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++/backward -ID:/app/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include -ID:/app/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include-fixed -ID:/app/Qt/Tools/mingw810_64/x86_64-w64-mingw32/include D:\qt\project01\Login.h -o release\moc_Login.cpp
  644. release/moc_MainWnd.cpp: D:/qt/project01/MainWnd.h \
  645. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QMainWindow \
  646. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qmainwindow.h \
  647. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtwidgetsglobal.h \
  648. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtguiglobal.h \
  649. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qglobal.h \
  650. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qconfig-bootstrapped.h \
  651. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qconfig.h \
  652. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtcore-config.h \
  653. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsystemdetection.h \
  654. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qprocessordetection.h \
  655. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcompilerdetection.h \
  656. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtypeinfo.h \
  657. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsysinfo.h \
  658. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlogging.h \
  659. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qflags.h \
  660. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic.h \
  661. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbasicatomic.h \
  662. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_bootstrap.h \
  663. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qgenericatomic.h \
  664. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_cxx11.h \
  665. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_msvc.h \
  666. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qglobalstatic.h \
  667. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmutex.h \
  668. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qnumeric.h \
  669. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qversiontagging.h \
  670. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtgui-config.h \
  671. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtwidgets-config.h \
  672. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qwidget.h \
  673. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qwindowdefs.h \
  674. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobjectdefs.h \
  675. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qnamespace.h \
  676. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobjectdefs_impl.h \
  677. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qwindowdefs_win.h \
  678. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobject.h \
  679. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstring.h \
  680. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qchar.h \
  681. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbytearray.h \
  682. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qrefcount.h \
  683. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qarraydata.h \
  684. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringliteral.h \
  685. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringalgorithms.h \
  686. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringview.h \
  687. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringbuilder.h \
  688. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlist.h \
  689. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qalgorithms.h \
  690. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qiterator.h \
  691. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qhashfunctions.h \
  692. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qpair.h \
  693. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvector.h \
  694. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontainertools_impl.h \
  695. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qpoint.h \
  696. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbytearraylist.h \
  697. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringlist.h \
  698. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qregexp.h \
  699. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringmatcher.h \
  700. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcoreevent.h \
  701. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qscopedpointer.h \
  702. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmetatype.h \
  703. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvarlengtharray.h \
  704. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontainerfwd.h \
  705. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobject_impl.h \
  706. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmargins.h \
  707. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpaintdevice.h \
  708. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qrect.h \
  709. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsize.h \
  710. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpalette.h \
  711. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qcolor.h \
  712. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qrgb.h \
  713. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qrgba64.h \
  714. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qbrush.h \
  715. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qmatrix.h \
  716. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpolygon.h \
  717. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qregion.h \
  718. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qdatastream.h \
  719. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qiodevice.h \
  720. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qline.h \
  721. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtransform.h \
  722. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qimage.h \
  723. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpixelformat.h \
  724. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpixmap.h \
  725. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsharedpointer.h \
  726. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qshareddata.h \
  727. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qhash.h \
  728. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsharedpointer_impl.h \
  729. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfont.h \
  730. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfontmetrics.h \
  731. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfontinfo.h \
  732. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qsizepolicy.h \
  733. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qcursor.h \
  734. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qkeysequence.h \
  735. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qevent.h \
  736. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvariant.h \
  737. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmap.h \
  738. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qdebug.h \
  739. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtextstream.h \
  740. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlocale.h \
  741. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qset.h \
  742. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontiguouscache.h \
  743. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qurl.h \
  744. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qurlquery.h \
  745. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qfile.h \
  746. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qfiledevice.h \
  747. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qvector2d.h \
  748. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtouchdevice.h \
  749. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtabwidget.h \
  750. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qicon.h \
  751. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QToolButton \
  752. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtoolbutton.h \
  753. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qabstractbutton.h \
  754. release/moc_predefs.h \
  755. D:/app/Qt/5.15.2/mingw81_64/bin/moc.exe
  756. D:\app\Qt\5.15.2\mingw81_64\bin\moc.exe $(DEFINES) --include D:/qt/project01/build/Desktop_Qt_5_15_2_MinGW_64_bit-Debug/release/moc_predefs.h -ID:/app/Qt/5.15.2/mingw81_64/mkspecs/win32-g++ -ID:/qt/project01 -ID:/app/Qt/5.15.2/msvc2019_64/include/qwt -ID:/app/Qt/5.15.2/mingw81_64/include -ID:/app/Qt/5.15.2/mingw81_64/include/QtWidgets -ID:/app/Qt/5.15.2/mingw81_64/include/QtGui -ID:/app/Qt/5.15.2/mingw81_64/include/QtANGLE -ID:/app/Qt/5.15.2/mingw81_64/include/QtCore -I. -ID:/app/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++ -ID:/app/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++/x86_64-w64-mingw32 -ID:/app/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++/backward -ID:/app/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include -ID:/app/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include-fixed -ID:/app/Qt/Tools/mingw810_64/x86_64-w64-mingw32/include D:\qt\project01\MainWnd.h -o release\moc_MainWnd.cpp
  757. release/moc_Demo001_1.cpp: D:/qt/project01/OriginalWnd/Demo001_1.h \
  758. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QMainWindow \
  759. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qmainwindow.h \
  760. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtwidgetsglobal.h \
  761. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtguiglobal.h \
  762. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qglobal.h \
  763. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qconfig-bootstrapped.h \
  764. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qconfig.h \
  765. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtcore-config.h \
  766. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsystemdetection.h \
  767. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qprocessordetection.h \
  768. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcompilerdetection.h \
  769. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtypeinfo.h \
  770. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsysinfo.h \
  771. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlogging.h \
  772. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qflags.h \
  773. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic.h \
  774. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbasicatomic.h \
  775. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_bootstrap.h \
  776. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qgenericatomic.h \
  777. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_cxx11.h \
  778. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_msvc.h \
  779. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qglobalstatic.h \
  780. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmutex.h \
  781. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qnumeric.h \
  782. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qversiontagging.h \
  783. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtgui-config.h \
  784. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtwidgets-config.h \
  785. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qwidget.h \
  786. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qwindowdefs.h \
  787. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobjectdefs.h \
  788. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qnamespace.h \
  789. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobjectdefs_impl.h \
  790. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qwindowdefs_win.h \
  791. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobject.h \
  792. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstring.h \
  793. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qchar.h \
  794. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbytearray.h \
  795. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qrefcount.h \
  796. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qarraydata.h \
  797. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringliteral.h \
  798. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringalgorithms.h \
  799. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringview.h \
  800. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringbuilder.h \
  801. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlist.h \
  802. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qalgorithms.h \
  803. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qiterator.h \
  804. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qhashfunctions.h \
  805. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qpair.h \
  806. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvector.h \
  807. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontainertools_impl.h \
  808. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qpoint.h \
  809. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbytearraylist.h \
  810. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringlist.h \
  811. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qregexp.h \
  812. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringmatcher.h \
  813. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcoreevent.h \
  814. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qscopedpointer.h \
  815. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmetatype.h \
  816. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvarlengtharray.h \
  817. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontainerfwd.h \
  818. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobject_impl.h \
  819. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmargins.h \
  820. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpaintdevice.h \
  821. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qrect.h \
  822. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsize.h \
  823. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpalette.h \
  824. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qcolor.h \
  825. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qrgb.h \
  826. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qrgba64.h \
  827. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qbrush.h \
  828. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qmatrix.h \
  829. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpolygon.h \
  830. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qregion.h \
  831. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qdatastream.h \
  832. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qiodevice.h \
  833. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qline.h \
  834. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtransform.h \
  835. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qimage.h \
  836. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpixelformat.h \
  837. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpixmap.h \
  838. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsharedpointer.h \
  839. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qshareddata.h \
  840. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qhash.h \
  841. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsharedpointer_impl.h \
  842. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfont.h \
  843. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfontmetrics.h \
  844. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfontinfo.h \
  845. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qsizepolicy.h \
  846. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qcursor.h \
  847. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qkeysequence.h \
  848. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qevent.h \
  849. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvariant.h \
  850. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmap.h \
  851. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qdebug.h \
  852. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtextstream.h \
  853. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlocale.h \
  854. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qset.h \
  855. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontiguouscache.h \
  856. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qurl.h \
  857. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qurlquery.h \
  858. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qfile.h \
  859. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qfiledevice.h \
  860. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qvector2d.h \
  861. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtouchdevice.h \
  862. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtabwidget.h \
  863. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qicon.h \
  864. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QSlider \
  865. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qslider.h \
  866. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qabstractslider.h \
  867. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QLineEdit \
  868. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qlineedit.h \
  869. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qframe.h \
  870. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtextcursor.h \
  871. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtextformat.h \
  872. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpen.h \
  873. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtextoption.h \
  874. release/moc_predefs.h \
  875. D:/app/Qt/5.15.2/mingw81_64/bin/moc.exe
  876. D:\app\Qt\5.15.2\mingw81_64\bin\moc.exe $(DEFINES) --include D:/qt/project01/build/Desktop_Qt_5_15_2_MinGW_64_bit-Debug/release/moc_predefs.h -ID:/app/Qt/5.15.2/mingw81_64/mkspecs/win32-g++ -ID:/qt/project01 -ID:/app/Qt/5.15.2/msvc2019_64/include/qwt -ID:/app/Qt/5.15.2/mingw81_64/include -ID:/app/Qt/5.15.2/mingw81_64/include/QtWidgets -ID:/app/Qt/5.15.2/mingw81_64/include/QtGui -ID:/app/Qt/5.15.2/mingw81_64/include/QtANGLE -ID:/app/Qt/5.15.2/mingw81_64/include/QtCore -I. -ID:/app/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++ -ID:/app/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++/x86_64-w64-mingw32 -ID:/app/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++/backward -ID:/app/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include -ID:/app/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include-fixed -ID:/app/Qt/Tools/mingw810_64/x86_64-w64-mingw32/include D:\qt\project01\OriginalWnd\Demo001_1.h -o release\moc_Demo001_1.cpp
  877. release/moc_Demo001_2.cpp: D:/qt/project01/OriginalWnd/Demo001_2.h \
  878. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QMainWindow \
  879. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qmainwindow.h \
  880. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtwidgetsglobal.h \
  881. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtguiglobal.h \
  882. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qglobal.h \
  883. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qconfig-bootstrapped.h \
  884. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qconfig.h \
  885. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtcore-config.h \
  886. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsystemdetection.h \
  887. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qprocessordetection.h \
  888. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcompilerdetection.h \
  889. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtypeinfo.h \
  890. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsysinfo.h \
  891. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlogging.h \
  892. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qflags.h \
  893. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic.h \
  894. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbasicatomic.h \
  895. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_bootstrap.h \
  896. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qgenericatomic.h \
  897. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_cxx11.h \
  898. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_msvc.h \
  899. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qglobalstatic.h \
  900. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmutex.h \
  901. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qnumeric.h \
  902. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qversiontagging.h \
  903. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtgui-config.h \
  904. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtwidgets-config.h \
  905. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qwidget.h \
  906. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qwindowdefs.h \
  907. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobjectdefs.h \
  908. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qnamespace.h \
  909. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobjectdefs_impl.h \
  910. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qwindowdefs_win.h \
  911. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobject.h \
  912. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstring.h \
  913. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qchar.h \
  914. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbytearray.h \
  915. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qrefcount.h \
  916. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qarraydata.h \
  917. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringliteral.h \
  918. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringalgorithms.h \
  919. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringview.h \
  920. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringbuilder.h \
  921. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlist.h \
  922. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qalgorithms.h \
  923. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qiterator.h \
  924. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qhashfunctions.h \
  925. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qpair.h \
  926. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvector.h \
  927. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontainertools_impl.h \
  928. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qpoint.h \
  929. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbytearraylist.h \
  930. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringlist.h \
  931. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qregexp.h \
  932. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringmatcher.h \
  933. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcoreevent.h \
  934. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qscopedpointer.h \
  935. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmetatype.h \
  936. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvarlengtharray.h \
  937. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontainerfwd.h \
  938. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobject_impl.h \
  939. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmargins.h \
  940. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpaintdevice.h \
  941. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qrect.h \
  942. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsize.h \
  943. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpalette.h \
  944. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qcolor.h \
  945. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qrgb.h \
  946. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qrgba64.h \
  947. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qbrush.h \
  948. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qmatrix.h \
  949. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpolygon.h \
  950. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qregion.h \
  951. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qdatastream.h \
  952. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qiodevice.h \
  953. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qline.h \
  954. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtransform.h \
  955. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qimage.h \
  956. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpixelformat.h \
  957. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpixmap.h \
  958. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsharedpointer.h \
  959. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qshareddata.h \
  960. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qhash.h \
  961. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsharedpointer_impl.h \
  962. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfont.h \
  963. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfontmetrics.h \
  964. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfontinfo.h \
  965. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qsizepolicy.h \
  966. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qcursor.h \
  967. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qkeysequence.h \
  968. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qevent.h \
  969. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvariant.h \
  970. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmap.h \
  971. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qdebug.h \
  972. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtextstream.h \
  973. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlocale.h \
  974. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qset.h \
  975. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontiguouscache.h \
  976. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qurl.h \
  977. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qurlquery.h \
  978. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qfile.h \
  979. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qfiledevice.h \
  980. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qvector2d.h \
  981. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtouchdevice.h \
  982. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtabwidget.h \
  983. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qicon.h \
  984. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QSlider \
  985. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qslider.h \
  986. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qabstractslider.h \
  987. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QLineEdit \
  988. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qlineedit.h \
  989. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qframe.h \
  990. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtextcursor.h \
  991. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtextformat.h \
  992. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpen.h \
  993. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtextoption.h \
  994. release/moc_predefs.h \
  995. D:/app/Qt/5.15.2/mingw81_64/bin/moc.exe
  996. D:\app\Qt\5.15.2\mingw81_64\bin\moc.exe $(DEFINES) --include D:/qt/project01/build/Desktop_Qt_5_15_2_MinGW_64_bit-Debug/release/moc_predefs.h -ID:/app/Qt/5.15.2/mingw81_64/mkspecs/win32-g++ -ID:/qt/project01 -ID:/app/Qt/5.15.2/msvc2019_64/include/qwt -ID:/app/Qt/5.15.2/mingw81_64/include -ID:/app/Qt/5.15.2/mingw81_64/include/QtWidgets -ID:/app/Qt/5.15.2/mingw81_64/include/QtGui -ID:/app/Qt/5.15.2/mingw81_64/include/QtANGLE -ID:/app/Qt/5.15.2/mingw81_64/include/QtCore -I. -ID:/app/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++ -ID:/app/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++/x86_64-w64-mingw32 -ID:/app/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++/backward -ID:/app/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include -ID:/app/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include-fixed -ID:/app/Qt/Tools/mingw810_64/x86_64-w64-mingw32/include D:\qt\project01\OriginalWnd\Demo001_2.h -o release\moc_Demo001_2.cpp
  997. release/moc_Demo001_3.cpp: D:/qt/project01/OriginalWnd/Demo001_3.h \
  998. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QMainWindow \
  999. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qmainwindow.h \
  1000. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtwidgetsglobal.h \
  1001. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtguiglobal.h \
  1002. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qglobal.h \
  1003. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qconfig-bootstrapped.h \
  1004. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qconfig.h \
  1005. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtcore-config.h \
  1006. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsystemdetection.h \
  1007. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qprocessordetection.h \
  1008. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcompilerdetection.h \
  1009. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtypeinfo.h \
  1010. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsysinfo.h \
  1011. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlogging.h \
  1012. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qflags.h \
  1013. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic.h \
  1014. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbasicatomic.h \
  1015. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_bootstrap.h \
  1016. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qgenericatomic.h \
  1017. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_cxx11.h \
  1018. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_msvc.h \
  1019. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qglobalstatic.h \
  1020. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmutex.h \
  1021. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qnumeric.h \
  1022. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qversiontagging.h \
  1023. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtgui-config.h \
  1024. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtwidgets-config.h \
  1025. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qwidget.h \
  1026. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qwindowdefs.h \
  1027. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobjectdefs.h \
  1028. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qnamespace.h \
  1029. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobjectdefs_impl.h \
  1030. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qwindowdefs_win.h \
  1031. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobject.h \
  1032. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstring.h \
  1033. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qchar.h \
  1034. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbytearray.h \
  1035. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qrefcount.h \
  1036. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qarraydata.h \
  1037. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringliteral.h \
  1038. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringalgorithms.h \
  1039. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringview.h \
  1040. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringbuilder.h \
  1041. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlist.h \
  1042. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qalgorithms.h \
  1043. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qiterator.h \
  1044. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qhashfunctions.h \
  1045. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qpair.h \
  1046. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvector.h \
  1047. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontainertools_impl.h \
  1048. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qpoint.h \
  1049. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbytearraylist.h \
  1050. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringlist.h \
  1051. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qregexp.h \
  1052. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringmatcher.h \
  1053. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcoreevent.h \
  1054. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qscopedpointer.h \
  1055. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmetatype.h \
  1056. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvarlengtharray.h \
  1057. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontainerfwd.h \
  1058. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobject_impl.h \
  1059. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmargins.h \
  1060. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpaintdevice.h \
  1061. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qrect.h \
  1062. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsize.h \
  1063. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpalette.h \
  1064. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qcolor.h \
  1065. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qrgb.h \
  1066. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qrgba64.h \
  1067. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qbrush.h \
  1068. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qmatrix.h \
  1069. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpolygon.h \
  1070. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qregion.h \
  1071. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qdatastream.h \
  1072. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qiodevice.h \
  1073. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qline.h \
  1074. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtransform.h \
  1075. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qimage.h \
  1076. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpixelformat.h \
  1077. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpixmap.h \
  1078. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsharedpointer.h \
  1079. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qshareddata.h \
  1080. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qhash.h \
  1081. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsharedpointer_impl.h \
  1082. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfont.h \
  1083. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfontmetrics.h \
  1084. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfontinfo.h \
  1085. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qsizepolicy.h \
  1086. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qcursor.h \
  1087. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qkeysequence.h \
  1088. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qevent.h \
  1089. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvariant.h \
  1090. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmap.h \
  1091. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qdebug.h \
  1092. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtextstream.h \
  1093. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlocale.h \
  1094. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qset.h \
  1095. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontiguouscache.h \
  1096. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qurl.h \
  1097. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qurlquery.h \
  1098. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qfile.h \
  1099. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qfiledevice.h \
  1100. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qvector2d.h \
  1101. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtouchdevice.h \
  1102. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtabwidget.h \
  1103. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qicon.h \
  1104. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QSlider \
  1105. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qslider.h \
  1106. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qabstractslider.h \
  1107. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QLineEdit \
  1108. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qlineedit.h \
  1109. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qframe.h \
  1110. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtextcursor.h \
  1111. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtextformat.h \
  1112. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpen.h \
  1113. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtextoption.h \
  1114. release/moc_predefs.h \
  1115. D:/app/Qt/5.15.2/mingw81_64/bin/moc.exe
  1116. D:\app\Qt\5.15.2\mingw81_64\bin\moc.exe $(DEFINES) --include D:/qt/project01/build/Desktop_Qt_5_15_2_MinGW_64_bit-Debug/release/moc_predefs.h -ID:/app/Qt/5.15.2/mingw81_64/mkspecs/win32-g++ -ID:/qt/project01 -ID:/app/Qt/5.15.2/msvc2019_64/include/qwt -ID:/app/Qt/5.15.2/mingw81_64/include -ID:/app/Qt/5.15.2/mingw81_64/include/QtWidgets -ID:/app/Qt/5.15.2/mingw81_64/include/QtGui -ID:/app/Qt/5.15.2/mingw81_64/include/QtANGLE -ID:/app/Qt/5.15.2/mingw81_64/include/QtCore -I. -ID:/app/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++ -ID:/app/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++/x86_64-w64-mingw32 -ID:/app/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++/backward -ID:/app/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include -ID:/app/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include-fixed -ID:/app/Qt/Tools/mingw810_64/x86_64-w64-mingw32/include D:\qt\project01\OriginalWnd\Demo001_3.h -o release\moc_Demo001_3.cpp
  1117. release/moc_OriginalWnd.cpp: D:/qt/project01/OriginalWnd/OriginalWnd.h \
  1118. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QMainWindow \
  1119. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qmainwindow.h \
  1120. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtwidgetsglobal.h \
  1121. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtguiglobal.h \
  1122. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qglobal.h \
  1123. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qconfig-bootstrapped.h \
  1124. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qconfig.h \
  1125. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtcore-config.h \
  1126. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsystemdetection.h \
  1127. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qprocessordetection.h \
  1128. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcompilerdetection.h \
  1129. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtypeinfo.h \
  1130. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsysinfo.h \
  1131. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlogging.h \
  1132. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qflags.h \
  1133. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic.h \
  1134. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbasicatomic.h \
  1135. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_bootstrap.h \
  1136. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qgenericatomic.h \
  1137. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_cxx11.h \
  1138. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_msvc.h \
  1139. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qglobalstatic.h \
  1140. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmutex.h \
  1141. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qnumeric.h \
  1142. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qversiontagging.h \
  1143. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtgui-config.h \
  1144. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtwidgets-config.h \
  1145. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qwidget.h \
  1146. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qwindowdefs.h \
  1147. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobjectdefs.h \
  1148. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qnamespace.h \
  1149. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobjectdefs_impl.h \
  1150. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qwindowdefs_win.h \
  1151. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobject.h \
  1152. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstring.h \
  1153. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qchar.h \
  1154. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbytearray.h \
  1155. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qrefcount.h \
  1156. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qarraydata.h \
  1157. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringliteral.h \
  1158. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringalgorithms.h \
  1159. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringview.h \
  1160. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringbuilder.h \
  1161. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlist.h \
  1162. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qalgorithms.h \
  1163. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qiterator.h \
  1164. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qhashfunctions.h \
  1165. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qpair.h \
  1166. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvector.h \
  1167. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontainertools_impl.h \
  1168. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qpoint.h \
  1169. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbytearraylist.h \
  1170. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringlist.h \
  1171. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qregexp.h \
  1172. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringmatcher.h \
  1173. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcoreevent.h \
  1174. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qscopedpointer.h \
  1175. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmetatype.h \
  1176. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvarlengtharray.h \
  1177. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontainerfwd.h \
  1178. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobject_impl.h \
  1179. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmargins.h \
  1180. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpaintdevice.h \
  1181. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qrect.h \
  1182. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsize.h \
  1183. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpalette.h \
  1184. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qcolor.h \
  1185. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qrgb.h \
  1186. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qrgba64.h \
  1187. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qbrush.h \
  1188. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qmatrix.h \
  1189. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpolygon.h \
  1190. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qregion.h \
  1191. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qdatastream.h \
  1192. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qiodevice.h \
  1193. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qline.h \
  1194. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtransform.h \
  1195. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qimage.h \
  1196. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpixelformat.h \
  1197. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpixmap.h \
  1198. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsharedpointer.h \
  1199. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qshareddata.h \
  1200. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qhash.h \
  1201. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsharedpointer_impl.h \
  1202. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfont.h \
  1203. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfontmetrics.h \
  1204. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfontinfo.h \
  1205. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qsizepolicy.h \
  1206. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qcursor.h \
  1207. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qkeysequence.h \
  1208. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qevent.h \
  1209. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvariant.h \
  1210. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmap.h \
  1211. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qdebug.h \
  1212. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtextstream.h \
  1213. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlocale.h \
  1214. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qset.h \
  1215. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontiguouscache.h \
  1216. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qurl.h \
  1217. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qurlquery.h \
  1218. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qfile.h \
  1219. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qfiledevice.h \
  1220. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qvector2d.h \
  1221. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtouchdevice.h \
  1222. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtabwidget.h \
  1223. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qicon.h \
  1224. D:/qt/project01/OriginalWnd/treeviewmanager.h \
  1225. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QWidget \
  1226. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QTreeView \
  1227. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtreeview.h \
  1228. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qabstractitemview.h \
  1229. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qabstractscrollarea.h \
  1230. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qframe.h \
  1231. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qabstractitemmodel.h \
  1232. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qitemselectionmodel.h \
  1233. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qabstractitemdelegate.h \
  1234. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qstyleoption.h \
  1235. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qabstractspinbox.h \
  1236. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qvalidator.h \
  1237. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qregularexpression.h \
  1238. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qslider.h \
  1239. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qabstractslider.h \
  1240. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qstyle.h \
  1241. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtabbar.h \
  1242. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qrubberband.h \
  1243. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/QJsonObject \
  1244. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qjsonobject.h \
  1245. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qjsonvalue.h \
  1246. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcborvalue.h \
  1247. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qdatetime.h \
  1248. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcborcommon.h \
  1249. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/quuid.h \
  1250. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/QStandardItemModel \
  1251. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qstandarditemmodel.h \
  1252. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/QMap \
  1253. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QCheckBox \
  1254. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qcheckbox.h \
  1255. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qabstractbutton.h \
  1256. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/QJsonDocument \
  1257. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qjsondocument.h \
  1258. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/QJsonArray \
  1259. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qjsonarray.h \
  1260. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/QFile \
  1261. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QVBoxLayout \
  1262. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qboxlayout.h \
  1263. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qlayout.h \
  1264. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qlayoutitem.h \
  1265. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qgridlayout.h \
  1266. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QLabel \
  1267. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qlabel.h \
  1268. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QLineEdit \
  1269. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qlineedit.h \
  1270. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtextcursor.h \
  1271. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtextformat.h \
  1272. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpen.h \
  1273. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtextoption.h \
  1274. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QComboBox \
  1275. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qcombobox.h \
  1276. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QRadioButton \
  1277. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qradiobutton.h \
  1278. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QButtonGroup \
  1279. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qbuttongroup.h \
  1280. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/QDebug \
  1281. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QPushButton \
  1282. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qpushbutton.h \
  1283. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QStyleFactory \
  1284. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qstylefactory.h \
  1285. release/moc_predefs.h \
  1286. D:/app/Qt/5.15.2/mingw81_64/bin/moc.exe
  1287. D:\app\Qt\5.15.2\mingw81_64\bin\moc.exe $(DEFINES) --include D:/qt/project01/build/Desktop_Qt_5_15_2_MinGW_64_bit-Debug/release/moc_predefs.h -ID:/app/Qt/5.15.2/mingw81_64/mkspecs/win32-g++ -ID:/qt/project01 -ID:/app/Qt/5.15.2/msvc2019_64/include/qwt -ID:/app/Qt/5.15.2/mingw81_64/include -ID:/app/Qt/5.15.2/mingw81_64/include/QtWidgets -ID:/app/Qt/5.15.2/mingw81_64/include/QtGui -ID:/app/Qt/5.15.2/mingw81_64/include/QtANGLE -ID:/app/Qt/5.15.2/mingw81_64/include/QtCore -I. -ID:/app/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++ -ID:/app/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++/x86_64-w64-mingw32 -ID:/app/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++/backward -ID:/app/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include -ID:/app/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include-fixed -ID:/app/Qt/Tools/mingw810_64/x86_64-w64-mingw32/include D:\qt\project01\OriginalWnd\OriginalWnd.h -o release\moc_OriginalWnd.cpp
  1288. release/moc_treeviewmanager.cpp: D:/qt/project01/OriginalWnd/treeviewmanager.h \
  1289. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QWidget \
  1290. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qwidget.h \
  1291. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtwidgetsglobal.h \
  1292. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtguiglobal.h \
  1293. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qglobal.h \
  1294. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qconfig-bootstrapped.h \
  1295. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qconfig.h \
  1296. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtcore-config.h \
  1297. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsystemdetection.h \
  1298. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qprocessordetection.h \
  1299. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcompilerdetection.h \
  1300. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtypeinfo.h \
  1301. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsysinfo.h \
  1302. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlogging.h \
  1303. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qflags.h \
  1304. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic.h \
  1305. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbasicatomic.h \
  1306. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_bootstrap.h \
  1307. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qgenericatomic.h \
  1308. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_cxx11.h \
  1309. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_msvc.h \
  1310. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qglobalstatic.h \
  1311. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmutex.h \
  1312. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qnumeric.h \
  1313. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qversiontagging.h \
  1314. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtgui-config.h \
  1315. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtwidgets-config.h \
  1316. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qwindowdefs.h \
  1317. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobjectdefs.h \
  1318. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qnamespace.h \
  1319. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobjectdefs_impl.h \
  1320. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qwindowdefs_win.h \
  1321. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobject.h \
  1322. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstring.h \
  1323. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qchar.h \
  1324. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbytearray.h \
  1325. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qrefcount.h \
  1326. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qarraydata.h \
  1327. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringliteral.h \
  1328. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringalgorithms.h \
  1329. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringview.h \
  1330. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringbuilder.h \
  1331. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlist.h \
  1332. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qalgorithms.h \
  1333. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qiterator.h \
  1334. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qhashfunctions.h \
  1335. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qpair.h \
  1336. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvector.h \
  1337. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontainertools_impl.h \
  1338. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qpoint.h \
  1339. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbytearraylist.h \
  1340. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringlist.h \
  1341. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qregexp.h \
  1342. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringmatcher.h \
  1343. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcoreevent.h \
  1344. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qscopedpointer.h \
  1345. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmetatype.h \
  1346. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvarlengtharray.h \
  1347. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontainerfwd.h \
  1348. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobject_impl.h \
  1349. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmargins.h \
  1350. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpaintdevice.h \
  1351. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qrect.h \
  1352. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsize.h \
  1353. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpalette.h \
  1354. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qcolor.h \
  1355. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qrgb.h \
  1356. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qrgba64.h \
  1357. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qbrush.h \
  1358. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qmatrix.h \
  1359. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpolygon.h \
  1360. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qregion.h \
  1361. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qdatastream.h \
  1362. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qiodevice.h \
  1363. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qline.h \
  1364. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtransform.h \
  1365. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qimage.h \
  1366. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpixelformat.h \
  1367. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpixmap.h \
  1368. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsharedpointer.h \
  1369. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qshareddata.h \
  1370. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qhash.h \
  1371. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsharedpointer_impl.h \
  1372. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfont.h \
  1373. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfontmetrics.h \
  1374. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfontinfo.h \
  1375. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qsizepolicy.h \
  1376. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qcursor.h \
  1377. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qkeysequence.h \
  1378. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qevent.h \
  1379. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvariant.h \
  1380. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmap.h \
  1381. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qdebug.h \
  1382. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtextstream.h \
  1383. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlocale.h \
  1384. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qset.h \
  1385. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontiguouscache.h \
  1386. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qurl.h \
  1387. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qurlquery.h \
  1388. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qfile.h \
  1389. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qfiledevice.h \
  1390. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qvector2d.h \
  1391. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtouchdevice.h \
  1392. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QTreeView \
  1393. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtreeview.h \
  1394. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qabstractitemview.h \
  1395. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qabstractscrollarea.h \
  1396. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qframe.h \
  1397. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qabstractitemmodel.h \
  1398. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qitemselectionmodel.h \
  1399. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qabstractitemdelegate.h \
  1400. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qstyleoption.h \
  1401. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qabstractspinbox.h \
  1402. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qvalidator.h \
  1403. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qregularexpression.h \
  1404. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qicon.h \
  1405. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qslider.h \
  1406. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qabstractslider.h \
  1407. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qstyle.h \
  1408. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtabbar.h \
  1409. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtabwidget.h \
  1410. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qrubberband.h \
  1411. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/QJsonObject \
  1412. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qjsonobject.h \
  1413. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qjsonvalue.h \
  1414. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcborvalue.h \
  1415. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qdatetime.h \
  1416. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcborcommon.h \
  1417. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/quuid.h \
  1418. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/QStandardItemModel \
  1419. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qstandarditemmodel.h \
  1420. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/QMap \
  1421. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QCheckBox \
  1422. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qcheckbox.h \
  1423. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qabstractbutton.h \
  1424. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/QJsonDocument \
  1425. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qjsondocument.h \
  1426. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/QJsonArray \
  1427. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qjsonarray.h \
  1428. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/QFile \
  1429. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QVBoxLayout \
  1430. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qboxlayout.h \
  1431. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qlayout.h \
  1432. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qlayoutitem.h \
  1433. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qgridlayout.h \
  1434. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QLabel \
  1435. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qlabel.h \
  1436. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QLineEdit \
  1437. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qlineedit.h \
  1438. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtextcursor.h \
  1439. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtextformat.h \
  1440. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpen.h \
  1441. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtextoption.h \
  1442. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QComboBox \
  1443. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qcombobox.h \
  1444. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QRadioButton \
  1445. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qradiobutton.h \
  1446. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QButtonGroup \
  1447. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qbuttongroup.h \
  1448. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/QDebug \
  1449. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QPushButton \
  1450. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qpushbutton.h \
  1451. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QStyleFactory \
  1452. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qstylefactory.h \
  1453. release/moc_predefs.h \
  1454. D:/app/Qt/5.15.2/mingw81_64/bin/moc.exe
  1455. D:\app\Qt\5.15.2\mingw81_64\bin\moc.exe $(DEFINES) --include D:/qt/project01/build/Desktop_Qt_5_15_2_MinGW_64_bit-Debug/release/moc_predefs.h -ID:/app/Qt/5.15.2/mingw81_64/mkspecs/win32-g++ -ID:/qt/project01 -ID:/app/Qt/5.15.2/msvc2019_64/include/qwt -ID:/app/Qt/5.15.2/mingw81_64/include -ID:/app/Qt/5.15.2/mingw81_64/include/QtWidgets -ID:/app/Qt/5.15.2/mingw81_64/include/QtGui -ID:/app/Qt/5.15.2/mingw81_64/include/QtANGLE -ID:/app/Qt/5.15.2/mingw81_64/include/QtCore -I. -ID:/app/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++ -ID:/app/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++/x86_64-w64-mingw32 -ID:/app/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include/c++/backward -ID:/app/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include -ID:/app/Qt/Tools/mingw810_64/lib/gcc/x86_64-w64-mingw32/8.1.0/include-fixed -ID:/app/Qt/Tools/mingw810_64/x86_64-w64-mingw32/include D:\qt\project01\OriginalWnd\treeviewmanager.h -o release\moc_treeviewmanager.cpp
  1456. compiler_moc_objc_header_make_all:
  1457. compiler_moc_objc_header_clean:
  1458. compiler_moc_source_make_all:
  1459. compiler_moc_source_clean:
  1460. compiler_uic_make_all: ui_Group.h ui_ImageWidget.h ui_ImageWidget_nodrag.h ui_Login.h ui_MainWnd.h ui_Demo001_1.h ui_Demo001_2.h ui_Demo001_3.h ui_OriginalWnd.h
  1461. compiler_uic_clean:
  1462. -$(DEL_FILE) ui_Group.h ui_ImageWidget.h ui_ImageWidget_nodrag.h ui_Login.h ui_MainWnd.h ui_Demo001_1.h ui_Demo001_2.h ui_Demo001_3.h ui_OriginalWnd.h
  1463. ui_Group.h: D:/qt/project01/Group.ui \
  1464. D:/app/Qt/5.15.2/mingw81_64/bin/uic.exe \
  1465. D:/qt/project01/ImageWidget_nodrag.h \
  1466. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QWidget \
  1467. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qwidget.h \
  1468. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtwidgetsglobal.h \
  1469. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtguiglobal.h \
  1470. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qglobal.h \
  1471. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qconfig-bootstrapped.h \
  1472. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qconfig.h \
  1473. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtcore-config.h \
  1474. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsystemdetection.h \
  1475. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qprocessordetection.h \
  1476. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcompilerdetection.h \
  1477. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtypeinfo.h \
  1478. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsysinfo.h \
  1479. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlogging.h \
  1480. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qflags.h \
  1481. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic.h \
  1482. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbasicatomic.h \
  1483. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_bootstrap.h \
  1484. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qgenericatomic.h \
  1485. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_cxx11.h \
  1486. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_msvc.h \
  1487. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qglobalstatic.h \
  1488. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmutex.h \
  1489. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qnumeric.h \
  1490. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qversiontagging.h \
  1491. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtgui-config.h \
  1492. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtwidgets-config.h \
  1493. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qwindowdefs.h \
  1494. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobjectdefs.h \
  1495. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qnamespace.h \
  1496. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobjectdefs_impl.h \
  1497. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qwindowdefs_win.h \
  1498. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobject.h \
  1499. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstring.h \
  1500. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qchar.h \
  1501. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbytearray.h \
  1502. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qrefcount.h \
  1503. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qarraydata.h \
  1504. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringliteral.h \
  1505. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringalgorithms.h \
  1506. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringview.h \
  1507. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringbuilder.h \
  1508. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlist.h \
  1509. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qalgorithms.h \
  1510. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qiterator.h \
  1511. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qhashfunctions.h \
  1512. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qpair.h \
  1513. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvector.h \
  1514. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontainertools_impl.h \
  1515. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qpoint.h \
  1516. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbytearraylist.h \
  1517. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringlist.h \
  1518. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qregexp.h \
  1519. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringmatcher.h \
  1520. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcoreevent.h \
  1521. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qscopedpointer.h \
  1522. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmetatype.h \
  1523. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvarlengtharray.h \
  1524. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontainerfwd.h \
  1525. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobject_impl.h \
  1526. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmargins.h \
  1527. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpaintdevice.h \
  1528. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qrect.h \
  1529. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsize.h \
  1530. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpalette.h \
  1531. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qcolor.h \
  1532. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qrgb.h \
  1533. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qrgba64.h \
  1534. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qbrush.h \
  1535. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qmatrix.h \
  1536. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpolygon.h \
  1537. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qregion.h \
  1538. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qdatastream.h \
  1539. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qiodevice.h \
  1540. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qline.h \
  1541. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtransform.h \
  1542. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qimage.h \
  1543. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpixelformat.h \
  1544. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpixmap.h \
  1545. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsharedpointer.h \
  1546. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qshareddata.h \
  1547. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qhash.h \
  1548. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsharedpointer_impl.h \
  1549. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfont.h \
  1550. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfontmetrics.h \
  1551. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfontinfo.h \
  1552. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qsizepolicy.h \
  1553. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qcursor.h \
  1554. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qkeysequence.h \
  1555. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qevent.h \
  1556. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvariant.h \
  1557. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmap.h \
  1558. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qdebug.h \
  1559. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtextstream.h \
  1560. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlocale.h \
  1561. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qset.h \
  1562. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontiguouscache.h \
  1563. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qurl.h \
  1564. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qurlquery.h \
  1565. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qfile.h \
  1566. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qfiledevice.h \
  1567. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qvector2d.h \
  1568. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtouchdevice.h
  1569. D:\app\Qt\5.15.2\mingw81_64\bin\uic.exe D:\qt\project01\Group.ui -o ui_Group.h
  1570. ui_ImageWidget.h: D:/qt/project01/ImageWidget.ui \
  1571. D:/app/Qt/5.15.2/mingw81_64/bin/uic.exe
  1572. D:\app\Qt\5.15.2\mingw81_64\bin\uic.exe D:\qt\project01\ImageWidget.ui -o ui_ImageWidget.h
  1573. ui_ImageWidget_nodrag.h: D:/qt/project01/ImageWidget_nodrag.ui \
  1574. D:/app/Qt/5.15.2/mingw81_64/bin/uic.exe
  1575. D:\app\Qt\5.15.2\mingw81_64\bin\uic.exe D:\qt\project01\ImageWidget_nodrag.ui -o ui_ImageWidget_nodrag.h
  1576. ui_Login.h: D:/qt/project01/Login.ui \
  1577. D:/app/Qt/5.15.2/mingw81_64/bin/uic.exe
  1578. D:\app\Qt\5.15.2\mingw81_64\bin\uic.exe D:\qt\project01\Login.ui -o ui_Login.h
  1579. ui_MainWnd.h: D:/qt/project01/MainWnd.ui \
  1580. D:/app/Qt/5.15.2/mingw81_64/bin/uic.exe
  1581. D:\app\Qt\5.15.2\mingw81_64\bin\uic.exe D:\qt\project01\MainWnd.ui -o ui_MainWnd.h
  1582. ui_Demo001_1.h: D:/qt/project01/OriginalWnd/Demo001_1.ui \
  1583. D:/app/Qt/5.15.2/mingw81_64/bin/uic.exe \
  1584. D:/qt/project01/ImageWidget.h \
  1585. D:/app/Qt/5.15.2/msvc2019_64/include/qwt/qwt_plot.h \
  1586. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QWidget \
  1587. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qwidget.h \
  1588. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtwidgetsglobal.h \
  1589. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtguiglobal.h \
  1590. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qglobal.h \
  1591. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qconfig-bootstrapped.h \
  1592. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qconfig.h \
  1593. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtcore-config.h \
  1594. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsystemdetection.h \
  1595. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qprocessordetection.h \
  1596. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcompilerdetection.h \
  1597. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtypeinfo.h \
  1598. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsysinfo.h \
  1599. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlogging.h \
  1600. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qflags.h \
  1601. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic.h \
  1602. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbasicatomic.h \
  1603. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_bootstrap.h \
  1604. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qgenericatomic.h \
  1605. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_cxx11.h \
  1606. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_msvc.h \
  1607. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qglobalstatic.h \
  1608. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmutex.h \
  1609. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qnumeric.h \
  1610. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qversiontagging.h \
  1611. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtgui-config.h \
  1612. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtwidgets-config.h \
  1613. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qwindowdefs.h \
  1614. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobjectdefs.h \
  1615. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qnamespace.h \
  1616. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobjectdefs_impl.h \
  1617. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qwindowdefs_win.h \
  1618. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobject.h \
  1619. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstring.h \
  1620. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qchar.h \
  1621. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbytearray.h \
  1622. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qrefcount.h \
  1623. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qarraydata.h \
  1624. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringliteral.h \
  1625. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringalgorithms.h \
  1626. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringview.h \
  1627. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringbuilder.h \
  1628. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlist.h \
  1629. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qalgorithms.h \
  1630. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qiterator.h \
  1631. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qhashfunctions.h \
  1632. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qpair.h \
  1633. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvector.h \
  1634. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontainertools_impl.h \
  1635. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qpoint.h \
  1636. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbytearraylist.h \
  1637. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringlist.h \
  1638. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qregexp.h \
  1639. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringmatcher.h \
  1640. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcoreevent.h \
  1641. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qscopedpointer.h \
  1642. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmetatype.h \
  1643. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvarlengtharray.h \
  1644. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontainerfwd.h \
  1645. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobject_impl.h \
  1646. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmargins.h \
  1647. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpaintdevice.h \
  1648. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qrect.h \
  1649. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsize.h \
  1650. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpalette.h \
  1651. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qcolor.h \
  1652. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qrgb.h \
  1653. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qrgba64.h \
  1654. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qbrush.h \
  1655. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qmatrix.h \
  1656. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpolygon.h \
  1657. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qregion.h \
  1658. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qdatastream.h \
  1659. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qiodevice.h \
  1660. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qline.h \
  1661. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtransform.h \
  1662. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qimage.h \
  1663. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpixelformat.h \
  1664. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpixmap.h \
  1665. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsharedpointer.h \
  1666. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qshareddata.h \
  1667. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qhash.h \
  1668. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsharedpointer_impl.h \
  1669. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfont.h \
  1670. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfontmetrics.h \
  1671. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfontinfo.h \
  1672. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qsizepolicy.h \
  1673. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qcursor.h \
  1674. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qkeysequence.h \
  1675. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qevent.h \
  1676. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvariant.h \
  1677. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmap.h \
  1678. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qdebug.h \
  1679. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtextstream.h \
  1680. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlocale.h \
  1681. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qset.h \
  1682. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontiguouscache.h \
  1683. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qurl.h \
  1684. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qurlquery.h \
  1685. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qfile.h \
  1686. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qfiledevice.h \
  1687. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qvector2d.h \
  1688. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtouchdevice.h \
  1689. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/QPixmap \
  1690. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/QMouseEvent \
  1691. D:/app/Qt/5.15.2/msvc2019_64/include/qwt/qwt_global.h \
  1692. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qglobal.h \
  1693. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qconfig-bootstrapped.h \
  1694. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qconfig.h \
  1695. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtcore-config.h \
  1696. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsystemdetection.h \
  1697. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qprocessordetection.h \
  1698. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcompilerdetection.h \
  1699. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtypeinfo.h \
  1700. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsysinfo.h \
  1701. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlogging.h \
  1702. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qflags.h \
  1703. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic.h \
  1704. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbasicatomic.h \
  1705. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_bootstrap.h \
  1706. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qgenericatomic.h \
  1707. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_cxx11.h \
  1708. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_msvc.h \
  1709. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qglobalstatic.h \
  1710. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmutex.h \
  1711. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qnumeric.h \
  1712. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qversiontagging.h \
  1713. D:/app/Qt/5.15.2/msvc2019_64/include/qwt/qwt_axis_id.h \
  1714. D:/app/Qt/5.15.2/msvc2019_64/include/qwt/qwt_axis.h \
  1715. D:/app/Qt/5.15.2/msvc2019_64/include/qwt/qwt_plot_dict.h \
  1716. D:/app/Qt/5.15.2/msvc2019_64/include/qwt/qwt_plot_item.h \
  1717. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmetatype.h \
  1718. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbytearray.h \
  1719. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qrefcount.h \
  1720. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qnamespace.h \
  1721. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qarraydata.h \
  1722. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvarlengtharray.h \
  1723. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontainerfwd.h \
  1724. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qalgorithms.h \
  1725. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontainertools_impl.h \
  1726. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qhashfunctions.h \
  1727. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstring.h \
  1728. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qchar.h \
  1729. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringliteral.h \
  1730. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringalgorithms.h \
  1731. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringview.h \
  1732. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringbuilder.h \
  1733. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qpair.h \
  1734. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobjectdefs.h \
  1735. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobjectdefs_impl.h \
  1736. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlist.h \
  1737. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qiterator.h \
  1738. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvector.h \
  1739. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qpoint.h \
  1740. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbytearraylist.h \
  1741. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringlist.h \
  1742. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qregexp.h \
  1743. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringmatcher.h \
  1744. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qframe.h \
  1745. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtwidgetsglobal.h \
  1746. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtguiglobal.h \
  1747. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtgui-config.h \
  1748. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtwidgets-config.h \
  1749. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qwidget.h \
  1750. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qwindowdefs.h \
  1751. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qwindowdefs_win.h \
  1752. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobject.h \
  1753. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcoreevent.h \
  1754. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qscopedpointer.h \
  1755. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobject_impl.h \
  1756. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmargins.h \
  1757. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpaintdevice.h \
  1758. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qrect.h \
  1759. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsize.h \
  1760. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpalette.h \
  1761. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qcolor.h \
  1762. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qrgb.h \
  1763. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qrgba64.h \
  1764. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qbrush.h \
  1765. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qmatrix.h \
  1766. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpolygon.h \
  1767. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qregion.h \
  1768. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qdatastream.h \
  1769. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qiodevice.h \
  1770. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qline.h \
  1771. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtransform.h \
  1772. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qimage.h \
  1773. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpixelformat.h \
  1774. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpixmap.h \
  1775. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsharedpointer.h \
  1776. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qshareddata.h \
  1777. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qhash.h \
  1778. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsharedpointer_impl.h \
  1779. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfont.h \
  1780. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfontmetrics.h \
  1781. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfontinfo.h \
  1782. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qsizepolicy.h \
  1783. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qcursor.h \
  1784. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qkeysequence.h \
  1785. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qevent.h \
  1786. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvariant.h \
  1787. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmap.h \
  1788. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qdebug.h \
  1789. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtextstream.h \
  1790. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlocale.h \
  1791. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qset.h \
  1792. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontiguouscache.h \
  1793. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qurl.h \
  1794. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qurlquery.h \
  1795. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qfile.h \
  1796. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qfiledevice.h \
  1797. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qvector2d.h \
  1798. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtouchdevice.h
  1799. D:\app\Qt\5.15.2\mingw81_64\bin\uic.exe D:\qt\project01\OriginalWnd\Demo001_1.ui -o ui_Demo001_1.h
  1800. ui_Demo001_2.h: D:/qt/project01/OriginalWnd/Demo001_2.ui \
  1801. D:/app/Qt/5.15.2/mingw81_64/bin/uic.exe \
  1802. D:/qt/project01/ImageWidget.h \
  1803. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QWidget \
  1804. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qwidget.h \
  1805. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtwidgetsglobal.h \
  1806. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtguiglobal.h \
  1807. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qglobal.h \
  1808. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qconfig-bootstrapped.h \
  1809. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qconfig.h \
  1810. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtcore-config.h \
  1811. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsystemdetection.h \
  1812. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qprocessordetection.h \
  1813. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcompilerdetection.h \
  1814. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtypeinfo.h \
  1815. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsysinfo.h \
  1816. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlogging.h \
  1817. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qflags.h \
  1818. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic.h \
  1819. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbasicatomic.h \
  1820. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_bootstrap.h \
  1821. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qgenericatomic.h \
  1822. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_cxx11.h \
  1823. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_msvc.h \
  1824. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qglobalstatic.h \
  1825. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmutex.h \
  1826. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qnumeric.h \
  1827. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qversiontagging.h \
  1828. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtgui-config.h \
  1829. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtwidgets-config.h \
  1830. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qwindowdefs.h \
  1831. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobjectdefs.h \
  1832. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qnamespace.h \
  1833. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobjectdefs_impl.h \
  1834. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qwindowdefs_win.h \
  1835. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobject.h \
  1836. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstring.h \
  1837. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qchar.h \
  1838. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbytearray.h \
  1839. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qrefcount.h \
  1840. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qarraydata.h \
  1841. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringliteral.h \
  1842. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringalgorithms.h \
  1843. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringview.h \
  1844. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringbuilder.h \
  1845. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlist.h \
  1846. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qalgorithms.h \
  1847. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qiterator.h \
  1848. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qhashfunctions.h \
  1849. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qpair.h \
  1850. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvector.h \
  1851. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontainertools_impl.h \
  1852. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qpoint.h \
  1853. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbytearraylist.h \
  1854. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringlist.h \
  1855. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qregexp.h \
  1856. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringmatcher.h \
  1857. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcoreevent.h \
  1858. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qscopedpointer.h \
  1859. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmetatype.h \
  1860. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvarlengtharray.h \
  1861. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontainerfwd.h \
  1862. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobject_impl.h \
  1863. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmargins.h \
  1864. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpaintdevice.h \
  1865. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qrect.h \
  1866. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsize.h \
  1867. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpalette.h \
  1868. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qcolor.h \
  1869. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qrgb.h \
  1870. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qrgba64.h \
  1871. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qbrush.h \
  1872. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qmatrix.h \
  1873. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpolygon.h \
  1874. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qregion.h \
  1875. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qdatastream.h \
  1876. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qiodevice.h \
  1877. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qline.h \
  1878. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtransform.h \
  1879. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qimage.h \
  1880. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpixelformat.h \
  1881. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpixmap.h \
  1882. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsharedpointer.h \
  1883. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qshareddata.h \
  1884. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qhash.h \
  1885. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsharedpointer_impl.h \
  1886. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfont.h \
  1887. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfontmetrics.h \
  1888. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfontinfo.h \
  1889. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qsizepolicy.h \
  1890. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qcursor.h \
  1891. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qkeysequence.h \
  1892. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qevent.h \
  1893. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvariant.h \
  1894. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmap.h \
  1895. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qdebug.h \
  1896. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtextstream.h \
  1897. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlocale.h \
  1898. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qset.h \
  1899. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontiguouscache.h \
  1900. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qurl.h \
  1901. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qurlquery.h \
  1902. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qfile.h \
  1903. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qfiledevice.h \
  1904. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qvector2d.h \
  1905. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtouchdevice.h \
  1906. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/QPixmap \
  1907. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/QMouseEvent
  1908. D:\app\Qt\5.15.2\mingw81_64\bin\uic.exe D:\qt\project01\OriginalWnd\Demo001_2.ui -o ui_Demo001_2.h
  1909. ui_Demo001_3.h: D:/qt/project01/OriginalWnd/Demo001_3.ui \
  1910. D:/app/Qt/5.15.2/mingw81_64/bin/uic.exe \
  1911. D:/qt/project01/ImageWidget.h \
  1912. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QWidget \
  1913. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qwidget.h \
  1914. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtwidgetsglobal.h \
  1915. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtguiglobal.h \
  1916. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qglobal.h \
  1917. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qconfig-bootstrapped.h \
  1918. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qconfig.h \
  1919. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtcore-config.h \
  1920. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsystemdetection.h \
  1921. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qprocessordetection.h \
  1922. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcompilerdetection.h \
  1923. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtypeinfo.h \
  1924. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsysinfo.h \
  1925. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlogging.h \
  1926. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qflags.h \
  1927. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic.h \
  1928. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbasicatomic.h \
  1929. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_bootstrap.h \
  1930. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qgenericatomic.h \
  1931. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_cxx11.h \
  1932. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_msvc.h \
  1933. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qglobalstatic.h \
  1934. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmutex.h \
  1935. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qnumeric.h \
  1936. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qversiontagging.h \
  1937. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtgui-config.h \
  1938. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtwidgets-config.h \
  1939. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qwindowdefs.h \
  1940. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobjectdefs.h \
  1941. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qnamespace.h \
  1942. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobjectdefs_impl.h \
  1943. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qwindowdefs_win.h \
  1944. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobject.h \
  1945. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstring.h \
  1946. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qchar.h \
  1947. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbytearray.h \
  1948. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qrefcount.h \
  1949. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qarraydata.h \
  1950. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringliteral.h \
  1951. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringalgorithms.h \
  1952. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringview.h \
  1953. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringbuilder.h \
  1954. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlist.h \
  1955. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qalgorithms.h \
  1956. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qiterator.h \
  1957. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qhashfunctions.h \
  1958. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qpair.h \
  1959. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvector.h \
  1960. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontainertools_impl.h \
  1961. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qpoint.h \
  1962. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbytearraylist.h \
  1963. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringlist.h \
  1964. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qregexp.h \
  1965. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringmatcher.h \
  1966. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcoreevent.h \
  1967. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qscopedpointer.h \
  1968. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmetatype.h \
  1969. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvarlengtharray.h \
  1970. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontainerfwd.h \
  1971. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobject_impl.h \
  1972. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmargins.h \
  1973. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpaintdevice.h \
  1974. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qrect.h \
  1975. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsize.h \
  1976. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpalette.h \
  1977. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qcolor.h \
  1978. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qrgb.h \
  1979. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qrgba64.h \
  1980. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qbrush.h \
  1981. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qmatrix.h \
  1982. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpolygon.h \
  1983. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qregion.h \
  1984. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qdatastream.h \
  1985. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qiodevice.h \
  1986. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qline.h \
  1987. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtransform.h \
  1988. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qimage.h \
  1989. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpixelformat.h \
  1990. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpixmap.h \
  1991. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsharedpointer.h \
  1992. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qshareddata.h \
  1993. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qhash.h \
  1994. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsharedpointer_impl.h \
  1995. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfont.h \
  1996. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfontmetrics.h \
  1997. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfontinfo.h \
  1998. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qsizepolicy.h \
  1999. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qcursor.h \
  2000. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qkeysequence.h \
  2001. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qevent.h \
  2002. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvariant.h \
  2003. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmap.h \
  2004. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qdebug.h \
  2005. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtextstream.h \
  2006. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlocale.h \
  2007. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qset.h \
  2008. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontiguouscache.h \
  2009. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qurl.h \
  2010. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qurlquery.h \
  2011. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qfile.h \
  2012. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qfiledevice.h \
  2013. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qvector2d.h \
  2014. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtouchdevice.h \
  2015. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/QPixmap \
  2016. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/QMouseEvent
  2017. D:\app\Qt\5.15.2\mingw81_64\bin\uic.exe D:\qt\project01\OriginalWnd\Demo001_3.ui -o ui_Demo001_3.h
  2018. ui_OriginalWnd.h: D:/qt/project01/OriginalWnd/OriginalWnd.ui \
  2019. D:/app/Qt/5.15.2/mingw81_64/bin/uic.exe
  2020. D:\app\Qt\5.15.2\mingw81_64\bin\uic.exe D:\qt\project01\OriginalWnd\OriginalWnd.ui -o ui_OriginalWnd.h
  2021. compiler_yacc_decl_make_all:
  2022. compiler_yacc_decl_clean:
  2023. compiler_yacc_impl_make_all:
  2024. compiler_yacc_impl_clean:
  2025. compiler_lex_make_all:
  2026. compiler_lex_clean:
  2027. compiler_clean: compiler_rcc_clean compiler_moc_predefs_clean compiler_moc_header_clean compiler_uic_clean
  2028. ####### Compile
  2029. release/Group.o: D:/qt/project01/Group.cpp D:/qt/project01/Group.h \
  2030. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QWidget \
  2031. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qwidget.h \
  2032. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtwidgetsglobal.h \
  2033. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtguiglobal.h \
  2034. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qglobal.h \
  2035. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qconfig-bootstrapped.h \
  2036. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qconfig.h \
  2037. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtcore-config.h \
  2038. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsystemdetection.h \
  2039. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qprocessordetection.h \
  2040. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcompilerdetection.h \
  2041. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtypeinfo.h \
  2042. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsysinfo.h \
  2043. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlogging.h \
  2044. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qflags.h \
  2045. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic.h \
  2046. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbasicatomic.h \
  2047. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_bootstrap.h \
  2048. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qgenericatomic.h \
  2049. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_cxx11.h \
  2050. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_msvc.h \
  2051. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qglobalstatic.h \
  2052. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmutex.h \
  2053. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qnumeric.h \
  2054. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qversiontagging.h \
  2055. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtgui-config.h \
  2056. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtwidgets-config.h \
  2057. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qwindowdefs.h \
  2058. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobjectdefs.h \
  2059. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qnamespace.h \
  2060. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobjectdefs_impl.h \
  2061. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qwindowdefs_win.h \
  2062. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobject.h \
  2063. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstring.h \
  2064. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qchar.h \
  2065. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbytearray.h \
  2066. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qrefcount.h \
  2067. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qarraydata.h \
  2068. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringliteral.h \
  2069. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringalgorithms.h \
  2070. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringview.h \
  2071. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringbuilder.h \
  2072. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlist.h \
  2073. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qalgorithms.h \
  2074. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qiterator.h \
  2075. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qhashfunctions.h \
  2076. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qpair.h \
  2077. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvector.h \
  2078. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontainertools_impl.h \
  2079. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qpoint.h \
  2080. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbytearraylist.h \
  2081. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringlist.h \
  2082. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qregexp.h \
  2083. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringmatcher.h \
  2084. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcoreevent.h \
  2085. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qscopedpointer.h \
  2086. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmetatype.h \
  2087. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvarlengtharray.h \
  2088. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontainerfwd.h \
  2089. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobject_impl.h \
  2090. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmargins.h \
  2091. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpaintdevice.h \
  2092. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qrect.h \
  2093. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsize.h \
  2094. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpalette.h \
  2095. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qcolor.h \
  2096. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qrgb.h \
  2097. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qrgba64.h \
  2098. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qbrush.h \
  2099. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qmatrix.h \
  2100. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpolygon.h \
  2101. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qregion.h \
  2102. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qdatastream.h \
  2103. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qiodevice.h \
  2104. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qline.h \
  2105. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtransform.h \
  2106. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qimage.h \
  2107. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpixelformat.h \
  2108. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpixmap.h \
  2109. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsharedpointer.h \
  2110. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qshareddata.h \
  2111. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qhash.h \
  2112. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsharedpointer_impl.h \
  2113. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfont.h \
  2114. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfontmetrics.h \
  2115. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfontinfo.h \
  2116. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qsizepolicy.h \
  2117. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qcursor.h \
  2118. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qkeysequence.h \
  2119. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qevent.h \
  2120. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvariant.h \
  2121. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmap.h \
  2122. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qdebug.h \
  2123. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtextstream.h \
  2124. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlocale.h \
  2125. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qset.h \
  2126. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontiguouscache.h \
  2127. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qurl.h \
  2128. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qurlquery.h \
  2129. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qfile.h \
  2130. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qfiledevice.h \
  2131. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qvector2d.h \
  2132. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtouchdevice.h \
  2133. ui_Group.h \
  2134. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/QDebug \
  2135. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/QMouseEvent \
  2136. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/QSettings \
  2137. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsettings.h
  2138. $(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\Group.o D:\qt\project01\Group.cpp
  2139. release/ImageWidget.o: D:/qt/project01/ImageWidget.cpp D:/qt/project01/ImageWidget.h \
  2140. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QWidget \
  2141. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qwidget.h \
  2142. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtwidgetsglobal.h \
  2143. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtguiglobal.h \
  2144. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qglobal.h \
  2145. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qconfig-bootstrapped.h \
  2146. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qconfig.h \
  2147. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtcore-config.h \
  2148. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsystemdetection.h \
  2149. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qprocessordetection.h \
  2150. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcompilerdetection.h \
  2151. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtypeinfo.h \
  2152. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsysinfo.h \
  2153. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlogging.h \
  2154. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qflags.h \
  2155. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic.h \
  2156. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbasicatomic.h \
  2157. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_bootstrap.h \
  2158. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qgenericatomic.h \
  2159. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_cxx11.h \
  2160. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_msvc.h \
  2161. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qglobalstatic.h \
  2162. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmutex.h \
  2163. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qnumeric.h \
  2164. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qversiontagging.h \
  2165. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtgui-config.h \
  2166. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtwidgets-config.h \
  2167. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qwindowdefs.h \
  2168. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobjectdefs.h \
  2169. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qnamespace.h \
  2170. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobjectdefs_impl.h \
  2171. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qwindowdefs_win.h \
  2172. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobject.h \
  2173. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstring.h \
  2174. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qchar.h \
  2175. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbytearray.h \
  2176. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qrefcount.h \
  2177. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qarraydata.h \
  2178. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringliteral.h \
  2179. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringalgorithms.h \
  2180. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringview.h \
  2181. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringbuilder.h \
  2182. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlist.h \
  2183. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qalgorithms.h \
  2184. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qiterator.h \
  2185. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qhashfunctions.h \
  2186. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qpair.h \
  2187. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvector.h \
  2188. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontainertools_impl.h \
  2189. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qpoint.h \
  2190. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbytearraylist.h \
  2191. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringlist.h \
  2192. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qregexp.h \
  2193. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringmatcher.h \
  2194. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcoreevent.h \
  2195. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qscopedpointer.h \
  2196. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmetatype.h \
  2197. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvarlengtharray.h \
  2198. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontainerfwd.h \
  2199. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobject_impl.h \
  2200. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmargins.h \
  2201. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpaintdevice.h \
  2202. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qrect.h \
  2203. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsize.h \
  2204. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpalette.h \
  2205. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qcolor.h \
  2206. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qrgb.h \
  2207. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qrgba64.h \
  2208. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qbrush.h \
  2209. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qmatrix.h \
  2210. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpolygon.h \
  2211. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qregion.h \
  2212. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qdatastream.h \
  2213. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qiodevice.h \
  2214. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qline.h \
  2215. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtransform.h \
  2216. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qimage.h \
  2217. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpixelformat.h \
  2218. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpixmap.h \
  2219. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsharedpointer.h \
  2220. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qshareddata.h \
  2221. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qhash.h \
  2222. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsharedpointer_impl.h \
  2223. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfont.h \
  2224. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfontmetrics.h \
  2225. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfontinfo.h \
  2226. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qsizepolicy.h \
  2227. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qcursor.h \
  2228. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qkeysequence.h \
  2229. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qevent.h \
  2230. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvariant.h \
  2231. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmap.h \
  2232. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qdebug.h \
  2233. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtextstream.h \
  2234. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlocale.h \
  2235. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qset.h \
  2236. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontiguouscache.h \
  2237. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qurl.h \
  2238. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qurlquery.h \
  2239. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qfile.h \
  2240. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qfiledevice.h \
  2241. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qvector2d.h \
  2242. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtouchdevice.h \
  2243. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/QPixmap \
  2244. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/QMouseEvent \
  2245. ui_ImageWidget.h \
  2246. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/QPainter \
  2247. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpainter.h \
  2248. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtextoption.h \
  2249. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpen.h
  2250. $(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\ImageWidget.o D:\qt\project01\ImageWidget.cpp
  2251. release/ImageWidget_nodrag.o: D:/qt/project01/ImageWidget_nodrag.cpp D:/qt/project01/ImageWidget_nodrag.h \
  2252. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QWidget \
  2253. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qwidget.h \
  2254. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtwidgetsglobal.h \
  2255. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtguiglobal.h \
  2256. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qglobal.h \
  2257. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qconfig-bootstrapped.h \
  2258. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qconfig.h \
  2259. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtcore-config.h \
  2260. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsystemdetection.h \
  2261. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qprocessordetection.h \
  2262. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcompilerdetection.h \
  2263. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtypeinfo.h \
  2264. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsysinfo.h \
  2265. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlogging.h \
  2266. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qflags.h \
  2267. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic.h \
  2268. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbasicatomic.h \
  2269. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_bootstrap.h \
  2270. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qgenericatomic.h \
  2271. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_cxx11.h \
  2272. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_msvc.h \
  2273. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qglobalstatic.h \
  2274. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmutex.h \
  2275. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qnumeric.h \
  2276. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qversiontagging.h \
  2277. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtgui-config.h \
  2278. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtwidgets-config.h \
  2279. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qwindowdefs.h \
  2280. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobjectdefs.h \
  2281. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qnamespace.h \
  2282. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobjectdefs_impl.h \
  2283. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qwindowdefs_win.h \
  2284. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobject.h \
  2285. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstring.h \
  2286. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qchar.h \
  2287. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbytearray.h \
  2288. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qrefcount.h \
  2289. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qarraydata.h \
  2290. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringliteral.h \
  2291. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringalgorithms.h \
  2292. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringview.h \
  2293. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringbuilder.h \
  2294. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlist.h \
  2295. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qalgorithms.h \
  2296. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qiterator.h \
  2297. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qhashfunctions.h \
  2298. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qpair.h \
  2299. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvector.h \
  2300. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontainertools_impl.h \
  2301. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qpoint.h \
  2302. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbytearraylist.h \
  2303. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringlist.h \
  2304. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qregexp.h \
  2305. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringmatcher.h \
  2306. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcoreevent.h \
  2307. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qscopedpointer.h \
  2308. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmetatype.h \
  2309. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvarlengtharray.h \
  2310. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontainerfwd.h \
  2311. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobject_impl.h \
  2312. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmargins.h \
  2313. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpaintdevice.h \
  2314. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qrect.h \
  2315. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsize.h \
  2316. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpalette.h \
  2317. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qcolor.h \
  2318. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qrgb.h \
  2319. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qrgba64.h \
  2320. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qbrush.h \
  2321. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qmatrix.h \
  2322. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpolygon.h \
  2323. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qregion.h \
  2324. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qdatastream.h \
  2325. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qiodevice.h \
  2326. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qline.h \
  2327. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtransform.h \
  2328. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qimage.h \
  2329. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpixelformat.h \
  2330. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpixmap.h \
  2331. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsharedpointer.h \
  2332. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qshareddata.h \
  2333. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qhash.h \
  2334. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsharedpointer_impl.h \
  2335. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfont.h \
  2336. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfontmetrics.h \
  2337. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfontinfo.h \
  2338. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qsizepolicy.h \
  2339. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qcursor.h \
  2340. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qkeysequence.h \
  2341. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qevent.h \
  2342. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvariant.h \
  2343. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmap.h \
  2344. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qdebug.h \
  2345. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtextstream.h \
  2346. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlocale.h \
  2347. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qset.h \
  2348. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontiguouscache.h \
  2349. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qurl.h \
  2350. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qurlquery.h \
  2351. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qfile.h \
  2352. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qfiledevice.h \
  2353. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qvector2d.h \
  2354. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtouchdevice.h \
  2355. ui_ImageWidget_nodrag.h \
  2356. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/QPainter \
  2357. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpainter.h \
  2358. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtextoption.h \
  2359. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpen.h
  2360. $(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\ImageWidget_nodrag.o D:\qt\project01\ImageWidget_nodrag.cpp
  2361. release/Login.o: D:/qt/project01/Login.cpp D:/qt/project01/Login.h \
  2362. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QMainWindow \
  2363. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qmainwindow.h \
  2364. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtwidgetsglobal.h \
  2365. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtguiglobal.h \
  2366. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qglobal.h \
  2367. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qconfig-bootstrapped.h \
  2368. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qconfig.h \
  2369. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtcore-config.h \
  2370. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsystemdetection.h \
  2371. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qprocessordetection.h \
  2372. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcompilerdetection.h \
  2373. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtypeinfo.h \
  2374. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsysinfo.h \
  2375. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlogging.h \
  2376. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qflags.h \
  2377. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic.h \
  2378. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbasicatomic.h \
  2379. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_bootstrap.h \
  2380. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qgenericatomic.h \
  2381. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_cxx11.h \
  2382. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_msvc.h \
  2383. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qglobalstatic.h \
  2384. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmutex.h \
  2385. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qnumeric.h \
  2386. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qversiontagging.h \
  2387. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtgui-config.h \
  2388. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtwidgets-config.h \
  2389. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qwidget.h \
  2390. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qwindowdefs.h \
  2391. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobjectdefs.h \
  2392. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qnamespace.h \
  2393. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobjectdefs_impl.h \
  2394. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qwindowdefs_win.h \
  2395. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobject.h \
  2396. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstring.h \
  2397. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qchar.h \
  2398. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbytearray.h \
  2399. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qrefcount.h \
  2400. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qarraydata.h \
  2401. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringliteral.h \
  2402. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringalgorithms.h \
  2403. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringview.h \
  2404. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringbuilder.h \
  2405. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlist.h \
  2406. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qalgorithms.h \
  2407. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qiterator.h \
  2408. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qhashfunctions.h \
  2409. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qpair.h \
  2410. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvector.h \
  2411. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontainertools_impl.h \
  2412. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qpoint.h \
  2413. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbytearraylist.h \
  2414. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringlist.h \
  2415. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qregexp.h \
  2416. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringmatcher.h \
  2417. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcoreevent.h \
  2418. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qscopedpointer.h \
  2419. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmetatype.h \
  2420. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvarlengtharray.h \
  2421. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontainerfwd.h \
  2422. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobject_impl.h \
  2423. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmargins.h \
  2424. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpaintdevice.h \
  2425. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qrect.h \
  2426. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsize.h \
  2427. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpalette.h \
  2428. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qcolor.h \
  2429. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qrgb.h \
  2430. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qrgba64.h \
  2431. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qbrush.h \
  2432. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qmatrix.h \
  2433. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpolygon.h \
  2434. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qregion.h \
  2435. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qdatastream.h \
  2436. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qiodevice.h \
  2437. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qline.h \
  2438. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtransform.h \
  2439. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qimage.h \
  2440. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpixelformat.h \
  2441. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpixmap.h \
  2442. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsharedpointer.h \
  2443. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qshareddata.h \
  2444. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qhash.h \
  2445. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsharedpointer_impl.h \
  2446. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfont.h \
  2447. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfontmetrics.h \
  2448. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfontinfo.h \
  2449. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qsizepolicy.h \
  2450. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qcursor.h \
  2451. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qkeysequence.h \
  2452. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qevent.h \
  2453. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvariant.h \
  2454. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmap.h \
  2455. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qdebug.h \
  2456. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtextstream.h \
  2457. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlocale.h \
  2458. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qset.h \
  2459. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontiguouscache.h \
  2460. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qurl.h \
  2461. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qurlquery.h \
  2462. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qfile.h \
  2463. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qfiledevice.h \
  2464. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qvector2d.h \
  2465. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtouchdevice.h \
  2466. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtabwidget.h \
  2467. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qicon.h \
  2468. D:/qt/project01/OriginalWnd/OriginalWnd.h \
  2469. D:/qt/project01/OriginalWnd/treeviewmanager.h \
  2470. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QWidget \
  2471. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QTreeView \
  2472. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtreeview.h \
  2473. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qabstractitemview.h \
  2474. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qabstractscrollarea.h \
  2475. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qframe.h \
  2476. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qabstractitemmodel.h \
  2477. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qitemselectionmodel.h \
  2478. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qabstractitemdelegate.h \
  2479. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qstyleoption.h \
  2480. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qabstractspinbox.h \
  2481. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qvalidator.h \
  2482. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qregularexpression.h \
  2483. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qslider.h \
  2484. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qabstractslider.h \
  2485. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qstyle.h \
  2486. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtabbar.h \
  2487. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qrubberband.h \
  2488. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/QJsonObject \
  2489. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qjsonobject.h \
  2490. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qjsonvalue.h \
  2491. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcborvalue.h \
  2492. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qdatetime.h \
  2493. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcborcommon.h \
  2494. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/quuid.h \
  2495. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/QStandardItemModel \
  2496. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qstandarditemmodel.h \
  2497. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/QMap \
  2498. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QCheckBox \
  2499. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qcheckbox.h \
  2500. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qabstractbutton.h \
  2501. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/QJsonDocument \
  2502. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qjsondocument.h \
  2503. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/QJsonArray \
  2504. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qjsonarray.h \
  2505. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/QFile \
  2506. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QVBoxLayout \
  2507. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qboxlayout.h \
  2508. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qlayout.h \
  2509. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qlayoutitem.h \
  2510. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qgridlayout.h \
  2511. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QLabel \
  2512. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qlabel.h \
  2513. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QLineEdit \
  2514. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qlineedit.h \
  2515. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtextcursor.h \
  2516. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtextformat.h \
  2517. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpen.h \
  2518. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtextoption.h \
  2519. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QComboBox \
  2520. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qcombobox.h \
  2521. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QRadioButton \
  2522. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qradiobutton.h \
  2523. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QButtonGroup \
  2524. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qbuttongroup.h \
  2525. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/QDebug \
  2526. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QPushButton \
  2527. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qpushbutton.h \
  2528. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QStyleFactory \
  2529. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qstylefactory.h \
  2530. ui_Login.h \
  2531. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QStackedWidget \
  2532. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qstackedwidget.h \
  2533. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qDebug \
  2534. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/QSettings \
  2535. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsettings.h
  2536. $(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\Login.o D:\qt\project01\Login.cpp
  2537. release/Demo001_1.o: D:/qt/project01/OriginalWnd/Demo001_1.cpp D:/qt/project01/OriginalWnd/Demo001_1.h \
  2538. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QMainWindow \
  2539. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qmainwindow.h \
  2540. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtwidgetsglobal.h \
  2541. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtguiglobal.h \
  2542. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qglobal.h \
  2543. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qconfig-bootstrapped.h \
  2544. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qconfig.h \
  2545. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtcore-config.h \
  2546. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsystemdetection.h \
  2547. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qprocessordetection.h \
  2548. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcompilerdetection.h \
  2549. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtypeinfo.h \
  2550. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsysinfo.h \
  2551. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlogging.h \
  2552. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qflags.h \
  2553. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic.h \
  2554. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbasicatomic.h \
  2555. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_bootstrap.h \
  2556. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qgenericatomic.h \
  2557. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_cxx11.h \
  2558. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_msvc.h \
  2559. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qglobalstatic.h \
  2560. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmutex.h \
  2561. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qnumeric.h \
  2562. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qversiontagging.h \
  2563. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtgui-config.h \
  2564. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtwidgets-config.h \
  2565. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qwidget.h \
  2566. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qwindowdefs.h \
  2567. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobjectdefs.h \
  2568. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qnamespace.h \
  2569. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobjectdefs_impl.h \
  2570. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qwindowdefs_win.h \
  2571. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobject.h \
  2572. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstring.h \
  2573. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qchar.h \
  2574. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbytearray.h \
  2575. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qrefcount.h \
  2576. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qarraydata.h \
  2577. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringliteral.h \
  2578. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringalgorithms.h \
  2579. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringview.h \
  2580. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringbuilder.h \
  2581. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlist.h \
  2582. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qalgorithms.h \
  2583. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qiterator.h \
  2584. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qhashfunctions.h \
  2585. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qpair.h \
  2586. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvector.h \
  2587. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontainertools_impl.h \
  2588. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qpoint.h \
  2589. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbytearraylist.h \
  2590. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringlist.h \
  2591. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qregexp.h \
  2592. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringmatcher.h \
  2593. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcoreevent.h \
  2594. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qscopedpointer.h \
  2595. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmetatype.h \
  2596. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvarlengtharray.h \
  2597. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontainerfwd.h \
  2598. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobject_impl.h \
  2599. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmargins.h \
  2600. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpaintdevice.h \
  2601. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qrect.h \
  2602. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsize.h \
  2603. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpalette.h \
  2604. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qcolor.h \
  2605. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qrgb.h \
  2606. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qrgba64.h \
  2607. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qbrush.h \
  2608. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qmatrix.h \
  2609. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpolygon.h \
  2610. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qregion.h \
  2611. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qdatastream.h \
  2612. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qiodevice.h \
  2613. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qline.h \
  2614. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtransform.h \
  2615. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qimage.h \
  2616. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpixelformat.h \
  2617. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpixmap.h \
  2618. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsharedpointer.h \
  2619. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qshareddata.h \
  2620. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qhash.h \
  2621. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsharedpointer_impl.h \
  2622. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfont.h \
  2623. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfontmetrics.h \
  2624. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfontinfo.h \
  2625. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qsizepolicy.h \
  2626. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qcursor.h \
  2627. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qkeysequence.h \
  2628. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qevent.h \
  2629. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvariant.h \
  2630. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmap.h \
  2631. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qdebug.h \
  2632. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtextstream.h \
  2633. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlocale.h \
  2634. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qset.h \
  2635. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontiguouscache.h \
  2636. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qurl.h \
  2637. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qurlquery.h \
  2638. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qfile.h \
  2639. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qfiledevice.h \
  2640. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qvector2d.h \
  2641. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtouchdevice.h \
  2642. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtabwidget.h \
  2643. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qicon.h \
  2644. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QSlider \
  2645. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qslider.h \
  2646. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qabstractslider.h \
  2647. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QLineEdit \
  2648. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qlineedit.h \
  2649. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qframe.h \
  2650. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtextcursor.h \
  2651. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtextformat.h \
  2652. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpen.h \
  2653. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtextoption.h \
  2654. ui_Demo001_1.h \
  2655. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/QSettings \
  2656. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsettings.h \
  2657. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/QCloseEvent \
  2658. D:/qt/project01/Group.h \
  2659. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QWidget \
  2660. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QVBoxLayout \
  2661. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qboxlayout.h \
  2662. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qlayout.h \
  2663. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qlayoutitem.h \
  2664. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qgridlayout.h \
  2665. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/QTimer \
  2666. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtimer.h \
  2667. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbasictimer.h
  2668. $(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\Demo001_1.o D:\qt\project01\OriginalWnd\Demo001_1.cpp
  2669. release/Demo001_2.o: D:/qt/project01/OriginalWnd/Demo001_2.cpp D:/qt/project01/OriginalWnd/Demo001_2.h \
  2670. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QMainWindow \
  2671. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qmainwindow.h \
  2672. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtwidgetsglobal.h \
  2673. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtguiglobal.h \
  2674. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qglobal.h \
  2675. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qconfig-bootstrapped.h \
  2676. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qconfig.h \
  2677. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtcore-config.h \
  2678. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsystemdetection.h \
  2679. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qprocessordetection.h \
  2680. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcompilerdetection.h \
  2681. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtypeinfo.h \
  2682. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsysinfo.h \
  2683. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlogging.h \
  2684. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qflags.h \
  2685. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic.h \
  2686. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbasicatomic.h \
  2687. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_bootstrap.h \
  2688. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qgenericatomic.h \
  2689. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_cxx11.h \
  2690. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_msvc.h \
  2691. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qglobalstatic.h \
  2692. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmutex.h \
  2693. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qnumeric.h \
  2694. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qversiontagging.h \
  2695. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtgui-config.h \
  2696. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtwidgets-config.h \
  2697. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qwidget.h \
  2698. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qwindowdefs.h \
  2699. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobjectdefs.h \
  2700. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qnamespace.h \
  2701. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobjectdefs_impl.h \
  2702. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qwindowdefs_win.h \
  2703. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobject.h \
  2704. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstring.h \
  2705. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qchar.h \
  2706. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbytearray.h \
  2707. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qrefcount.h \
  2708. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qarraydata.h \
  2709. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringliteral.h \
  2710. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringalgorithms.h \
  2711. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringview.h \
  2712. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringbuilder.h \
  2713. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlist.h \
  2714. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qalgorithms.h \
  2715. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qiterator.h \
  2716. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qhashfunctions.h \
  2717. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qpair.h \
  2718. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvector.h \
  2719. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontainertools_impl.h \
  2720. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qpoint.h \
  2721. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbytearraylist.h \
  2722. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringlist.h \
  2723. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qregexp.h \
  2724. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringmatcher.h \
  2725. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcoreevent.h \
  2726. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qscopedpointer.h \
  2727. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmetatype.h \
  2728. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvarlengtharray.h \
  2729. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontainerfwd.h \
  2730. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobject_impl.h \
  2731. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmargins.h \
  2732. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpaintdevice.h \
  2733. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qrect.h \
  2734. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsize.h \
  2735. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpalette.h \
  2736. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qcolor.h \
  2737. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qrgb.h \
  2738. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qrgba64.h \
  2739. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qbrush.h \
  2740. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qmatrix.h \
  2741. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpolygon.h \
  2742. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qregion.h \
  2743. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qdatastream.h \
  2744. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qiodevice.h \
  2745. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qline.h \
  2746. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtransform.h \
  2747. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qimage.h \
  2748. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpixelformat.h \
  2749. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpixmap.h \
  2750. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsharedpointer.h \
  2751. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qshareddata.h \
  2752. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qhash.h \
  2753. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsharedpointer_impl.h \
  2754. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfont.h \
  2755. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfontmetrics.h \
  2756. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfontinfo.h \
  2757. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qsizepolicy.h \
  2758. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qcursor.h \
  2759. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qkeysequence.h \
  2760. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qevent.h \
  2761. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvariant.h \
  2762. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmap.h \
  2763. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qdebug.h \
  2764. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtextstream.h \
  2765. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlocale.h \
  2766. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qset.h \
  2767. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontiguouscache.h \
  2768. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qurl.h \
  2769. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qurlquery.h \
  2770. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qfile.h \
  2771. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qfiledevice.h \
  2772. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qvector2d.h \
  2773. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtouchdevice.h \
  2774. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtabwidget.h \
  2775. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qicon.h \
  2776. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QSlider \
  2777. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qslider.h \
  2778. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qabstractslider.h \
  2779. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QLineEdit \
  2780. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qlineedit.h \
  2781. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qframe.h \
  2782. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtextcursor.h \
  2783. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtextformat.h \
  2784. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpen.h \
  2785. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtextoption.h \
  2786. ui_Demo001_2.h \
  2787. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/QSettings \
  2788. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsettings.h \
  2789. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/QCloseEvent \
  2790. D:/qt/project01/Group.h \
  2791. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QWidget \
  2792. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QVBoxLayout \
  2793. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qboxlayout.h \
  2794. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qlayout.h \
  2795. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qlayoutitem.h \
  2796. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qgridlayout.h \
  2797. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/QTimer \
  2798. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtimer.h \
  2799. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbasictimer.h
  2800. $(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\Demo001_2.o D:\qt\project01\OriginalWnd\Demo001_2.cpp
  2801. release/Demo001_3.o: D:/qt/project01/OriginalWnd/Demo001_3.cpp D:/qt/project01/OriginalWnd/Demo001_3.h \
  2802. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QMainWindow \
  2803. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qmainwindow.h \
  2804. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtwidgetsglobal.h \
  2805. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtguiglobal.h \
  2806. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qglobal.h \
  2807. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qconfig-bootstrapped.h \
  2808. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qconfig.h \
  2809. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtcore-config.h \
  2810. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsystemdetection.h \
  2811. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qprocessordetection.h \
  2812. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcompilerdetection.h \
  2813. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtypeinfo.h \
  2814. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsysinfo.h \
  2815. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlogging.h \
  2816. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qflags.h \
  2817. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic.h \
  2818. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbasicatomic.h \
  2819. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_bootstrap.h \
  2820. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qgenericatomic.h \
  2821. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_cxx11.h \
  2822. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_msvc.h \
  2823. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qglobalstatic.h \
  2824. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmutex.h \
  2825. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qnumeric.h \
  2826. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qversiontagging.h \
  2827. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtgui-config.h \
  2828. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtwidgets-config.h \
  2829. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qwidget.h \
  2830. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qwindowdefs.h \
  2831. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobjectdefs.h \
  2832. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qnamespace.h \
  2833. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobjectdefs_impl.h \
  2834. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qwindowdefs_win.h \
  2835. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobject.h \
  2836. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstring.h \
  2837. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qchar.h \
  2838. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbytearray.h \
  2839. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qrefcount.h \
  2840. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qarraydata.h \
  2841. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringliteral.h \
  2842. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringalgorithms.h \
  2843. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringview.h \
  2844. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringbuilder.h \
  2845. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlist.h \
  2846. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qalgorithms.h \
  2847. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qiterator.h \
  2848. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qhashfunctions.h \
  2849. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qpair.h \
  2850. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvector.h \
  2851. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontainertools_impl.h \
  2852. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qpoint.h \
  2853. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbytearraylist.h \
  2854. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringlist.h \
  2855. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qregexp.h \
  2856. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringmatcher.h \
  2857. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcoreevent.h \
  2858. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qscopedpointer.h \
  2859. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmetatype.h \
  2860. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvarlengtharray.h \
  2861. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontainerfwd.h \
  2862. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobject_impl.h \
  2863. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmargins.h \
  2864. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpaintdevice.h \
  2865. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qrect.h \
  2866. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsize.h \
  2867. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpalette.h \
  2868. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qcolor.h \
  2869. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qrgb.h \
  2870. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qrgba64.h \
  2871. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qbrush.h \
  2872. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qmatrix.h \
  2873. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpolygon.h \
  2874. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qregion.h \
  2875. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qdatastream.h \
  2876. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qiodevice.h \
  2877. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qline.h \
  2878. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtransform.h \
  2879. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qimage.h \
  2880. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpixelformat.h \
  2881. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpixmap.h \
  2882. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsharedpointer.h \
  2883. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qshareddata.h \
  2884. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qhash.h \
  2885. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsharedpointer_impl.h \
  2886. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfont.h \
  2887. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfontmetrics.h \
  2888. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfontinfo.h \
  2889. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qsizepolicy.h \
  2890. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qcursor.h \
  2891. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qkeysequence.h \
  2892. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qevent.h \
  2893. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvariant.h \
  2894. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmap.h \
  2895. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qdebug.h \
  2896. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtextstream.h \
  2897. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlocale.h \
  2898. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qset.h \
  2899. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontiguouscache.h \
  2900. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qurl.h \
  2901. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qurlquery.h \
  2902. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qfile.h \
  2903. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qfiledevice.h \
  2904. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qvector2d.h \
  2905. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtouchdevice.h \
  2906. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtabwidget.h \
  2907. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qicon.h \
  2908. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QSlider \
  2909. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qslider.h \
  2910. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qabstractslider.h \
  2911. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QLineEdit \
  2912. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qlineedit.h \
  2913. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qframe.h \
  2914. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtextcursor.h \
  2915. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtextformat.h \
  2916. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpen.h \
  2917. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtextoption.h \
  2918. ui_Demo001_3.h \
  2919. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/QSettings \
  2920. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsettings.h \
  2921. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/QCloseEvent \
  2922. D:/qt/project01/Group.h \
  2923. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QWidget \
  2924. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QVBoxLayout \
  2925. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qboxlayout.h \
  2926. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qlayout.h \
  2927. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qlayoutitem.h \
  2928. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qgridlayout.h \
  2929. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/QDebug \
  2930. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/QTimer \
  2931. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtimer.h \
  2932. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbasictimer.h
  2933. $(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\Demo001_3.o D:\qt\project01\OriginalWnd\Demo001_3.cpp
  2934. release/OriginalWnd.o: D:/qt/project01/OriginalWnd/OriginalWnd.cpp D:/qt/project01/OriginalWnd/OriginalWnd.h \
  2935. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QMainWindow \
  2936. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qmainwindow.h \
  2937. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtwidgetsglobal.h \
  2938. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtguiglobal.h \
  2939. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qglobal.h \
  2940. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qconfig-bootstrapped.h \
  2941. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qconfig.h \
  2942. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtcore-config.h \
  2943. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsystemdetection.h \
  2944. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qprocessordetection.h \
  2945. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcompilerdetection.h \
  2946. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtypeinfo.h \
  2947. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsysinfo.h \
  2948. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlogging.h \
  2949. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qflags.h \
  2950. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic.h \
  2951. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbasicatomic.h \
  2952. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_bootstrap.h \
  2953. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qgenericatomic.h \
  2954. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_cxx11.h \
  2955. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_msvc.h \
  2956. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qglobalstatic.h \
  2957. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmutex.h \
  2958. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qnumeric.h \
  2959. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qversiontagging.h \
  2960. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtgui-config.h \
  2961. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtwidgets-config.h \
  2962. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qwidget.h \
  2963. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qwindowdefs.h \
  2964. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobjectdefs.h \
  2965. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qnamespace.h \
  2966. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobjectdefs_impl.h \
  2967. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qwindowdefs_win.h \
  2968. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobject.h \
  2969. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstring.h \
  2970. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qchar.h \
  2971. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbytearray.h \
  2972. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qrefcount.h \
  2973. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qarraydata.h \
  2974. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringliteral.h \
  2975. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringalgorithms.h \
  2976. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringview.h \
  2977. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringbuilder.h \
  2978. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlist.h \
  2979. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qalgorithms.h \
  2980. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qiterator.h \
  2981. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qhashfunctions.h \
  2982. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qpair.h \
  2983. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvector.h \
  2984. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontainertools_impl.h \
  2985. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qpoint.h \
  2986. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbytearraylist.h \
  2987. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringlist.h \
  2988. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qregexp.h \
  2989. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringmatcher.h \
  2990. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcoreevent.h \
  2991. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qscopedpointer.h \
  2992. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmetatype.h \
  2993. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvarlengtharray.h \
  2994. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontainerfwd.h \
  2995. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobject_impl.h \
  2996. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmargins.h \
  2997. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpaintdevice.h \
  2998. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qrect.h \
  2999. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsize.h \
  3000. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpalette.h \
  3001. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qcolor.h \
  3002. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qrgb.h \
  3003. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qrgba64.h \
  3004. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qbrush.h \
  3005. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qmatrix.h \
  3006. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpolygon.h \
  3007. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qregion.h \
  3008. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qdatastream.h \
  3009. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qiodevice.h \
  3010. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qline.h \
  3011. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtransform.h \
  3012. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qimage.h \
  3013. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpixelformat.h \
  3014. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpixmap.h \
  3015. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsharedpointer.h \
  3016. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qshareddata.h \
  3017. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qhash.h \
  3018. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsharedpointer_impl.h \
  3019. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfont.h \
  3020. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfontmetrics.h \
  3021. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfontinfo.h \
  3022. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qsizepolicy.h \
  3023. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qcursor.h \
  3024. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qkeysequence.h \
  3025. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qevent.h \
  3026. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvariant.h \
  3027. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmap.h \
  3028. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qdebug.h \
  3029. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtextstream.h \
  3030. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlocale.h \
  3031. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qset.h \
  3032. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontiguouscache.h \
  3033. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qurl.h \
  3034. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qurlquery.h \
  3035. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qfile.h \
  3036. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qfiledevice.h \
  3037. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qvector2d.h \
  3038. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtouchdevice.h \
  3039. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtabwidget.h \
  3040. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qicon.h \
  3041. D:/qt/project01/OriginalWnd/treeviewmanager.h \
  3042. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QWidget \
  3043. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QTreeView \
  3044. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtreeview.h \
  3045. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qabstractitemview.h \
  3046. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qabstractscrollarea.h \
  3047. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qframe.h \
  3048. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qabstractitemmodel.h \
  3049. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qitemselectionmodel.h \
  3050. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qabstractitemdelegate.h \
  3051. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qstyleoption.h \
  3052. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qabstractspinbox.h \
  3053. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qvalidator.h \
  3054. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qregularexpression.h \
  3055. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qslider.h \
  3056. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qabstractslider.h \
  3057. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qstyle.h \
  3058. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtabbar.h \
  3059. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qrubberband.h \
  3060. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/QJsonObject \
  3061. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qjsonobject.h \
  3062. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qjsonvalue.h \
  3063. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcborvalue.h \
  3064. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qdatetime.h \
  3065. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcborcommon.h \
  3066. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/quuid.h \
  3067. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/QStandardItemModel \
  3068. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qstandarditemmodel.h \
  3069. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/QMap \
  3070. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QCheckBox \
  3071. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qcheckbox.h \
  3072. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qabstractbutton.h \
  3073. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/QJsonDocument \
  3074. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qjsondocument.h \
  3075. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/QJsonArray \
  3076. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qjsonarray.h \
  3077. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/QFile \
  3078. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QVBoxLayout \
  3079. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qboxlayout.h \
  3080. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qlayout.h \
  3081. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qlayoutitem.h \
  3082. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qgridlayout.h \
  3083. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QLabel \
  3084. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qlabel.h \
  3085. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QLineEdit \
  3086. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qlineedit.h \
  3087. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtextcursor.h \
  3088. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtextformat.h \
  3089. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpen.h \
  3090. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtextoption.h \
  3091. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QComboBox \
  3092. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qcombobox.h \
  3093. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QRadioButton \
  3094. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qradiobutton.h \
  3095. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QButtonGroup \
  3096. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qbuttongroup.h \
  3097. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/QDebug \
  3098. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QPushButton \
  3099. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qpushbutton.h \
  3100. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QStyleFactory \
  3101. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qstylefactory.h \
  3102. ui_OriginalWnd.h \
  3103. D:/qt/project01/OriginalWnd/Demo001_1.h \
  3104. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QSlider \
  3105. D:/qt/project01/OriginalWnd/Demo001_2.h \
  3106. D:/qt/project01/OriginalWnd/Demo001_3.h \
  3107. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QFileDialog \
  3108. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qfiledialog.h \
  3109. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qdir.h \
  3110. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qfileinfo.h \
  3111. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qdialog.h \
  3112. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/QDateTime \
  3113. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/QTimer \
  3114. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtimer.h \
  3115. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbasictimer.h \
  3116. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/QSettings \
  3117. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsettings.h
  3118. $(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\OriginalWnd.o D:\qt\project01\OriginalWnd\OriginalWnd.cpp
  3119. release/treeviewmanager.o: D:/qt/project01/OriginalWnd/treeviewmanager.cpp D:/qt/project01/OriginalWnd/treeviewmanager.h \
  3120. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QWidget \
  3121. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qwidget.h \
  3122. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtwidgetsglobal.h \
  3123. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtguiglobal.h \
  3124. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qglobal.h \
  3125. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qconfig-bootstrapped.h \
  3126. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qconfig.h \
  3127. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtcore-config.h \
  3128. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsystemdetection.h \
  3129. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qprocessordetection.h \
  3130. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcompilerdetection.h \
  3131. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtypeinfo.h \
  3132. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsysinfo.h \
  3133. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlogging.h \
  3134. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qflags.h \
  3135. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic.h \
  3136. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbasicatomic.h \
  3137. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_bootstrap.h \
  3138. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qgenericatomic.h \
  3139. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_cxx11.h \
  3140. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_msvc.h \
  3141. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qglobalstatic.h \
  3142. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmutex.h \
  3143. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qnumeric.h \
  3144. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qversiontagging.h \
  3145. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtgui-config.h \
  3146. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtwidgets-config.h \
  3147. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qwindowdefs.h \
  3148. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobjectdefs.h \
  3149. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qnamespace.h \
  3150. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobjectdefs_impl.h \
  3151. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qwindowdefs_win.h \
  3152. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobject.h \
  3153. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstring.h \
  3154. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qchar.h \
  3155. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbytearray.h \
  3156. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qrefcount.h \
  3157. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qarraydata.h \
  3158. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringliteral.h \
  3159. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringalgorithms.h \
  3160. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringview.h \
  3161. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringbuilder.h \
  3162. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlist.h \
  3163. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qalgorithms.h \
  3164. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qiterator.h \
  3165. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qhashfunctions.h \
  3166. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qpair.h \
  3167. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvector.h \
  3168. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontainertools_impl.h \
  3169. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qpoint.h \
  3170. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbytearraylist.h \
  3171. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringlist.h \
  3172. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qregexp.h \
  3173. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringmatcher.h \
  3174. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcoreevent.h \
  3175. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qscopedpointer.h \
  3176. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmetatype.h \
  3177. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvarlengtharray.h \
  3178. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontainerfwd.h \
  3179. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobject_impl.h \
  3180. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmargins.h \
  3181. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpaintdevice.h \
  3182. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qrect.h \
  3183. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsize.h \
  3184. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpalette.h \
  3185. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qcolor.h \
  3186. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qrgb.h \
  3187. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qrgba64.h \
  3188. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qbrush.h \
  3189. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qmatrix.h \
  3190. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpolygon.h \
  3191. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qregion.h \
  3192. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qdatastream.h \
  3193. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qiodevice.h \
  3194. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qline.h \
  3195. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtransform.h \
  3196. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qimage.h \
  3197. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpixelformat.h \
  3198. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpixmap.h \
  3199. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsharedpointer.h \
  3200. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qshareddata.h \
  3201. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qhash.h \
  3202. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsharedpointer_impl.h \
  3203. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfont.h \
  3204. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfontmetrics.h \
  3205. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfontinfo.h \
  3206. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qsizepolicy.h \
  3207. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qcursor.h \
  3208. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qkeysequence.h \
  3209. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qevent.h \
  3210. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvariant.h \
  3211. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmap.h \
  3212. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qdebug.h \
  3213. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtextstream.h \
  3214. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlocale.h \
  3215. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qset.h \
  3216. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontiguouscache.h \
  3217. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qurl.h \
  3218. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qurlquery.h \
  3219. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qfile.h \
  3220. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qfiledevice.h \
  3221. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qvector2d.h \
  3222. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtouchdevice.h \
  3223. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QTreeView \
  3224. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtreeview.h \
  3225. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qabstractitemview.h \
  3226. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qabstractscrollarea.h \
  3227. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qframe.h \
  3228. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qabstractitemmodel.h \
  3229. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qitemselectionmodel.h \
  3230. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qabstractitemdelegate.h \
  3231. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qstyleoption.h \
  3232. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qabstractspinbox.h \
  3233. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qvalidator.h \
  3234. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qregularexpression.h \
  3235. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qicon.h \
  3236. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qslider.h \
  3237. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qabstractslider.h \
  3238. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qstyle.h \
  3239. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtabbar.h \
  3240. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtabwidget.h \
  3241. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qrubberband.h \
  3242. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/QJsonObject \
  3243. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qjsonobject.h \
  3244. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qjsonvalue.h \
  3245. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcborvalue.h \
  3246. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qdatetime.h \
  3247. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcborcommon.h \
  3248. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/quuid.h \
  3249. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/QStandardItemModel \
  3250. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qstandarditemmodel.h \
  3251. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/QMap \
  3252. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QCheckBox \
  3253. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qcheckbox.h \
  3254. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qabstractbutton.h \
  3255. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/QJsonDocument \
  3256. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qjsondocument.h \
  3257. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/QJsonArray \
  3258. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qjsonarray.h \
  3259. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/QFile \
  3260. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QVBoxLayout \
  3261. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qboxlayout.h \
  3262. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qlayout.h \
  3263. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qlayoutitem.h \
  3264. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qgridlayout.h \
  3265. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QLabel \
  3266. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qlabel.h \
  3267. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QLineEdit \
  3268. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qlineedit.h \
  3269. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtextcursor.h \
  3270. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtextformat.h \
  3271. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpen.h \
  3272. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtextoption.h \
  3273. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QComboBox \
  3274. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qcombobox.h \
  3275. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QRadioButton \
  3276. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qradiobutton.h \
  3277. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QButtonGroup \
  3278. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qbuttongroup.h \
  3279. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/QDebug \
  3280. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QPushButton \
  3281. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qpushbutton.h \
  3282. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QStyleFactory \
  3283. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qstylefactory.h
  3284. $(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\treeviewmanager.o D:\qt\project01\OriginalWnd\treeviewmanager.cpp
  3285. release/main.o: D:/qt/project01/main.cpp D:/qt/project01/MainWnd.h \
  3286. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QMainWindow \
  3287. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qmainwindow.h \
  3288. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtwidgetsglobal.h \
  3289. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtguiglobal.h \
  3290. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qglobal.h \
  3291. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qconfig-bootstrapped.h \
  3292. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qconfig.h \
  3293. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtcore-config.h \
  3294. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsystemdetection.h \
  3295. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qprocessordetection.h \
  3296. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcompilerdetection.h \
  3297. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtypeinfo.h \
  3298. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsysinfo.h \
  3299. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlogging.h \
  3300. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qflags.h \
  3301. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic.h \
  3302. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbasicatomic.h \
  3303. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_bootstrap.h \
  3304. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qgenericatomic.h \
  3305. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_cxx11.h \
  3306. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_msvc.h \
  3307. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qglobalstatic.h \
  3308. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmutex.h \
  3309. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qnumeric.h \
  3310. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qversiontagging.h \
  3311. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtgui-config.h \
  3312. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtwidgets-config.h \
  3313. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qwidget.h \
  3314. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qwindowdefs.h \
  3315. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobjectdefs.h \
  3316. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qnamespace.h \
  3317. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobjectdefs_impl.h \
  3318. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qwindowdefs_win.h \
  3319. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobject.h \
  3320. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstring.h \
  3321. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qchar.h \
  3322. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbytearray.h \
  3323. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qrefcount.h \
  3324. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qarraydata.h \
  3325. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringliteral.h \
  3326. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringalgorithms.h \
  3327. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringview.h \
  3328. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringbuilder.h \
  3329. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlist.h \
  3330. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qalgorithms.h \
  3331. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qiterator.h \
  3332. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qhashfunctions.h \
  3333. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qpair.h \
  3334. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvector.h \
  3335. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontainertools_impl.h \
  3336. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qpoint.h \
  3337. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbytearraylist.h \
  3338. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringlist.h \
  3339. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qregexp.h \
  3340. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringmatcher.h \
  3341. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcoreevent.h \
  3342. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qscopedpointer.h \
  3343. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmetatype.h \
  3344. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvarlengtharray.h \
  3345. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontainerfwd.h \
  3346. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobject_impl.h \
  3347. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmargins.h \
  3348. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpaintdevice.h \
  3349. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qrect.h \
  3350. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsize.h \
  3351. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpalette.h \
  3352. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qcolor.h \
  3353. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qrgb.h \
  3354. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qrgba64.h \
  3355. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qbrush.h \
  3356. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qmatrix.h \
  3357. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpolygon.h \
  3358. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qregion.h \
  3359. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qdatastream.h \
  3360. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qiodevice.h \
  3361. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qline.h \
  3362. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtransform.h \
  3363. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qimage.h \
  3364. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpixelformat.h \
  3365. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpixmap.h \
  3366. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsharedpointer.h \
  3367. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qshareddata.h \
  3368. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qhash.h \
  3369. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsharedpointer_impl.h \
  3370. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfont.h \
  3371. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfontmetrics.h \
  3372. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfontinfo.h \
  3373. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qsizepolicy.h \
  3374. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qcursor.h \
  3375. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qkeysequence.h \
  3376. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qevent.h \
  3377. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvariant.h \
  3378. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmap.h \
  3379. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qdebug.h \
  3380. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtextstream.h \
  3381. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlocale.h \
  3382. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qset.h \
  3383. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontiguouscache.h \
  3384. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qurl.h \
  3385. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qurlquery.h \
  3386. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qfile.h \
  3387. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qfiledevice.h \
  3388. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qvector2d.h \
  3389. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtouchdevice.h \
  3390. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtabwidget.h \
  3391. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qicon.h \
  3392. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QToolButton \
  3393. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtoolbutton.h \
  3394. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qabstractbutton.h \
  3395. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QApplication \
  3396. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qapplication.h \
  3397. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcoreapplication.h \
  3398. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qeventloop.h \
  3399. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qdesktopwidget.h \
  3400. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qguiapplication.h \
  3401. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qinputmethod.h \
  3402. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/QFile
  3403. $(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\main.o D:\qt\project01\main.cpp
  3404. release/MainWnd.o: D:/qt/project01/MainWnd.cpp D:/qt/project01/MainWnd.h \
  3405. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QMainWindow \
  3406. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qmainwindow.h \
  3407. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtwidgetsglobal.h \
  3408. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtguiglobal.h \
  3409. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qglobal.h \
  3410. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qconfig-bootstrapped.h \
  3411. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qconfig.h \
  3412. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtcore-config.h \
  3413. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsystemdetection.h \
  3414. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qprocessordetection.h \
  3415. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcompilerdetection.h \
  3416. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtypeinfo.h \
  3417. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsysinfo.h \
  3418. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlogging.h \
  3419. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qflags.h \
  3420. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic.h \
  3421. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbasicatomic.h \
  3422. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_bootstrap.h \
  3423. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qgenericatomic.h \
  3424. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_cxx11.h \
  3425. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qatomic_msvc.h \
  3426. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qglobalstatic.h \
  3427. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmutex.h \
  3428. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qnumeric.h \
  3429. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qversiontagging.h \
  3430. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtgui-config.h \
  3431. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtwidgets-config.h \
  3432. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qwidget.h \
  3433. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qwindowdefs.h \
  3434. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobjectdefs.h \
  3435. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qnamespace.h \
  3436. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobjectdefs_impl.h \
  3437. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qwindowdefs_win.h \
  3438. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobject.h \
  3439. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstring.h \
  3440. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qchar.h \
  3441. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbytearray.h \
  3442. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qrefcount.h \
  3443. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qarraydata.h \
  3444. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringliteral.h \
  3445. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringalgorithms.h \
  3446. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringview.h \
  3447. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringbuilder.h \
  3448. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlist.h \
  3449. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qalgorithms.h \
  3450. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qiterator.h \
  3451. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qhashfunctions.h \
  3452. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qpair.h \
  3453. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvector.h \
  3454. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontainertools_impl.h \
  3455. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qpoint.h \
  3456. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qbytearraylist.h \
  3457. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringlist.h \
  3458. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qregexp.h \
  3459. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qstringmatcher.h \
  3460. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcoreevent.h \
  3461. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qscopedpointer.h \
  3462. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmetatype.h \
  3463. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvarlengtharray.h \
  3464. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontainerfwd.h \
  3465. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qobject_impl.h \
  3466. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmargins.h \
  3467. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpaintdevice.h \
  3468. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qrect.h \
  3469. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsize.h \
  3470. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpalette.h \
  3471. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qcolor.h \
  3472. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qrgb.h \
  3473. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qrgba64.h \
  3474. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qbrush.h \
  3475. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qmatrix.h \
  3476. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpolygon.h \
  3477. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qregion.h \
  3478. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qdatastream.h \
  3479. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qiodevice.h \
  3480. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qline.h \
  3481. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtransform.h \
  3482. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qimage.h \
  3483. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpixelformat.h \
  3484. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpixmap.h \
  3485. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsharedpointer.h \
  3486. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qshareddata.h \
  3487. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qhash.h \
  3488. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qsharedpointer_impl.h \
  3489. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfont.h \
  3490. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfontmetrics.h \
  3491. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qfontinfo.h \
  3492. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qsizepolicy.h \
  3493. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qcursor.h \
  3494. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qkeysequence.h \
  3495. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qevent.h \
  3496. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qvariant.h \
  3497. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qmap.h \
  3498. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qdebug.h \
  3499. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qtextstream.h \
  3500. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qlocale.h \
  3501. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qset.h \
  3502. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcontiguouscache.h \
  3503. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qurl.h \
  3504. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qurlquery.h \
  3505. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qfile.h \
  3506. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qfiledevice.h \
  3507. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qvector2d.h \
  3508. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtouchdevice.h \
  3509. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtabwidget.h \
  3510. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qicon.h \
  3511. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QToolButton \
  3512. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtoolbutton.h \
  3513. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qabstractbutton.h \
  3514. ui_MainWnd.h \
  3515. D:/qt/project01/Login.h \
  3516. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/QMouseEvent \
  3517. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qDebug \
  3518. D:/qt/project01/OriginalWnd/OriginalWnd.h \
  3519. D:/qt/project01/OriginalWnd/treeviewmanager.h \
  3520. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QWidget \
  3521. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QTreeView \
  3522. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtreeview.h \
  3523. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qabstractitemview.h \
  3524. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qabstractscrollarea.h \
  3525. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qframe.h \
  3526. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qabstractitemmodel.h \
  3527. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qitemselectionmodel.h \
  3528. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qabstractitemdelegate.h \
  3529. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qstyleoption.h \
  3530. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qabstractspinbox.h \
  3531. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qvalidator.h \
  3532. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qregularexpression.h \
  3533. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qslider.h \
  3534. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qabstractslider.h \
  3535. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qstyle.h \
  3536. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qtabbar.h \
  3537. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qrubberband.h \
  3538. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/QJsonObject \
  3539. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qjsonobject.h \
  3540. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qjsonvalue.h \
  3541. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcborvalue.h \
  3542. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qdatetime.h \
  3543. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qcborcommon.h \
  3544. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/quuid.h \
  3545. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/QStandardItemModel \
  3546. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qstandarditemmodel.h \
  3547. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/QMap \
  3548. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QCheckBox \
  3549. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qcheckbox.h \
  3550. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/QJsonDocument \
  3551. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qjsondocument.h \
  3552. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/QJsonArray \
  3553. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/qjsonarray.h \
  3554. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/QFile \
  3555. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QVBoxLayout \
  3556. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qboxlayout.h \
  3557. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qlayout.h \
  3558. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qlayoutitem.h \
  3559. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qgridlayout.h \
  3560. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QLabel \
  3561. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qlabel.h \
  3562. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QLineEdit \
  3563. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qlineedit.h \
  3564. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtextcursor.h \
  3565. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtextformat.h \
  3566. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qpen.h \
  3567. D:/app/Qt/5.15.2/mingw81_64/include/QtGui/qtextoption.h \
  3568. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QComboBox \
  3569. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qcombobox.h \
  3570. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QRadioButton \
  3571. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qradiobutton.h \
  3572. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QButtonGroup \
  3573. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qbuttongroup.h \
  3574. D:/app/Qt/5.15.2/mingw81_64/include/QtCore/QDebug \
  3575. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QPushButton \
  3576. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qpushbutton.h \
  3577. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/QStyleFactory \
  3578. D:/app/Qt/5.15.2/mingw81_64/include/QtWidgets/qstylefactory.h
  3579. $(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\MainWnd.o D:\qt\project01\MainWnd.cpp
  3580. release/qrc_res.o: release/qrc_res.cpp
  3581. $(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\qrc_res.o release\qrc_res.cpp
  3582. release/moc_Group.o: release/moc_Group.cpp
  3583. $(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\moc_Group.o release\moc_Group.cpp
  3584. release/moc_ImageWidget.o: release/moc_ImageWidget.cpp
  3585. $(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\moc_ImageWidget.o release\moc_ImageWidget.cpp
  3586. release/moc_ImageWidget_nodrag.o: release/moc_ImageWidget_nodrag.cpp
  3587. $(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\moc_ImageWidget_nodrag.o release\moc_ImageWidget_nodrag.cpp
  3588. release/moc_Login.o: release/moc_Login.cpp
  3589. $(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\moc_Login.o release\moc_Login.cpp
  3590. release/moc_MainWnd.o: release/moc_MainWnd.cpp
  3591. $(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\moc_MainWnd.o release\moc_MainWnd.cpp
  3592. release/moc_Demo001_1.o: release/moc_Demo001_1.cpp
  3593. $(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\moc_Demo001_1.o release\moc_Demo001_1.cpp
  3594. release/moc_Demo001_2.o: release/moc_Demo001_2.cpp
  3595. $(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\moc_Demo001_2.o release\moc_Demo001_2.cpp
  3596. release/moc_Demo001_3.o: release/moc_Demo001_3.cpp
  3597. $(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\moc_Demo001_3.o release\moc_Demo001_3.cpp
  3598. release/moc_OriginalWnd.o: release/moc_OriginalWnd.cpp
  3599. $(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\moc_OriginalWnd.o release\moc_OriginalWnd.cpp
  3600. release/moc_treeviewmanager.o: release/moc_treeviewmanager.cpp
  3601. $(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\moc_treeviewmanager.o release\moc_treeviewmanager.cpp
  3602. ####### Install
  3603. install: FORCE
  3604. uninstall: FORCE
  3605. FORCE: