summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPekka Vuorela <pvuorela@iki.fi>2025-11-27 14:34:51 +0200
committerPekka Vuorela <pvuorela@iki.fi>2025-11-28 08:46:43 +0200
commit28247b93c3a5afa52e562a2f2d58a27756024897 (patch)
treea2bfdf1f7a27c2839561fec3f22d47d5bfca610d
parentfec24394dd87def335a6c9bc080f6b78da181aee (diff)
Avoid cmake warning on symlink
Force creating the link so it doesn't warn for such to already exist. Change-Id: I733508fa3d5403edb81c75027367e7acf25a7153 Reviewed-by: <matti.viljanen@kapsi.fi> Reviewed-by: Damien Caliste <dcaliste@free.fr> Reviewed-by: Pekka Vuorela <pvuorela@iki.fi>
-rw-r--r--tests/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt
index 0ca6ddb0..b98ab5f3 100644
--- a/tests/CMakeLists.txt
+++ b/tests/CMakeLists.txt
@@ -1,5 +1,5 @@
# hack a directory that can act like plugin root with the common prefix
-execute_process(COMMAND ln -s ${CMAKE_BINARY_DIR}/src/plugins ${CMAKE_BINARY_DIR}/src/plugins/messagingframework)
+execute_process(COMMAND ln -sf ${CMAKE_BINARY_DIR}/src/plugins ${CMAKE_BINARY_DIR}/src/plugins/messagingframework)
add_subdirectory(tst_longstream)
add_subdirectory(tst_longstring)