I have a small Linux project which has a OpenCV as its dependency.
In Linux (Ubuntu: running in VMware), I’ve already compiled and built it by using bash script without any error.
In order to develop it more efficiently, I’m going to import it into Visual Studio 2015 from Ubuntu by using VisualGDB.
According to https://visualgdb.com/tutorials/linux/import/, I’ve imported it into VS2015 successfully, but whenever I built it, I have got a following error:
“Error MSB3073 The command “”C:\Program Files (x86)\Sysprogs\VisualGDB\VisualGDB.exe” /build “D:\tmp\LinuxProject3\LinuxProject3\LinuxProject3.vcxproj” “/solution:D:\tmp\LinuxProject3\LinuxProject3.sln” “/config:Debug” “/platform:VisualGDB”” exited with code 1.”
In order to check out whether my project had a problem or not, I imported the source of Midnight Commander just illustrated in above link with all default setting without any changes, but unfortunately the result was same.
By the way, there is no error in creating(not importing) new Linux C++ project, connecting with VMware, compiling, building and debugging in VS2015.
What’s wrong? What mistakes did I make?