<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[VS2012 .vcxproj file not working as accepted]]></title><description><![CDATA[<p dir="auto">I have been trying to track down this linker error for a whole now that is titled "VS2012 &amp; mismatch detected for ‘_MSC_VER’":<a href="http://qt-project.org/forums/viewthread/26292/" target="_blank" rel="noopener noreferrer nofollow ugc">http://qt-project.org/forums/viewthread/26292/</a></p>
<p dir="auto">Well, I do generate the project file from a .pro and .pri file, so I thought I would try compiling it via jom and it links just fine, no issues.  I regenerated the .vcxproj file and tried a clean build but I keep getting the same error, well there are two errors actually.  The first error I get is this:</p>
<p dir="auto">1&gt;LINK : fatal error LNK1117: syntax error in option 'manifest:embed'</p>
<p dir="auto">I am able to get around that one by going into Properties --&gt; Manifest Tools --&gt; Input and Output and setting Embed Manifest to No.  But I still get the mismatch detected for _MSC_VER.  Here is my pro and pri file:</p>
<p dir="auto">pro:<br />
@TARGET = SalesCenter<br />
QT += xml sql gui core script svg network printsupport widgets<br />
CONFIG += debug_and_release<br />
DEFINES += QT_LARGEILE_SUPPORT QT_SQL_LIB _USE_32BIT_TIME_T<br />
QTPLUGIN  += qjpeg<br />
INCLUDEPATH += ./../../../include ./GeneratedFiles ../../3rdPartyLibraries/NCReport/src/ncreport ../../3rdPartyLibraries/NCReport/src/ncreport ../../3rdPartyLibraries/NCReport/src/preview .<br />
LIBS += -L../../3rdPartyLibraries/NCReport/lib -L./../../../lib -lLicenseLibMD<br />
PRECOMPILED_HEADER = stdafx.h<br />
DEPENDPATH += .<br />
UI_DIR += ./GeneratedFiles<br />
RCC_DIR += ./GeneratedFiles</p>
<p dir="auto">CONFIG(debug, debug|release) {<br />
DESTDIR = ../Debug<br />
LIBS += -L../Debug -lncreportd<br />
OBJECTS_DIR += Debug<br />
MOC_DIR += ./GeneratedFiles/Debug<br />
INCLUDEPATH += ./GeneratedFiles/Debug<br />
} else {<br />
DEFINES += QT_NO_DEBUG_OUTPUT<br />
DESTDIR = ../Release<br />
LIBS += -L../Release -lncreport<br />
OBJECTS_DIR += Release<br />
MOC_DIR += ./GeneratedFiles/Release<br />
INCLUDEPATH += ./GeneratedFiles/Release<br />
}</p>
<p dir="auto">win32:RC_FILE = SalesCenter.rc</p>
<p dir="auto">RESOURCES += ncreport/preview.qrc</p>
<p dir="auto">include(SalesCenter.pri)@</p>
<p dir="auto">SalesCenter.pri<br />
@HEADERS += ./aboutform.h <br />
./Action2TakeModel.h <br />
./CustomerMdiChild.h <br />
./CustomerSqlModel.h <br />
./DataTransferObjects.h <br />
./DBManager.h <br />
./EventPriceListMgrForm.h <br />
./EventPriceListSqlModel.h <br />
./FavoriteCenter.h <br />
./FavoriteCustomerSqlModel.h <br />
./FavoriteDialog.h <br />
./FavoriteImageData.h <br />
./FavoriteImageModel.h <br />
./FavoriteMgrWindow.h <br />
./GeneralUtils.h <br />
./ImageCopyDTO.h <br />
./ImageManager.h <br />
./InvoiceCenter.h <br />
./InvoiceCenterSqlModel.h <br />
./InvoiceEditorDelegate.h <br />
./InvoiceEditorForm.h <br />
./InvoiceImageMgr.h <br />
./InvoiceItemDelegate.h <br />
./InvoiceItemNotesForm.h <br />
./InvoiceItemSqlModel.h <br />
./InvoiceModel.h <br />
./InvoicePriceListSqlModel.h <br />
./InvoicePrintDialog.h <br />
./InvoiceProcessor.h <br />
./InvoiceSqlModel.h <br />
./LogBrowser.h <br />
./LogBrowserDialog.h <br />
./OptionForm.h <br />
./PaymentTypeModel.h <br />
./PriceListDelegate.h <br />
./PriceListItemDelegate.h <br />
./PriceListItemSqlModel.h <br />
./PriceListMgrForm.h <br />
./PrintingCfg.h <br />
./PrintingCfgFactory.h <br />
./ProductMgrForm.h <br />
./ProductSqlModel.h <br />
./ReportFactory.h <br />
./ReportForm.h <br />
./ReportInvoiceFactory.h <br />
./RIFOrderItemModel.h <br />
./SalesCenterHttpClient.h <br />
./stdafx.h <br />
./SystemSettings.h <br />
./TaxCalculator.h<br />
SOURCES += ./aboutform.cpp <br />
./Action2TakeModel.cpp <br />
./CustomerMdiChild.cpp <br />
./CustomerSqlModel.cpp <br />
./DBManager.cpp <br />
./EventPriceListMgrForm.cpp <br />
./EventPriceListSqlModel.cpp <br />
./FavoriteCenter.cpp <br />
./FavoriteCustomerSqlModel.cpp <br />
./FavoriteDialog.cpp <br />
./FavoriteImageData.cpp <br />
./FavoriteImageModel.cpp <br />
./FavoriteMgrWindow.cpp <br />
./GeneralUtils.cpp <br />
./ImageManager.cpp <br />
./InvoiceCenter.cpp <br />
./InvoiceCenterSqlModel.cpp <br />
./InvoiceEditorDelegate.cpp <br />
./InvoiceEditorForm.cpp <br />
./InvoiceImageMgr.cpp <br />
./InvoiceItemDelegate.cpp <br />
./InvoiceItemNotesForm.cpp <br />
./InvoiceItemSqlModell.cpp <br />
./InvoiceModel.cpp <br />
./InvoicePriceListSqlModel.cpp <br />
./InvoicePrintDialog.cpp <br />
./InvoiceProcessor.cpp <br />
./InvoiceSqlModel.cpp <br />
./LogBrowser.cpp <br />
./LogBrowserDialog.cpp <br />
./main.cpp <br />
./OptionForm.cpp <br />
./PaymentTypeModel.cpp <br />
./PriceListDelegate.cpp <br />
./PriceListItemDelegate.cpp <br />
./PriceListItemSqlModel.cpp <br />
./PriceListMgrForm.cpp <br />
./PrintingCfg.cpp <br />
./PrintingCfgFactory.cpp <br />
./ProductMgrForm.cpp <br />
./ProductSqlModel.cpp <br />
./ReportFactory.cpp <br />
./ReportForm.cpp <br />
./ReportInvoiceFactory.cpp <br />
./RIFOrderItemModel.cpp <br />
./SalesCenterHttpClient.cpp <br />
./stdafx.cpp <br />
./SystemSettings.cpp<br />
FORMS += ./aboutform.ui <br />
./CustomerMdiChild.ui <br />
./EventPriceListMgrForm.ui <br />
./FavoriteCenter.ui <br />
./FavoriteDialog.ui <br />
./FavoriteMgrWindow.ui <br />
./InvoiceCenter.ui <br />
./InvoiceEditorForm.ui <br />
./InvoiceItemNotesForm.ui <br />
./InvoicePrintDialog.ui <br />
./OptionForm.ui <br />
./PriceListMgrForm.ui <br />
./ProductMgrForm.ui <br />
./ReportForm.ui<br />
RESOURCES += ncreport/preview.qrc <br />
salescenter.qrc@</p>
]]></description><link>https://forum.qt.io/topic/25945/vs2012-vcxproj-file-not-working-as-accepted</link><generator>RSS for Node</generator><lastBuildDate>Wed, 12 Aug 2026 04:53:34 GMT</lastBuildDate><atom:link href="https://forum.qt.io/topic/25945.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 06 Apr 2013 21:59:15 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to VS2012 .vcxproj file not working as accepted on Sat, 13 Apr 2013 14:07:05 GMT]]></title><description><![CDATA[<p dir="auto">what i meant was if Qt was configured with <em>configure ... -platform "win32-msvc2012"</em><br />
(assuming you use Qt5)</p>
<p dir="auto">Also you could try to link against a already "compiled package":<a href="http://download.qt-project.org/official_releases/qt/5.0/5.0.2/qt-windows-opensource-5.0.2-msvc2012_64-x64-offline.exe" target="_blank" rel="noopener noreferrer nofollow ugc">http://download.qt-project.org/official_releases/qt/5.0/5.0.2/qt-windows-opensource-5.0.2-msvc2012_64-x64-offline.exe</a>.</p>
]]></description><link>https://forum.qt.io/post/173586</link><guid isPermaLink="true">https://forum.qt.io/post/173586</guid><dc:creator><![CDATA[raven-worx]]></dc:creator><pubDate>Sat, 13 Apr 2013 14:07:05 GMT</pubDate></item><item><title><![CDATA[Reply to VS2012 .vcxproj file not working as accepted on Fri, 12 Apr 2013 14:42:49 GMT]]></title><description><![CDATA[<p dir="auto">I am 100% sure I am using VS2012, not so much on following the spec, considering I didn't know there was a speck to follow.  Might you provide a link to more details?</p>
]]></description><link>https://forum.qt.io/post/173478</link><guid isPermaLink="true">https://forum.qt.io/post/173478</guid><dc:creator><![CDATA[scarleton]]></dc:creator><pubDate>Fri, 12 Apr 2013 14:42:49 GMT</pubDate></item><item><title><![CDATA[Reply to VS2012 .vcxproj file not working as accepted on Fri, 12 Apr 2013 06:50:52 GMT]]></title><description><![CDATA[<p dir="auto">And you're 100% sure that your Qt is also built with msvc2012 <em>AND</em> the according MKSPEC?!</p>
]]></description><link>https://forum.qt.io/post/173415</link><guid isPermaLink="true">https://forum.qt.io/post/173415</guid><dc:creator><![CDATA[raven-worx]]></dc:creator><pubDate>Fri, 12 Apr 2013 06:50:52 GMT</pubDate></item></channel></rss>