mirror of
https://github.com/UltraCoderRU/libwebrtc.git
synced 2026-01-28 03:15:11 +00:00
18 lines
484 B
CMake
18 lines
484 B
CMake
if(VERSION_INCLUDED)
|
|
return()
|
|
endif(VERSION_INCLUDED)
|
|
set(VERSION_INCLUDED true)
|
|
|
|
#
|
|
# Set the project's version
|
|
|
|
set(LIBWEBRTC_MAJOR_VERSION 0)
|
|
set(LIBWEBRTC_MINOR_VERSION 0)
|
|
set(LIBWEBRTC_PATCH_VERSION 1)
|
|
set(LIBWEBRTC_BUILD_VERSION -rc.4)
|
|
set(LIBWEBRTC_WEBRTC_HEAD refs/branch-heads/57)
|
|
|
|
set(LIBWEBRTC_API_VERSION
|
|
"${LIBWEBRTC_MAJOR_VERSION}.${LIBWEBRTC_MINOR_VERSION}.${LIBWEBRTC_PATCH_VERSION}")
|
|
set(LIBWEBRTC_VERSION
|
|
${LIBWEBRTC_API_VERSION}${LIBWEBRTC_BUILD_VERSION})
|