Files
UnrealEngineUWP/Engine/Source/Runtime/Launch/Resources/Version.h
Ben Marsh c8656515de Update the version number to 4.11.
[CL 2687795 by Ben Marsh in Main branch]
2015-09-11 09:38:15 -04:00

36 lines
1.1 KiB
C

// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
#pragma once
#define ENGINE_MAJOR_VERSION 4
#define ENGINE_MINOR_VERSION 11
#define ENGINE_PATCH_VERSION 0
#define ENGINE_IS_LICENSEE_VERSION 0
#define BUILT_FROM_CHANGELIST 0
#define BRANCH_NAME "UE4"
#define ENGINE_IS_PROMOTED_BUILD (BUILT_FROM_CHANGELIST > 0)
#define EPIC_COMPANY_NAME "Epic Games, Inc."
#define EPIC_COPYRIGHT_STRING "Copyright 1998-2015 Epic Games, Inc. All Rights Reserved."
#define EPIC_PRODUCT_NAME "Unreal Engine"
#define EPIC_PRODUCT_IDENTIFIER "UnrealEngine"
#define ENGINE_VERSION_TEXT_2(x) L ## x
#define ENGINE_VERSION_TEXT(x) ENGINE_VERSION_TEXT_2(x)
#define ENGINE_VERSION_STRINGIFY_2(x) ENGINE_VERSION_TEXT(#x)
#define ENGINE_VERSION_STRINGIFY(x) ENGINE_VERSION_STRINGIFY_2(x)
#define ENGINE_VERSION_STRING \
ENGINE_VERSION_STRINGIFY(ENGINE_MAJOR_VERSION) \
ENGINE_VERSION_TEXT(".") \
ENGINE_VERSION_STRINGIFY(ENGINE_MINOR_VERSION) \
ENGINE_VERSION_TEXT(".") \
ENGINE_VERSION_STRINGIFY(ENGINE_PATCH_VERSION) \
ENGINE_VERSION_TEXT("-") \
ENGINE_VERSION_STRINGIFY(BUILT_FROM_CHANGELIST) \
ENGINE_VERSION_TEXT("+") \
ENGINE_VERSION_TEXT(BRANCH_NAME)