From b4e7b9e5eb98adbce46d7e7cedb43b0b285499e1 Mon Sep 17 00:00:00 2001 From: Hendrik A <69595010+PatchByte@users.noreply.github.com> Date: Mon, 27 May 2024 19:11:34 +0200 Subject: [PATCH] Change conflicting names of capi and non capi copy paste examples --- examples/copy-paste-capi/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/copy-paste-capi/CMakeLists.txt b/examples/copy-paste-capi/CMakeLists.txt index fd593800f..d97686739 100644 --- a/examples/copy-paste-capi/CMakeLists.txt +++ b/examples/copy-paste-capi/CMakeLists.txt @@ -30,7 +30,7 @@ else() endif() set_target_properties(datachannel-copy-paste-capi-offerer PROPERTIES - OUTPUT_NAME offerer) + OUTPUT_NAME offerer-capi) set_target_properties(datachannel-copy-paste-capi-offerer PROPERTIES XCODE_ATTRIBUTE_PRODUCT_BUNDLE_IDENTIFIER com.github.paullouisageneau.libdatachannel.examples.copypaste.capi.offerer) @@ -44,7 +44,7 @@ else() endif() set_target_properties(datachannel-copy-paste-capi-answerer PROPERTIES - OUTPUT_NAME answerer) + OUTPUT_NAME answerer-capi) set_target_properties(datachannel-copy-paste-capi-answerer PROPERTIES XCODE_ATTRIBUTE_PRODUCT_BUNDLE_IDENTIFIER com.github.paullouisageneau.libdatachannel.examples.copypaste.capi.answerer)