Im not sure where to debug this, Im guessing that my VS project is trying to build something that doesnt exist, because I highly doubt this “delayimp.lib” cant be found as the unreal project that my plugin is living in was building just fine a few minutes ago with some custom C++ classes I had made in a separate plugin.
How would one go about debugging this and digging deeper in the source? Can I configure the build system to provide more detailed data about whats happening behind the scenes here?
This is the full build log in visual studio:
Build started...
1>------ Build started: Project: ScalableDesktopTest, Configuration: Development_Editor x64 ------
1>Using bundled DotNet SDK
1>Log file: C:\Users\olliv\AppData\Local\UnrealBuildTool\Log.txt
1>Building ScalableDesktopTestEditor...
1>Using Visual Studio 2022 14.29.30136 toolchain (C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.29.30133) and Windows 10.0.18362.0 SDK (C:\Program Files (x86)\Windows Kits\10).
1>[Adaptive Build] Excluded from ScalableDesktopTest unity file: ClassToConvertFromBPToCPPProject.cpp, ScalableDesktopTest.cpp
1>Determining max actions to execute in parallel (16 physical cores, 24 logical cores)
1> Executing up to 16 processes, one per physical core
1> Requested 1.5 GB free memory per action, 14.6 GB available: limiting max parallel actions to 9
1>Building 3 actions with 3 processes...
1>[1/3] Link UnrealEditor-ScalableDesktopTest.dll
1>LINK : fatal error LNK1181: cannot open input file 'delayimp.lib'
1>[2/3] Link UnrealEditor-UnrealToolbox.dll
1>LINK : fatal error LNK1181: cannot open input file 'delayimp.lib'
1>C:\Program Files\Microsoft Visual Studio\2022\Community\MSBuild\Microsoft\VC\v170\Microsoft.MakeFile.Targets(44,5): error MSB3073: The command "C:\UE\UE_5.0\Engine\Build\BatchFiles\Build.bat ScalableDesktopTestEditor Win64 Development -Project="C:\Users\olliv\Documents\Unreal Projects\ScalableDesktopTest\ScalableDesktopTest.uproject" -WaitMutex -FromMsBuild" exited with code 6.
1>Done building project "ScalableDesktopTest.vcxproj" -- FAILED.
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
Thanks