From 9c84745cde5739ead5df116e2622da2c6ae0d1cb Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Thu, 27 Feb 2025 14:07:00 +0100 Subject: [PATCH] fix(cmake): use `CONTAINER_LIBRARY` variable instead of custom path. Signed-off-by: Federico Di Pierro --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index cc51b0ea..5352f4e6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -270,7 +270,7 @@ if(NOT WIN32 include(container_plugin) # Install the plugin install( - FILES "${PROJECT_BINARY_DIR}/container_plugin-prefix/src/libcontainer.so" + FILES "${CONTAINER_LIBRARY}" DESTINATION "${FALCO_ABSOLUTE_SHARE_DIR}/plugins" COMPONENT "${FALCO_COMPONENT_NAME}" )