cmake_minimum_required(VERSION 3.7) project(offerer C) set(CMAKE_C_STANDARD 11) set(OFFERER_UWP_RESOURCES uwp/offerer/Logo.png uwp/offerer/package.appxManifest uwp/offerer/SmallLogo.png uwp/offerer/SmallLogo44x44.png uwp/offerer/SplashScreen.png uwp/offerer/StoreLogo.png uwp/offerer/Windows_TemporaryKey.pfx ) set(ANSWERER_UWP_RESOURCES uwp/answerer/Logo.png uwp/answerer/package.appxManifest uwp/answerer/SmallLogo.png uwp/answerer/SmallLogo44x44.png uwp/answerer/SplashScreen.png uwp/answerer/StoreLogo.png uwp/answerer/Windows_TemporaryKey.pfx ) if(CMAKE_SYSTEM_NAME STREQUAL "WindowsStore") add_executable(datachannel-copy-paste-capi-offerer offerer.c ${OFFERER_UWP_RESOURCES}) else() add_executable(datachannel-copy-paste-capi-offerer offerer.c) endif() set_target_properties(datachannel-copy-paste-capi-offerer PROPERTIES 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) target_link_libraries(datachannel-copy-paste-capi-offerer datachannel Threads::Threads) if(CMAKE_SYSTEM_NAME STREQUAL "WindowsStore") add_executable(datachannel-copy-paste-capi-answerer answerer.c ${ANSWERER_UWP_RESOURCES}) else() add_executable(datachannel-copy-paste-capi-answerer answerer.c) endif() set_target_properties(datachannel-copy-paste-capi-answerer PROPERTIES 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) find_package(Threads REQUIRED) target_link_libraries(datachannel-copy-paste-capi-answerer LibDataChannel::LibDataChannel Threads::Threads) if(MSVC) add_custom_command(TARGET datachannel-copy-paste-capi-offerer POST_BUILD COMMAND ${CMAKE_COMMAND} -E copy_if_different "$/datachannel.dll" $ ) add_custom_command(TARGET datachannel-copy-paste-capi-answerer POST_BUILD COMMAND ${CMAKE_COMMAND} -E copy_if_different "$/datachannel.dll" $ ) endif()