This repository has been archived on 2025-04-02. You can view files and clone it, but cannot push or open issues or pull requests.
controller-hart/MDK-ARM/output-static_lib.bat

20 lines
339 B
Batchfile

set filename=static
set path=controller
@echo off
set file_path=%path%\%filename%.lib
if exist %file_path% (
move %file_path% ..\User
)
set file_path=%path%\%filename%-hart.lib
if exist %file_path% (
move %file_path% ..\User
)
set file_path=%path%\%filename%-algorithm.lib
if exist %file_path% (
move %file_path% ..\User
)