Skip to content
This repository has been archived by the owner on Apr 12, 2020. It is now read-only.

Commit

Permalink
Add Attacque Supérior to makefiles.
Browse files Browse the repository at this point in the history
  • Loading branch information
GraionDilach committed Mar 8, 2016
1 parent 51ceda4 commit 6cb232f
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitignore
Expand Up @@ -78,3 +78,6 @@ StyleCopViolations.xml

# Support directory
/Support

#Attacque Supérior
/OpenRA.Mods.AS/
14 changes: 13 additions & 1 deletion Makefile
Expand Up @@ -187,6 +187,15 @@ mod_ts_LIBS = $(COMMON_LIBS) $(STD_MOD_LIBS) $(mod_common_TARGET)
PROGRAMS += mod_ts
mod_ts: $(mod_ts_TARGET)

# Attacque Supérior
mod_as_SRCS := $(shell find OpenRA.Mods.AS/ -iname '*.cs')
mod_as_TARGET = mods/as/OpenRA.Mods.AS.dll
mod_as_KIND = library
mod_as_DEPS = $(STD_MOD_DEPS) $(mod_common_TARGET)
mod_as_LIBS = $(COMMON_LIBS) $(STD_MOD_LIBS) $(mod_common_TARGET)
PROGRAMS += mod_as
mod_as: $(mod_as_TARGET)

check-scripts:
@echo
@echo "Checking for Lua syntax errors..."
Expand Down Expand Up @@ -222,6 +231,9 @@ check: utility mods
@echo "Checking for code style violations in OpenRA.Mods.TS..."
@mono --debug OpenRA.Utility.exe ra --check-code-style OpenRA.Mods.TS
@echo
@echo "Checking for code style violations in OpenRA.Mods.AS..."
@mono --debug OpenRA.Utility.exe ra --check-code-style OpenRA.Mods.AS
@echo
@echo "Checking for code style violations in OpenRA.Utility..."
@mono --debug OpenRA.Utility.exe ra --check-code-style OpenRA.Utility
@echo
Expand Down Expand Up @@ -320,7 +332,7 @@ tools: gamemonitor

package: all-dependencies core tools docs version

mods: mod_common mod_ra mod_cnc mod_d2k mod_ts
mods: mod_common mod_ra mod_cnc mod_d2k mod_ts mod_as

all: dependencies core tools

Expand Down
6 changes: 6 additions & 0 deletions OpenRA.sln
Expand Up @@ -17,6 +17,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OpenRA.Mods.D2k", "OpenRA.M
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OpenRA.Mods.TS", "OpenRA.Mods.TS\OpenRA.Mods.TS.csproj", "{5457CBF5-4CE4-421E-A8BF-9FD6C9732E1D}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OpenRA.Mods.AS", "OpenRA.Mods.AS\OpenRA.Mods.AS.csproj", "{6DEEE499-98E5-4977-AAAE-CEAE165F17CF}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OpenRA.Platforms.Default", "OpenRA.Platforms.Default\OpenRA.Platforms.Default.csproj", "{33D03738-C154-4028-8EA8-63A3C488A651}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OpenRA.Mods.Common", "OpenRA.Mods.Common\OpenRA.Mods.Common.csproj", "{FE6C8CC0-2F07-442A-B29F-17617B3B7FC6}"
Expand Down Expand Up @@ -139,6 +141,10 @@ Global
{5457CBF5-4CE4-421E-A8BF-9FD6C9732E1D}.Debug|x86.Build.0 = Debug|x86
{5457CBF5-4CE4-421E-A8BF-9FD6C9732E1D}.Release|x86.ActiveCfg = Release|x86
{5457CBF5-4CE4-421E-A8BF-9FD6C9732E1D}.Release|x86.Build.0 = Release|x86
{6DEEE499-98E5-4977-AAAE-CEAE165F17CF}.Debug|x86.ActiveCfg = Debug|x86
{6DEEE499-98E5-4977-AAAE-CEAE165F17CF}.Debug|x86.Build.0 = Debug|x86
{6DEEE499-98E5-4977-AAAE-CEAE165F17CF}.Release|x86.ActiveCfg = Release|x86
{6DEEE499-98E5-4977-AAAE-CEAE165F17CF}.Release|x86.Build.0 = Release|x86
{33D03738-C154-4028-8EA8-63A3C488A651}.Debug|x86.ActiveCfg = Debug|x86
{33D03738-C154-4028-8EA8-63A3C488A651}.Debug|x86.Build.0 = Debug|x86
{33D03738-C154-4028-8EA8-63A3C488A651}.Release|x86.ActiveCfg = Release|x86
Expand Down
2 changes: 2 additions & 0 deletions make.ps1
Expand Up @@ -180,6 +180,8 @@ elseif ($command -eq "check")
./OpenRA.Utility.exe cnc --check-code-style OpenRA.Mods.D2k
echo "Checking for code style violations in OpenRA.Mods.TS..."
./OpenRA.Utility.exe cnc --check-code-style OpenRA.Mods.TS
echo "Checking for code style violations in OpenRA.Mods.AS..."
./OpenRA.Utility.exe cnc --check-code-style OpenRA.Mods.AS
echo "Checking for code style violations in OpenRA.Utility..."
./OpenRA.Utility.exe cnc --check-code-style OpenRA.Utility
echo "Checking for code style violations in OpenRA.Test..."
Expand Down

0 comments on commit 6cb232f

Please sign in to comment.