You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 13, 2022. It is now read-only.
I used cmake to generate a vs2015 x64 solution for release. RakNetLibStatic doesn't build because of a linker error. I haven't changed anything other than CCRakNetSlidingWindow.cpp to stop errors with the abs function.
3>LINK : fatal error LNK1181: cannot open input file 'MSVCRT.lib"'
I'm not sure where quot; comes from, is this maybe being added somewhere during configuration or do I need to use the project files already there?
The text was updated successfully, but these errors were encountered:
Sounds like this got messed up when the VS project got converted to VS2015 or there's an issue with your MSBuild template property files.
Check out the project settings in VS (Linker -> Input) to see if the Additional Dependencies list that entry, check whether the entry is listed under Linker -> Command Line, or open the corresponding vcxproj-file with notepad and search for the MSVCRT.lib" string to determine where it's coming from.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I used cmake to generate a vs2015 x64 solution for release.
RakNetLibStatic
doesn't build because of a linker error. I haven't changed anything other thanCCRakNetSlidingWindow.cpp
to stop errors with theabs
function.3>LINK : fatal error LNK1181: cannot open input file 'MSVCRT.lib"'
I'm not sure where
quot;
comes from, is this maybe being added somewhere during configuration or do I need to use the project files already there?The text was updated successfully, but these errors were encountered: