mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2025-12-21 17:56:04 +08:00
17 lines
410 B
Batchfile
Executable File
17 lines
410 B
Batchfile
Executable File
@echo off
|
|
if "%1"=="" goto blank
|
|
|
|
copy "_TestFixture.cpp" "%1TestFixture.cpp"
|
|
copy "_TestFixture.h" "%1TestFixture.h"
|
|
|
|
|
|
fnr --cl --find "[[FIXTURE_TYPE]]" --replace "%1TestFixture" --fileMask "%1TestFixture.cpp" --dir %cd%
|
|
fnr --cl --find "[[FIXTURE_TYPE]]" --replace "%1TestFixture" --fileMask "%1TestFixture.h" --dir %cd%
|
|
|
|
goto done
|
|
|
|
:blank
|
|
echo Usage:
|
|
echo %~n0 FixtureTypeName
|
|
|
|
:done |