Revert "try disabling an apple-specific build rule"

This reverts commit 45ec66e976.
This commit is contained in:
jadebenn 2024-04-06 18:47:55 -05:00
parent 8154207848
commit bdf9adc0e8
2 changed files with 7 additions and 11 deletions

View File

@ -134,8 +134,7 @@
{
"name": "macos-debug",
"inherits": [
"macos-config",
"debug-config"
"macos-config"
],
"displayName": "[Debug] MacOS",
"description": "Create a debug build using MacOS"
@ -143,8 +142,7 @@
{
"name": "macos-release",
"inherits": [
"macos-config",
"release-config"
"macos-config"
],
"displayName": "[Release] MacOS",
"description": "Create a release build using MacOS"
@ -211,7 +209,6 @@
"configurePreset": "macos-debug",
"displayName": "[Debug] MacOS",
"description": "This preset is used to build in debug mode on MacOS",
"configuration": "Debug",
"jobs": 2
},
{
@ -219,7 +216,6 @@
"configurePreset": "macos-release",
"displayName": "[Release] MacOS",
"description": "This preset is used to build in release mode on MacOS",
"configuration": "Release",
"jobs": 2
}
],

View File

@ -6,11 +6,11 @@ include(GoogleTest)
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/bin)
#if(APPLE)
# set(CMAKE_INSTALL_RPATH_USE_LINK_PATH True)
# set(CMAKE_BUILD_WITH_INSTALL_RPATH True)
# set(CMAKE_INSTALL_RPATH "@executable_path")
#endif()
if(APPLE)
set(CMAKE_INSTALL_RPATH_USE_LINK_PATH True)
set(CMAKE_BUILD_WITH_INSTALL_RPATH True)
set(CMAKE_INSTALL_RPATH "@executable_path")
endif()
add_custom_target(conncpp_tests
${CMAKE_COMMAND} -E copy $<TARGET_FILE:MariaDB::ConnCpp> ${CMAKE_RUNTIME_OUTPUT_DIRECTORY})