-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Replace armake with HEMTT (armake2), Use cmake -A platform generation * Remove armake2 building on Travis CI * Remove redundant matrix from Travis CI * Fix Travis CI configuration and remove unused Slack notification
- Loading branch information
Showing
11 changed files
with
92 additions
and
215 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
@echo off | ||
hemtt.exe build | ||
pause |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name = "TAC Mods" | ||
prefix = "tac" | ||
author = "TAC Mod Team" | ||
files = [ | ||
"*.dll", | ||
"*.so", | ||
"mod.cpp", | ||
"README.md", | ||
"AUTHORS.txt", | ||
"LICENSE", | ||
"logo_tac_ca.paa", | ||
"logo_tac_small_ca.paa" | ||
] | ||
headerexts = [ | ||
"version={{git \"id 8\"}}" | ||
] | ||
modname = "{{prefix}}_mods" | ||
keyname = "{{prefix}}_{{version}}" | ||
signame = "{{prefix}}_{{version}}" | ||
|
||
releasebuild = [ | ||
"@zip {{prefix}}_mods_{{version}}" | ||
] | ||
|
||
[scripts.extensions] | ||
show_output = true | ||
steps_windows = [ | ||
"cd extensions\\vcproj && cmake .. -A Win32 && msbuild TAC.sln /m /p:Configuration=RelWithDebInfo", | ||
"cd extensions\\vcproj64 && cmake .. -A x64 && msbuild TAC.sln /m /p:Configuration=RelWithDebInfo" | ||
] | ||
steps_linux = [ | ||
"cd extensions/build && cmake .. && make", | ||
"cd extensions/build && CXX=$(eval $(which g++-w64-mingw-i686)) cmake .. && make", | ||
"find ./extensions/build/ ( -name \"*.so\" -o -name \"*.dll\" ) -exec cp {} ./" | ||
] |
Binary file not shown.
Binary file not shown.