From 15e27580e1057ac632a9ee35fe0f8190ff864ad7 Mon Sep 17 00:00:00 2001 From: Fabian Posch Date: Wed, 10 Jan 2024 18:13:39 -0500 Subject: [PATCH] fix library import naming --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index bfcf939..6507f33 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -52,10 +52,10 @@ include_directories(./) # Include shared act libraries # We need this mostly for file elaboration ahead of cluster deployment add_library(act-lib SHARED IMPORTED) -set_target_properties(ActLib PROPERTIES IMPORTED_LOCATION $ENV{ACT_HOME}/lib/libact.a) +set_target_properties(act-lib PROPERTIES IMPORTED_LOCATION $ENV{ACT_HOME}/lib/libact.a) add_library(act-common-lib SHARED IMPORTED) -set_target_properties(ActCommon PROPERTIES IMPORTED_LOCATION $ENV{ACT_HOME}/lib/libvlsilib.a) +set_target_properties(act-common-lib PROPERTIES IMPORTED_LOCATION $ENV{ACT_HOME}/lib/libvlsilib.a) # ATTENTION