diff options
Diffstat (limited to 'Protocols/IAX/build/rakefile')
-rw-r--r-- | Protocols/IAX/build/rakefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Protocols/IAX/build/rakefile b/Protocols/IAX/build/rakefile index b84fb6b..028b3d9 100644 --- a/Protocols/IAX/build/rakefile +++ b/Protocols/IAX/build/rakefile @@ -11,6 +11,7 @@ GC_NAME = "IAX" SRC_DIR=File.expand_path("..")
DOCS_DIR=File.expand_path("../Docs")
+RES_DIR=File.expand_path("../res")
VERSION_FILE="#{DOCS_DIR}/#{PROJECT}_version.txt"
TYPES=[ 'ansi', 'unicode' ]
@@ -156,6 +157,12 @@ HISTORY_EVENTS=[ "../../../bin/Release/Plugins/aa_historyevents.dll", "../../../ cp_relative(file, DOCS_DIR, target_dir)
end
+ target_dir = File.join(ZIP_FOLDERS[i], 'Icons')
+ docs = FileList["#{RES_DIR}/proto_#{PROJECT}.dll"]
+ docs.each do |file|
+ cp_relative(file, RES_DIR, target_dir)
+ end
+
target_dir = File.join(ZIP_FOLDERS[i], 'Plugins')
makedirs target_dir
cp DLL[i], target_dir
|