Problem in QtSharp build
-
Hi All,
I am creating the at application using c# in visual studio 2010.For integrating Qt with C#,I have did the following steps.The steps are
First we need to clone QtSharp to our local machinemkdir C:\GITHUB
cd C:\GITHUB
git clone https://github.com/ddobrev/QtSharp.git QtSharp
cd C:\GITHUB\QtSharp
git checkout master
Next we need to tell NuGet to download any missing depends into a packages sub directory
To do this at the command linenuget.exe restore QtSharp.sln
These are all completed successfully.
Then I go to the stepBuilding the QtSharp/ QtSharp.CLI
To build the sources under Visual Studio 2010Open up the QtSharp.sln File within Visual Studio
Right Click Build on the QtSharp / QtSharp.CLI / QtSharp.Tests ProjectsNow the problem will come,The problem is while building the QtSharp.Tests project.The error is
"Error 26 Unable to copy file "C:\GITHUB\QtSharp\Wrappers\QtCore\release\QtCore-inlines.dll" to "bin\Debug\QtCore-inlines.dll". Could not find a part of the path 'C:\GITHUB\QtSharp\Wrappers\QtCore\release\QtCore-inlines.dll'. QtSharp.Tests"
QtCore-inlines.dll missed.and also release folder is missed.Please suggest any idea for me.Thanks in advance.
-
Hi and welcome to devnet,
as you can read from project page, QtSharp is only tested with MinGW so probably you could have issues to build it with VC++. If you need help you could also contact directly the author (QtSharp is not an official Qt tool).
Just to talk, can I know why you need to use Qt with C#?
-
Hi All,
I have some .cpp file and .h files.These files are using QObject,QList,QString and etc.Now, I want to convert these cpp file to cs file(c#).In this scenario I need to go for use of Qt with C#.Please suggest me soon ,Is there any idea for solving this issue.