Skip to content

Instantly share code, notes, and snippets.

@nullbus
nullbus / copyright_fixer.go
Created August 20, 2018 10:15
UE4 Default Copyright Fixer
@nullbus
nullbus / FASTBuild.cs
Last active February 12, 2020 08:39
modification of https://github.com/liamkf/Unreal_FASTBuild to make work on 4.22
// Copyright 2018 Yassine Riahi and Liam Flookes. Provided under a MIT License, see license file on github.
// Used to generate a fastbuild .bff file from UnrealBuildTool to allow caching and distributed builds.
// Tested with Windows 10, Visual Studio 2015/2017, Unreal Engine 4.19.1, FastBuild v0.95
// Durango is fully supported (Compiles with VS2015).
// Orbis will likely require some changes.
using System;
using System.Collections;
using System.Collections.Generic;
using System.IO;
using System.Diagnostics;
// +build ignore
package main
import (
"bytes"
"flag"
"io"
"io/ioutil"
"log"
"os"