fix build on windows by adding missing archive name properties on libs

the archive output name is used on windows but was never set for 2
libraries

with this they will have a proper name matching other components of the
shared library

Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
This commit is contained in:
Matthieu Gallien 2023-05-31 15:45:09 +02:00
parent 91ccd9099d
commit 47a7a267ea
No known key found for this signature in database
GPG key ID: 7D0F74F05C22F553
2 changed files with 4 additions and 0 deletions

View file

@ -117,6 +117,8 @@ set_target_properties(
${APPLICATION_EXECUTABLE}_csync ${APPLICATION_EXECUTABLE}_csync
RUNTIME_OUTPUT_NAME RUNTIME_OUTPUT_NAME
${APPLICATION_EXECUTABLE}_csync ${APPLICATION_EXECUTABLE}_csync
ARCHIVE_OUTPUT_NAME
${APPLICATION_EXECUTABLE}_csync
) )
if(BUILD_OWNCLOUD_OSX_BUNDLE) if(BUILD_OWNCLOUD_OSX_BUNDLE)
INSTALL( INSTALL(

View file

@ -220,6 +220,8 @@ set_target_properties(
${APPLICATION_EXECUTABLE}sync ${APPLICATION_EXECUTABLE}sync
RUNTIME_OUTPUT_NAME RUNTIME_OUTPUT_NAME
${APPLICATION_EXECUTABLE}sync ${APPLICATION_EXECUTABLE}sync
ARCHIVE_OUTPUT_NAME
${APPLICATION_EXECUTABLE}sync
) )
if(NOT BUILD_OWNCLOUD_OSX_BUNDLE) if(NOT BUILD_OWNCLOUD_OSX_BUNDLE)