forked from mrexodia/TitanHide
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix solution directory structure and release script
- Loading branch information
Showing
5 changed files
with
29 additions
and
18 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
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 |
---|---|---|
@@ -1,13 +1,7 @@ | ||
@echo off | ||
rmdir /S /Q bin | ||
mkdir bin\x32\plugins | ||
mkdir bin\x64\plugins | ||
mkdir bin\x32 | ||
mkdir bin\x64 | ||
|
||
copy Win7Release\*.* bin\x32\ | ||
copy Release\*.exe bin\x32\ | ||
copy Release\*.dll bin\x32\plugins\ | ||
copy Release\TitanHide.dp32 bin\x32\plugins\ | ||
copy x64\Win7Release\*.* bin\x64\ | ||
copy x64\Release\*.exe bin\x64\ | ||
copy x64\Release\*.dll bin\x64\plugins\ | ||
copy x64\Release\TitanHide.dp64 bin\x64\plugins\ | ||
xcopy /s /q Release\* bin\x32\ | ||
xcopy /s /q x64\Release\* bin\x64\ |