Merge pull request #100 from marco-tranzatto/fix/arguments_set_target_properties

build: fix error set_target_properties called with incorrect arguments number
This commit is contained in:
Joni Räsänen 2022-03-04 10:29:55 +02:00 committed by GitHub
commit 33f6260478
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -19,8 +19,8 @@ option(DISABLE_CRYPTO "Do not build uvgRTP with crypto enabled" OFF)
add_library(${PROJECT_NAME})
set_target_properties(${PROJECT_NAME} PROPERTIES
SOVERSION ${PROJECT_VERSION_MAJOR}
VERSION ${LIBRARY_VERSION}
SOVERSION "${PROJECT_VERSION_MAJOR}"
VERSION "${LIBRARY_VERSION}"
)
set(UVGRTP_CXX_FLAGS "")
set(UVGRTP_LINKER_FLAGS "")