Skip to content

Commit

Permalink
make_directory is deprecated since version 3.0, use the file(MAKE_DIR…
Browse files Browse the repository at this point in the history
…ECTORY) command instead
  • Loading branch information
Yancey2023 authored and mvieth committed Oct 13, 2024
1 parent 4e06bd6 commit 9e48412
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -238,8 +238,8 @@ endif()

set(PCL_OUTPUT_LIB_DIR "${PCL_BINARY_DIR}/${LIB_INSTALL_DIR}")
set(PCL_OUTPUT_BIN_DIR "${PCL_BINARY_DIR}/${BIN_INSTALL_DIR}")
make_directory("${PCL_OUTPUT_LIB_DIR}")
make_directory("${PCL_OUTPUT_BIN_DIR}")
file(MAKE_DIRECTORY "${PCL_OUTPUT_LIB_DIR}")
file(MAKE_DIRECTORY "${PCL_OUTPUT_BIN_DIR}")
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY "${PCL_OUTPUT_LIB_DIR}")
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${PCL_OUTPUT_BIN_DIR}")
if(WIN32)
Expand Down

0 comments on commit 9e48412

Please sign in to comment.