You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since the cmake minimum version for the project is 3.14 anyways, I think it would make sense to use the recommended method (i.e., file(MAKE_DIRECTORY)) of creating directories. If this change makes sense, I can go ahead and open PR to make the necessary substitution.
The text was updated successfully, but these errors were encountered:
jfdev001
changed the title
replace make_directory with file(MAKE_DIRECTORY <directories>...)
Replace make_directory with file(MAKE_DIRECTORY <directories>...)Mar 18, 2025
Per https://cmake.org/cmake/help/latest/command/make_directory.html, the command
is deprecated since cmake 3.0 and
file(MAKE_DIRECTORY <directories>...)
should be used instead (see https://cmake.org/cmake/help/latest/command/file.html#make-directory).make_directory
is used in the following files:stdlib/src/CMakeLists.txt
Line 148 in 4ebe266
stdlib/config/cmake/Findtest-drive.cmake
Line 126 in 4ebe266
stdlib/config/cmake/Findtest-drive.cmake
Line 150 in 4ebe266
Since the cmake minimum version for the project is 3.14 anyways, I think it would make sense to use the recommended method (i.e.,
file(MAKE_DIRECTORY)
) of creating directories. If this change makes sense, I can go ahead and open PR to make the necessary substitution.The text was updated successfully, but these errors were encountered: