mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 10:52:59 +00:00
[UCRT] Add CMake files
This commit is contained in:
parent
ef440b9aef
commit
7bb12665d6
21 changed files with 654 additions and 1 deletions
25
sdk/lib/ucrt/filesystem/filesystem.cmake
Normal file
25
sdk/lib/ucrt/filesystem/filesystem.cmake
Normal file
|
@ -0,0 +1,25 @@
|
|||
|
||||
list(APPEND UCRT_FILESYSTEM_SOURCES
|
||||
filesystem/access.cpp
|
||||
filesystem/chmod.cpp
|
||||
filesystem/findfile.cpp
|
||||
filesystem/fullpath.cpp
|
||||
filesystem/makepath.cpp
|
||||
filesystem/mkdir.cpp
|
||||
filesystem/rename.cpp
|
||||
filesystem/rmdir.cpp
|
||||
filesystem/splitpath.cpp
|
||||
filesystem/stat.cpp
|
||||
filesystem/unlink.cpp
|
||||
filesystem/waccess.cpp
|
||||
filesystem/wchmod.cpp
|
||||
filesystem/wmkdir.cpp
|
||||
filesystem/wrename.cpp
|
||||
filesystem/wrmdir.cpp
|
||||
filesystem/wunlink.cpp
|
||||
)
|
||||
|
||||
if(MSVC)
|
||||
# Disable warning C4838: conversion from 'int' to 'size_t' requires a narrowing conversion
|
||||
set_source_files_properties(filesystem/splitpath.cpp PROPERTIES COMPILE_FLAGS "/wd4838")
|
||||
endif()
|
Loading…
Add table
Add a link
Reference in a new issue