Style check all csproj dirs from the makefile.

This commit is contained in:
Paul Chote 2017-08-12 00:24:03 +01:00 committed by abcdefg30
parent 75dbff29eb
commit 6cbff13bfb

View File

@ -37,6 +37,7 @@ MANIFEST_PATH = "mods/$(MOD_ID)/mod.yaml"
HAS_MSBUILD = $(shell command -v msbuild 2> /dev/null)
HAS_LUAC = $(shell command -v luac 2> /dev/null)
LUA_FILES = $(shell find mods/*/maps/* -iname '*.lua')
PROJECT_DIRS = $(shell dirname $$(find . -iname "*.csproj" -not -path "$(ENGINE_DIRECTORY)/*"))
engine:
@./fetch-engine.sh || (printf "Unable to continue without engine files\n"; exit 1)
@ -85,8 +86,10 @@ endif
check: utility stylecheck
@echo "Checking for explicit interface violations..."
@MOD_SEARCH_PATHS="$(MOD_SEARCH_PATHS)" mono --debug "$(ENGINE_DIRECTORY)/OpenRA.Utility.exe" $(MOD_ID) --check-explicit-interfaces
@echo "Checking for code style violations in OpenRA.Mods.$(MOD_ID)..."
@mono --debug "$(ENGINE_DIRECTORY)/OpenRA.StyleCheck.exe" OpenRA.Mods.$(MOD_ID)
@for i in $(PROJECT_DIRS) ; do \
echo "Checking for code style violations in $${i}...";\
mono --debug "$(ENGINE_DIRECTORY)/OpenRA.StyleCheck.exe" $${i};\
done
test: utility
@echo "Testing $(MOD_ID) mod MiniYAML..."