[solved] upgrade c++ project from ue 4.24 to 4.25 under Linux

I don’t know if I am missing something, but I didn’t found a complete solution,
As @TestSubject89 says, you have to remove two options if the solution given by @anon3589488 is not enough.
You can do it in the file : Engine/Source/Developer/DesktopPlatform/Private/DesktopPlatformBase.cpp

Look for this line :

Arguments += " -Progress -NoEngineChanges -NoHotReloadFromIDE";

Arguments += " -Progress";

Then

  • re-compile your engine
  • launch your project and accept the rebuild
3 Likes