cmake_minimum_required(VERSION 3.7) set(MEDIA_UWP_RESOURCES uwp/Logo.png uwp/package.appxManifest uwp/SmallLogo.png uwp/SmallLogo44x44.png uwp/SplashScreen.png uwp/StoreLogo.png uwp/Windows_TemporaryKey.pfx ) if(CMAKE_SYSTEM_NAME STREQUAL "WindowsStore") add_executable(datachannel-media-receiver main.cpp ${MEDIA_UWP_RESOURCES}) else() add_executable(datachannel-media-receiver main.cpp) endif() set_target_properties(datachannel-media-receiver PROPERTIES CXX_STANDARD 17 OUTPUT_NAME media-receiver) set_target_properties(datachannel-media-receiver PROPERTIES XCODE_ATTRIBUTE_PRODUCT_BUNDLE_IDENTIFIER com.github.paullouisageneau.libdatachannel.examples.media-receiver) find_package(Threads REQUIRED) target_link_libraries(datachannel-media-receiver LibDataChannel::LibDataChannel Threads::Threads nlohmann_json::nlohmann_json) if(MSVC) add_custom_command(TARGET datachannel-media-receiver POST_BUILD COMMAND ${CMAKE_COMMAND} -E copy_if_different "$/datachannel.dll" $ ) endif()