Visual Studio 2013-LINK : error LNK1181: cannot open input file “ \src-2015\..\LibSL-bin-win32\lib\LibSL.lib"” - c++

I'm new for programming with Visual studio 2013, and I created a project (a game) and created an installer using Cmake.
But when I build my project I get the following error:
and I had the following error when I try to build my project:
Error 1 error LNK1181: cannot open input file '\src-2015..\LibSL-bin-win32\lib\LibSL.lib"'
the file '*.lib' is present I ckeck that, and there some posts in this website too but I tried them but they are not working? can someone help me solve this problem?

Could be an issue with properties, go to project properties, Linker, and somewhere in general there should be an option to set link library dependecies to no

Related

Upgrade from VS2015 to VS2022: Error LNK1104 cannot open file 'msvcprtd.lib'

I am trying to upgrade a project from VS2015 to VS2022 and getting the following error:
Error LNK1104 cannot open file 'msvcprtd.lib'
When I compile it as 2015 project, it works, but once I switch it to 2022, it fails.
In my case, I needed to select the checkmark 'Inherit from parent or project defaults' in library directories
I created a new empty project and compared the library settings with my older project to see what was the difference.

Cannot open a DLL file in visual studio 2015 Managed unit test Project?

When I edit and running the Manged unit test in Visual Studio 2015 It shows
Severity Code Description Project File Line Suppression State
Error LNK1104 cannot open file 'C:\xxx\xxx\xxx\Drop\x64\Test\DefaultTest.dll'
XXXX_MDM_Test C:\XXX\XXX\XXX\Test\xxx_MDM_Test\LINK 1
Points:-
1.My hard disk contain enough space
2.DefaultTest.dll file have read and write permissions
3.File Exists in my system
4.When i got this error If i restart the visual studio 2015 its working , again any changes in my source code This error automatically comes and again i have to restart my visual studio 2015.
5.The Process engine halting the my .dll file
Please give me any solution..
I had the same issue with a project which was written with VS2012, And I got the dll error, I managed to solve it by going to properties of my test project Configuration Properties -> Linker -> General -> Additional Library Directories. edit this to location of your dll file.

Visual Studio fatal error LNK1181: cannot open input file 'pthreadVC2.lib'

I have just installed Visual Studio 2013 on my Windows 8 computer, and I tried to follow this tutorial:
https://msdn.microsoft.com/en-us/library/vstudio/jj620919%28v=vs.120%29.aspx
However, when I tried to build the code, I got this error:
fatal error LNK1181: cannot open input file 'pthreadVC2.lib'
I have no idea what that file is, and why is it missing. How do I resolve this?
p.s. I've seen similar questions here on SO, but I don't quite understand the solutions. I tried to look in the project properties, but I don't know what should I look for. Everything seems to be default (I just installed the VS).

Strange visual studio compiler error, :N0.obj

I am working on a project using visual studio 2013 as an IDE, with a solution file that was generated from cmake. I have encountered this strange error that does not allow me to build my code with the release configuration, even though the code worked fine in the debug configuration. The error is the following:
error LNK1104: cannot open file ':N0.obj'
Not sure why this occurs as I have never seen nor created a N0.obj file.
The Out put window gives me this:
3> Generating Code...
3>LINK : fatal error LNK1104: cannot open file ':NO.obj'
Any help would be appreciated
Ugh... Look at sources in project, look though all files use C+F "NO.obj" or "N0.obj". Find and fix problem. If that does not work just skip cmake and because you are using visual studio new->project from existing code... follow prompts.

Not able to build a Qt project in visual studio 2005

When i am building my project in visual studio 2005 its end up with the following error
fatal error LNK1181: cannot open input file 'QtCored.lib'.
Please let me know where i am failing .
When we are integrating Qt 4.7.3 with visual studio 2005 and tries to create one Qt project in IDE , its giving a fatal error stating Qtcored.lib is missing . Actually if you go ..\Qt\4.7.3\lib folder there is nothing called Qtcored.lib ,But there is Qtcored4.lib . I think they have renamed it (not sure) . Now goto projproperties->linker->input->additionaldependency and remove Qtcored.lib from there and add Qtcored4.lib. Now if you build the project it will work fine ..
Cheerssss.. :)
Visual studio is not able to find the library file QtCored.lib. You have to specify the library path of it in visual studio settings.