1
0
mirror of https://github.com/simh/simh.git synced 2026-01-11 23:52:58 +00:00

Visual Studio Projects: Correct file name capitalization in IBM1130 project

Allow dynamic input of source code checking parameters.
This commit is contained in:
Mark Pizzolato 2023-06-20 14:42:50 -10:00
parent 444cf9d215
commit 3c0d7385e1
2 changed files with 16 additions and 15 deletions

View File

@ -196,27 +196,27 @@
Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm"
>
<File
RelativePath="..\ibm1130\ibm1130_cpu.c"
RelativePath="..\Ibm1130\ibm1130_cpu.c"
>
</File>
<File
RelativePath="..\ibm1130\ibm1130_cr.c"
RelativePath="..\Ibm1130\ibm1130_cr.c"
>
</File>
<File
RelativePath="..\ibm1130\ibm1130_disk.c"
RelativePath="..\Ibm1130\ibm1130_disk.c"
>
</File>
<File
RelativePath="..\ibm1130\ibm1130_fmt.c"
RelativePath="..\Ibm1130\ibm1130_fmt.c"
>
</File>
<File
RelativePath="..\ibm1130\ibm1130_gdu.c"
RelativePath="..\Ibm1130\ibm1130_gdu.c"
>
</File>
<File
RelativePath="..\ibm1130\ibm1130_gui.c"
RelativePath="..\Ibm1130\ibm1130_gui.c"
>
</File>
<File
@ -224,7 +224,7 @@
>
</File>
<File
RelativePath="..\ibm1130\ibm1130_prt.c"
RelativePath="..\Ibm1130\ibm1130_prt.c"
>
</File>
<File
@ -236,11 +236,11 @@
>
</File>
<File
RelativePath="..\ibm1130\ibm1130_stddev.c"
RelativePath="..\Ibm1130\ibm1130_stddev.c"
>
</File>
<File
RelativePath="..\ibm1130\ibm1130_sys.c"
RelativePath="..\Ibm1130\ibm1130_sys.c"
>
</File>
<File
@ -369,15 +369,15 @@
>
</File>
<File
RelativePath="..\ibm1130\ibm1130_conin.h"
RelativePath="..\Ibm1130\ibm1130_conin.h"
>
</File>
<File
RelativePath="..\ibm1130\ibm1130_conout.h"
RelativePath="..\Ibm1130\ibm1130_conout.h"
>
</File>
<File
RelativePath="..\ibm1130\ibm1130_defs.h"
RelativePath="..\Ibm1130\ibm1130_defs.h"
>
</File>
<File
@ -385,11 +385,11 @@
>
</File>
<File
RelativePath="..\ibm1130\ibm1130_prtwheel.h"
RelativePath="..\Ibm1130\ibm1130_prtwheel.h"
>
</File>
<File
RelativePath="..\ibm1130\ibm1130res.h"
RelativePath="..\Ibm1130\ibm1130res.h"
>
</File>
<File

View File

@ -66,7 +66,7 @@ set _project_linedeps="%~dp0%~n2.linedeps"
findstr RelativePath "%_project_file%" | findstr /C:.c | findstr /C:windows-build /V > %_project_deps%
for /F "usebackq tokens=2 delims==" %%f in (`type %_project_deps%`) do @echo %%f>>%_project_linedeps%
set _deps_switches=
if exist "%_script_name%.Run-Source-Check-Switches" set _deps_switches=-DV
if exist "%_script_name%.Run-Source-Check-Switches" for /f "usebackq eol=; tokens=1*" %%i in ("%_script_name%.Run-Source-Check-Switches") do set _deps_switches=%%i
set _deps_line=
for /F "usebackq tokens=2 delims==" %%f in (`type %_project_deps%`) do set _deps_line=!_deps_line! %%f
del %_project_deps%
@ -74,3 +74,4 @@ del %_project_linedeps%
echo Checking Source in %~n2 simulator...
%2 %_deps_switches% CheckSourceCode %_deps_line%
set _deps_line=
if errorlevel 1 exit /B 1