This commit is contained in:
Bryce Covert
2016-01-07 20:21:04 -08:00
parent 2387918a6a
commit 9019166c7e
38 changed files with 45 additions and 3 deletions

View File

@@ -12,5 +12,6 @@
{
"411611" "depot_build_411611.vdf"
"411612" "depot_build_411612.vdf"
"411614" "depot_build_411614.vdf"
}
}

View File

@@ -0,0 +1,31 @@
"DepotBuildConfig"
{
// Set your assigned depot ID here
"DepotID" "411614"
// Set a root for all content.
// All relative paths specified below (LocalPath in FileMapping entries, and FileExclusion paths)
// will be resolved relative to this root.
// If you don't define ContentRoot, then it will be assumed to be
// the location of this script file, which probably isn't what you want
"ContentRoot" "/Users/brycecovert/dev/advent/desktop/target/linux"
// include all files recursivley
"FileMapping"
{
// This can be a full path, or a path relative to ContentRoot
"LocalPath" "*"
// This is a path relative to the install folder of your game
"DepotPath" "."
// If LocalPath contains wildcards, setting this means that all
// matching files within subdirectories of LocalPath will also
// be included.
"recursive" "1"
}
// but exclude all symbol files
// This can be a full path, or a path relative to ContentRoot
"FileExclusion" "*.pdb"
}