1 2list(APPEND UCRT_FILESYSTEM_SOURCES 3 filesystem/access.cpp 4 filesystem/chmod.cpp 5 filesystem/findfile.cpp 6 filesystem/fullpath.cpp 7 filesystem/makepath.cpp 8 filesystem/mkdir.cpp 9 filesystem/rename.cpp 10 filesystem/rmdir.cpp 11 filesystem/splitpath.cpp 12 filesystem/stat.cpp 13 filesystem/unlink.cpp 14 filesystem/waccess.cpp 15 filesystem/wchmod.cpp 16 filesystem/wmkdir.cpp 17 filesystem/wrename.cpp 18 filesystem/wrmdir.cpp 19 filesystem/wunlink.cpp 20) 21 22if(MSVC) 23 # Disable warning C4838: conversion from 'int' to 'size_t' requires a narrowing conversion 24 set_source_files_properties(filesystem/splitpath.cpp PROPERTIES COMPILE_FLAGS "/wd4838") 25endif() 26