diff options
| author | Rye <rye@alchemyviewer.org> | 2025-08-27 23:05:58 -0400 |
|---|---|---|
| committer | Rye <rye@alchemyviewer.org> | 2025-08-27 23:05:58 -0400 |
| commit | dae43ad532579e849aa191fba4fdb3478a455840 (patch) | |
| tree | 7483aa4e264f4b1eac83c0ddf685a24b43f3de00 | |
| parent | 536c821c091be7020c614857e1fd220203f6ab23 (diff) | |
Fix cmake to ${CMAKE_COMMAND} to avoid cmake error
| -rw-r--r-- | indra/test/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/test/CMakeLists.txt b/indra/test/CMakeLists.txt index 745c0eedf8..f80286a630 100644 --- a/indra/test/CMakeLists.txt +++ b/indra/test/CMakeLists.txt @@ -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) |
