From a7fbff05e85aa3dee30c99cc162a2ae2047efe12 Mon Sep 17 00:00:00 2001 From: Modios Date: Wed, 5 May 2021 20:22:30 +0100 Subject: [PATCH] Update CMakeLists.txt --- src/native/CMakeLists.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/native/CMakeLists.txt b/src/native/CMakeLists.txt index a261d7d..94e609a 100644 --- a/src/native/CMakeLists.txt +++ b/src/native/CMakeLists.txt @@ -9,4 +9,6 @@ set(CMAKE_BUILD_TYPE "Release" CACHE STRING "Choose the type of build, options a set(EIGEN_DIRECTORY . CACHE STRING "Eigen directory. The directory specified should have a subdirectory 'Eigen'.") include_directories(${EIGEN_DIRECTORY}) -add_library(eigen_core SHARED EigenNative.cpp) \ No newline at end of file +set(CMAKE_SHARED_LIBRARY_PREFIX "") + +add_library(eigen_core SHARED EigenNative.cpp)