Including dll to Visual Studio project [closed] - c++

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I need to read a mat file in a Visual Studio project. I'm using Visual Studio 2015 32bit on Windows 10 64 bit.
I have installed a MatFileHandler library using NuGet Package Manager and got a MatFileHandler.dll file but I don't know how to use it. In program I've written use MatFileHandler but linker does not see this. Please don't judge me, I'm very new to Visual Studio.

MatFileHandler library is not a native C++ dll. It's .NET assembly and it depends on .NETStandard 2.0.
You should create .NET application and add this NuGet package to it. Here is the step-by-step instruction on how to create .NET Core application.

Related

How to compile and run a C++ project with a Makefile? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
Improve this question
I needed a library for my project that would cover CANFIS functionalities and Fuzzylitex does that. But the problem is, I don't know how to build this project? I am familiar with cmake files but this project has Makefile and I cannot work with it? I am using Visual Studio 2015.
Thanks to the comments, I found out about the difference between Makefile and Cmake files. The tool that can be used to make a project with Makefile in Visual Studio, is NMAKE.EXE. It is built in for Visual Studio. All you need to do is to open the visual studio command prompt (tools -> Visual Studio Command Prompt) and go to the directory of the Makefile and type "nmake" and press enter. The problem just begins here! There is a good chance that you will get errors. Anyway, this is the solution to my problem. Also, this is a good tutorial on using NMAKE.

How can I change the visual studio 2015 compiler to cygwin [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
Is it possible to change the visual studio 2015 compiler to Cygwin the ide is nice I would just like a different compiler.
Not directly, but you can use CMake to generate both Cygwin and Visual Studio projects. Write code in Visual Studio, build the Cygwin build via CMake. Only downside: updates to the Visual Studio .vcxproj file aren't sync'ed back to the CMakelist.txt file.

can I use visual studio 2013 with unity 5 [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I have Windows 10 installed on my laptop and I want to know if can use Visual Studio 2013 with the latest unity 3-d software. Also unity installed a Visual Studio community 2015. Will that community software work as well?
Yes, you can use either: VS 2013 (any version) or VS-Community 2015.

How to set up MSVC 2013 in QtCreator [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
I cannot congigure Qt-creator. I've downloaded Qt 5.2.0 for Windows 64-bit (VS 2012, OpenGL) and I have MSVS Ultimate 2013 which i use for C++ and Windiws 8.1x64.
When i'm starting compile Qt example project appears that
Qt Creator needs a compiler set up to build. Connfigure a compiler in
the kit options.
In Build&Run i cannot choose MSVC12 as compiler. And Qt-creator says i don't have any compiler for Qt 5.2. But he finds MSVC 12. Actually, i have MSVS 2013, maybe that is problem of compatibility.
I will appreciate any help from you

Create C++ Apps in Microsoft Visual Studio 2012 for Windows 8 [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
I have just installed Microsoft Visual Studio 2012 for Windows and I wonder how to create C++ apps in this.
Actually I have a code in C++ OpenGL (a bowling game I created which you can see in my older posts, that was in Eclipse), that I want to run in Microsoft Visual Studio 2012 for Windows.
There is a little confusion. If you've got "Visual Studio Express 2012 for Windows 8", you cannot make classic C++ projects, only a XAML/C# and C++/CLI managed stuff.
For native C++, try "Visual Studio Express 2012 for Windows Desktop" or any commercial distributive.
BTW, AFAIK, you can test Visual Studio Express 2013 Release Candidate commercial editions free for now.