Skip to content

Commit

Permalink
Packaging tool.
Browse files Browse the repository at this point in the history
  • Loading branch information
tarao committed Sep 18, 2010
1 parent c17e4a3 commit 20c34c7
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@
*.suo
*.aps
mmwnd/out
mmwnd/dist
*.vcproj.*
14 changes: 14 additions & 0 deletions mmwnd/makedist
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#! /usr/bin/env ruby
dir = File.join(File.dirname($0), 'dist')
system("rm -r '#{dir}' 2>/dev/null")
system("mkdir -p '#{dir}'")
Dir.chdir(dir)
%w'
../../NYSL.txt
../README.ja.txt
../out/Win32/Release/mmwnd.exe
../out/Win32/Release/mmwndhook.dll
../out/x64/Release/mmwnd64.exe
../out/x64/Release/mmwndhook64.dll
'.each{|f| system("cp '#{f}' .")}
system('zip mmwnd.zip *')

0 comments on commit 20c34c7

Please sign in to comment.