diff --git a/CMakeLists.txt b/CMakeLists.txt index fd53d37..f7d0d20 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -99,7 +99,6 @@ if(IDASQL_WITH_MCP) FetchContent_Declare(fastmcpp GIT_REPOSITORY https://github.com/0xeb/fastmcpp.git GIT_TAG 4837e8e0a27d0011b73643fe02b3553cd3935c34 - GIT_SHALLOW TRUE ) FetchContent_MakeAvailable(fastmcpp) endif() diff --git a/src/cli/CMakeLists.txt b/src/cli/CMakeLists.txt index 7367b96..83a6386 100644 --- a/src/cli/CMakeLists.txt +++ b/src/cli/CMakeLists.txt @@ -39,12 +39,12 @@ if(MSVC) elseif(APPLE) set_target_properties(idasql_cli PROPERTIES BUILD_WITH_INSTALL_RPATH TRUE - INSTALL_RPATH "@executable_path;$ENV{IDASDK}/src/bin" + INSTALL_RPATH "@executable_path/" ) elseif(UNIX) set_target_properties(idasql_cli PROPERTIES BUILD_WITH_INSTALL_RPATH TRUE - INSTALL_RPATH "$ORIGIN;$ENV{IDASDK}/src/bin" + INSTALL_RPATH "$ORIGIN" ) endif()