Rename components/platform files to follow naming conventions

This commit is contained in:
Alexei Kotov 2025-02-22 21:59:55 +03:00
parent b997386cd3
commit dd16c87080
5 changed files with 3 additions and 6 deletions

View File

@ -32,9 +32,6 @@ components/crashcatcher/windows_crashcatcher.hpp
components/crashcatcher/windows_crashmonitor.cpp
components/crashcatcher/windows_crashmonitor.hpp
components/crashcatcher/windows_crashshm.hpp
components/platform/file.posix.cpp
components/platform/file.stdio.cpp
components/platform/file.win32.cpp
components/to_utf8/gen_iconv.cpp
components/to_utf8/tables_gen.hpp
components/to_utf8/to_utf8.cpp

View File

@ -500,15 +500,15 @@ add_component_dir(platform
if (WIN32)
add_component_dir(platform
file.win32
filewin32
)
elseif (UNIX)
add_component_dir(platform
file.posix
fileposix
)
else ()
add_component_dir(platform
file.stdio
filestdio
)
endif()