Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
4 changes: 2 additions & 2 deletions src/cli/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand Down
Loading