Skip to content

Commit 5cbdeab

Browse files
committed
Rename SDL_mslibc_x64.asm -> SDL_mslibc_x64.masm
The .masm suffix should give meson sufficient info about the file being MASM instead of NASM/YASM.
1 parent ed62d6e commit 5cbdeab

File tree

8 files changed

+7
-7
lines changed

8 files changed

+7
-7
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -497,7 +497,7 @@ sdl_glob_sources(
497497
if(MSVC AND TARGET SDL3-shared)
498498
if(SDL_CPU_X64)
499499
enable_language(ASM_MASM)
500-
set(asm_src "${SDL3_SOURCE_DIR}/src/stdlib/SDL_mslibc_x64.asm")
500+
set(asm_src "${SDL3_SOURCE_DIR}/src/stdlib/SDL_mslibc_x64.masm")
501501
target_compile_options(SDL3-shared PRIVATE "$<$<COMPILE_LANGUAGE:ASM_MASM>:/nologo>")
502502
set_property(SOURCE "${asm_src}" PROPERTY LANGUAGE "ASM_MASM")
503503
target_sources(SDL3-shared PRIVATE "${asm_src}")

VisualC-GDK/SDL/SDL.vcxproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -733,7 +733,7 @@
733733
<ClCompile Include="..\..\src\stdlib\SDL_iconv.c" />
734734
<ClCompile Include="..\..\src\stdlib\SDL_malloc.c" />
735735
<ClCompile Include="..\..\src\stdlib\SDL_mslibc.c" />
736-
<MASM Condition="'$(Platform)'=='x64'" Include="..\..\src\stdlib\SDL_mslibc_x64.asm" >
736+
<MASM Condition="'$(Platform)'=='x64'" Include="..\..\src\stdlib\SDL_mslibc_x64.masm" >
737737
<PrecompiledHeader>NotUsing</PrecompiledHeader>
738738
</MASM>
739739
<ClCompile Include="..\..\src\stdlib\SDL_qsort.c" />

VisualC-GDK/SDL/SDL.vcxproj.filters

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1397,7 +1397,7 @@
13971397
<ClCompile Include="..\..\src\stdlib\SDL_mslibc.c">
13981398
<Filter>stdlib</Filter>
13991399
</ClCompile>
1400-
<MASM Include="..\..\src\stdlib\SDL_mslibc_x64.asm">
1400+
<MASM Include="..\..\src\stdlib\SDL_mslibc_x64.masm">
14011401
<Filter>stdlib</Filter>
14021402
</MASM>
14031403
<ClCompile Include="..\..\src\core\gdk\SDL_gdk.cpp">

VisualC-WinRT/SDL-UWP.vcxproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,7 @@
419419
<ClCompile Include="..\src\stdlib\SDL_iconv.c" />
420420
<ClCompile Include="..\src\stdlib\SDL_malloc.c" />
421421
<ClCompile Include="..\src\stdlib\SDL_mslibc.c" />
422-
<MASM Condition="'$(Platform)'=='x64'" Include="..\src\stdlib\SDL_mslibc_x64.asm" >
422+
<MASM Condition="'$(Platform)'=='x64'" Include="..\src\stdlib\SDL_mslibc_x64.masm" >
423423
<PrecompiledHeader>NotUsing</PrecompiledHeader>
424424
</MASM>
425425
<ClCompile Include="..\src\stdlib\SDL_qsort.c" />

VisualC-WinRT/SDL-UWP.vcxproj.filters

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -899,7 +899,7 @@
899899
<ClCompile Include="..\src\stdlib\SDL_mslibc.c">
900900
<Filter>Source Files</Filter>
901901
</ClCompile>
902-
<MASM Include="..\src\stdlib\SDL_mslibc_x64.asm">
902+
<MASM Include="..\src\stdlib\SDL_mslibc_x64.masm">
903903
<Filter>stdlib</Filter>
904904
</MASM>
905905
<ClCompile Include="..\src\core\windows\pch.c">

VisualC/SDL/SDL.vcxproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -613,7 +613,7 @@
613613
<ClCompile Include="..\..\src\stdlib\SDL_iconv.c" />
614614
<ClCompile Include="..\..\src\stdlib\SDL_malloc.c" />
615615
<ClCompile Include="..\..\src\stdlib\SDL_mslibc.c" />
616-
<MASM Condition="'$(Platform)'=='x64'" Include="..\..\src\stdlib\SDL_mslibc_x64.asm" >
616+
<MASM Condition="'$(Platform)'=='x64'" Include="..\..\src\stdlib\SDL_mslibc_x64.masm" >
617617
<PrecompiledHeader>NotUsing</PrecompiledHeader>
618618
</MASM>
619619
<ClCompile Include="..\..\src\stdlib\SDL_qsort.c" />

VisualC/SDL/SDL.vcxproj.filters

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1387,7 +1387,7 @@
13871387
<ClCompile Include="..\..\src\stdlib\SDL_mslibc.c">
13881388
<Filter>stdlib</Filter>
13891389
</ClCompile>
1390-
<MASM Include="..\..\src\stdlib\SDL_mslibc_x64.asm">
1390+
<MASM Include="..\..\src\stdlib\SDL_mslibc_x64.masm">
13911391
<Filter>stdlib</Filter>
13921392
</MASM>
13931393
</ItemGroup>

0 commit comments

Comments
 (0)