Fix cmake to ${CMAKE_COMMAND} to avoid cmake error

master
Rye 2025-08-27 23:05:58 -04:00 committed by Andrey Kleshchev
parent 012c0705bd
commit 0ae3de8f1e
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ if (LL_TESTS)
# but the CMake $<TARGET_FILE_DIR> generator expression isn't evaluated by
# CREATE_LINK, so fudge it.
add_custom_command( TARGET lltest POST_BUILD
COMMAND cmake -E create_symlink ${SHARED_LIB_STAGING_DIR} ${CMAKE_BINARY_DIR}/test/Resources
COMMAND ${CMAKE_COMMAND} -E create_symlink ${SHARED_LIB_STAGING_DIR} ${CMAKE_BINARY_DIR}/test/Resources
)
endif()
endif (LL_TESTS)