mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-21 21:17:25 +00:00
try disabling an apple-specific build rule
This commit is contained in:
parent
6e41423dc3
commit
45ec66e976
@ -134,7 +134,8 @@
|
||||
{
|
||||
"name": "macos-debug",
|
||||
"inherits": [
|
||||
"macos-config"
|
||||
"macos-config",
|
||||
"debug-config"
|
||||
],
|
||||
"displayName": "[Debug] MacOS",
|
||||
"description": "Create a debug build using MacOS"
|
||||
@ -142,7 +143,8 @@
|
||||
{
|
||||
"name": "macos-release",
|
||||
"inherits": [
|
||||
"macos-config"
|
||||
"macos-config",
|
||||
"release-config"
|
||||
],
|
||||
"displayName": "[Release] MacOS",
|
||||
"description": "Create a release build using MacOS"
|
||||
@ -209,6 +211,7 @@
|
||||
"configurePreset": "macos-debug",
|
||||
"displayName": "[Debug] MacOS",
|
||||
"description": "This preset is used to build in debug mode on MacOS",
|
||||
"configuration": "Debug",
|
||||
"jobs": 2
|
||||
},
|
||||
{
|
||||
@ -216,6 +219,7 @@
|
||||
"configurePreset": "macos-release",
|
||||
"displayName": "[Release] MacOS",
|
||||
"description": "This preset is used to build in release mode on MacOS",
|
||||
"configuration": "Release",
|
||||
"jobs": 2
|
||||
}
|
||||
],
|
||||
|
@ -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})
|
||||
|
Loading…
Reference in New Issue
Block a user