mirror of
https://github.com/mii443/libdatachannel.git
synced 2025-08-22 15:15:28 +00:00
57 lines
1.1 KiB
CMake
57 lines
1.1 KiB
CMake
cmake_minimum_required(VERSION 3.7)
|
|
if(POLICY CMP0079)
|
|
cmake_policy(SET CMP0079 NEW)
|
|
endif()
|
|
|
|
set(STREAMER_SOURCES
|
|
main.cpp
|
|
dispatchqueue.cpp
|
|
dispatchqueue.hpp
|
|
h264fileparser.cpp
|
|
h264fileparser.hpp
|
|
helpers.cpp
|
|
helpers.hpp
|
|
opusfileparser.cpp
|
|
opusfileparser.hpp
|
|
fileparser.cpp
|
|
fileparser.hpp
|
|
stream.cpp
|
|
stream.hpp
|
|
ArgParser.cpp
|
|
ArgParser.hpp
|
|
)
|
|
|
|
set(STREAMER_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(streamer ${STREAMER_SOURCES} ${STREAMER_UWP_RESOURCES})
|
|
else()
|
|
add_executable(streamer ${STREAMER_SOURCES})
|
|
endif()
|
|
|
|
if(WIN32)
|
|
target_compile_definitions(streamer PUBLIC STATIC_GETOPT)
|
|
endif()
|
|
|
|
set_target_properties(streamer PROPERTIES
|
|
CXX_STANDARD 17
|
|
OUTPUT_NAME streamer)
|
|
|
|
target_link_libraries(streamer datachannel nlohmann_json)
|
|
|
|
if(WIN32)
|
|
add_custom_command(TARGET streamer POST_BUILD
|
|
COMMAND ${CMAKE_COMMAND} -E copy_if_different
|
|
"$<TARGET_FILE_DIR:datachannel>/datachannel.dll"
|
|
$<TARGET_FILE_DIR:streamer>
|
|
)
|
|
endif()
|