mirror of
https://github.com/hfiref0x/WinObjEx64
synced 2026-06-08 14:40:58 +00:00
63c7d135c0
See "What Is New" section of readme for more info or for complete list of changes -changelog.txt in source directory. (beta 1)
17 lines
430 B
Batchfile
17 lines
430 B
Batchfile
echo ----------------------------------------------
|
|
echo %1 post-build script
|
|
echo ----------------------------------------------
|
|
|
|
echo Copy %2 to Bin\Plugins
|
|
copy %2 ..\..\Bin\plugins /y
|
|
|
|
echo Copy %2 to WinObjEx64\Plugins [DEBUG]
|
|
copy %2 ..\..\WinObjEx64\plugins /y
|
|
|
|
IF EXIST %3 (
|
|
Echo Copy %3 to WinObjEx64\Plugins [DEBUG]
|
|
copy %3 ..\..\WinObjEx64\plugins /y
|
|
) ELSE (
|
|
echo %3 pdb file was not found, skipping
|
|
)
|