.github
CMakeModules
dist
externals
FidelityFX-FSR
SDL
Vulkan-Headers
cmake-modules
cpp-httplib
cubeb
discord-rpc
documentation
examples
button-clicker
send-presence
unrealstatus
Config
Content
Plugins
Source
unrealstatus
unrealstatus.Target.cs
unrealstatusEditor.Target.cs
.gitignore
unrealstatus.uproject
include
src
.clang-format
.gitignore
.travis.yml
CMakeLists.txt
LICENSE
README.md
appveyor.yml
build.py
dynarmic
ffmpeg
find-modules
getopt
glad
inih
libressl
libusb
mbedtls
microprofile
opus
sirit
soundtouch
xbyak
CMakeLists.txt
patches
src
CMakeLists.txt
README.md
license.txt
15 lines
346 B
C#
Executable File
15 lines
346 B
C#
Executable File
// Fill out your copyright notice in the Description page of Project Settings.
|
|
|
|
using UnrealBuildTool;
|
|
using System.Collections.Generic;
|
|
|
|
public class unrealstatusTarget : TargetRules
|
|
{
|
|
public unrealstatusTarget(TargetInfo Target) : base(Target)
|
|
{
|
|
Type = TargetType.Game;
|
|
|
|
ExtraModuleNames.AddRange( new string[] { "unrealstatus" } );
|
|
}
|
|
}
|