diff options
| author | Pierre Bourdon <delroth@gmail.com> | 2022-12-23 22:05:29 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-12-23 22:05:29 +0100 |
| commit | 2345ba178d91b172319472add4232d2c97bb180c (patch) | |
| tree | 58aa794014c97b63ec3f2c56b4fe2b1e75219f90 /Source/Core | |
| parent | ce92350140ed4bf918147695a894f609e95452e9 (diff) | |
| parent | 1c85143aba0b76524dc67dfb8218a32541e07ee5 (diff) | |
Merge pull request #11356 from Sam-Belliveau/update-dear-implot
Externals: Add Dear Implot
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/DolphinLib.vcxproj | 1 | ||||
| -rw-r--r-- | Source/Core/DolphinQt/CMakeLists.txt | 6 |
2 files changed, 4 insertions, 3 deletions
diff --git a/Source/Core/DolphinLib.vcxproj b/Source/Core/DolphinLib.vcxproj index 1aad7a65c3..5875de1550 100644 --- a/Source/Core/DolphinLib.vcxproj +++ b/Source/Core/DolphinLib.vcxproj @@ -41,6 +41,7 @@ <Import Project="$(ExternalsDir)FreeSurround\exports.props" /> <Import Project="$(ExternalsDir)glslang\exports.props" /> <Import Project="$(ExternalsDir)imgui\exports.props" /> + <Import Project="$(ExternalsDir)implot\exports.props" /> <Import Project="$(ExternalsDir)liblzma\exports.props" /> <Import Project="$(ExternalsDir)libspng\exports.props" /> <Import Project="$(ExternalsDir)libusb\exports.props" /> diff --git a/Source/Core/DolphinQt/CMakeLists.txt b/Source/Core/DolphinQt/CMakeLists.txt index d5025114af..79bd9c7509 100644 --- a/Source/Core/DolphinQt/CMakeLists.txt +++ b/Source/Core/DolphinQt/CMakeLists.txt @@ -612,12 +612,12 @@ if(APPLE) add_custom_command(TARGET dolphin-emu POST_BUILD COMMAND /usr/bin/codesign -f -s "${MACOS_CODE_SIGNING_IDENTITY}" --deep --options=runtime --entitlements "${CMAKE_SOURCE_DIR}/Source/Core/DolphinQt/DolphinEmu$<$<CONFIG:Debug>:Debug>.entitlements" "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/Dolphin.app" || true) - + # Code sign builds for build systems that do have release/debug variants (Xcode) add_custom_command(TARGET dolphin-emu POST_BUILD COMMAND /usr/bin/codesign -f -s "${MACOS_CODE_SIGNING_IDENTITY}" --deep --options=runtime --entitlements "${CMAKE_SOURCE_DIR}/Source/Core/DolphinQt/DolphinEmuDebug.entitlements" "${CMAKE_RUNTIME_OUTPUT_DIRECTORY_DEBUG}/Dolphin.app" || true) - + add_custom_command(TARGET dolphin-emu POST_BUILD COMMAND /usr/bin/codesign -f -s "${MACOS_CODE_SIGNING_IDENTITY}" --deep --options=runtime --entitlements "${CMAKE_SOURCE_DIR}/Source/Core/DolphinQt/DolphinEmu.entitlements" "${CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELEASE}/Dolphin.app" || true) @@ -678,4 +678,4 @@ endif() if(USE_DISCORD_PRESENCE) target_compile_definitions(dolphin-emu PRIVATE -DUSE_DISCORD_PRESENCE) -endif() +endif()
\ No newline at end of file |
