view compiler/uclean.vim @ 1:43d0e448edce

Don't change the vimcrosoft solution if it's not needed. Fix indenting.
author Ludovic Chabant <ludovic@chabant.com>
date Fri, 25 Sep 2020 09:44:49 -0700
parents ba03cac1b1c6
children
line wrap: on
line source

" Compiler file for building Unreal Engine projects
" Compiler: Unreal Build
" Maintainer: Ludovic Chabant <https://ludovic.chabant.com>

if exists("current_compiler")
    finish
endif
let current_compiler = "ubuild"

let s:keepcpo = &cpo

let s:prgpath = unreal#get_script_path("Engine/Build/BatchFiles/Clean")
call unreal#trace("Setting makeprg to: ".s:prgpath)
execute "CompilerSet makeprg=".fnameescape(s:prgpath)

CompilerSet errorformat&

let &cpo = s:keepcpo
unlet s:keepcpo