Files
UnrealEngineUWP/Engine/Source/Programs/UnrealBuildAccelerator/Test/Private/Windows/UbaTestWin.cpp
henrik karlsson 7262ce9635 [Uba]
* Fixed usage of wrong define name
* Renamed options in batchfiles using old options
* Removed old code not used
* Added one more test to the list of "all tests"

[CL 30019208 by henrik karlsson in ue5-main branch]
2023-11-30 13:11:39 -05:00

13 lines
186 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "UbaTestAll.h"
int wmain(int argc, wchar_t* argv[])
{
using namespace uba;
if (!RunAllTests())
return -1;
return 0;
}