use version_major

This commit is contained in:
Ryan Gammon 2023-08-10 21:20:05 -07:00
parent cc34592498
commit cd53da0040
2 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@ endif
foreach mono_libs : mono_sublibs
key = mono_libs[0].to_upper()+'_DL_MONO'
if target_machine.system() == 'windows'
efl_libs.set(key, 'lib' + mono_libs[0].to_lower() + '-1')
efl_libs.set(key, 'lib' + mono_libs[0].to_lower() + '-' + version_major)
else
efl_libs.set(key, mono_libs[0].to_lower())
endif

View File

@ -84,7 +84,7 @@ foreach lib : mono_sublibs
dllimport = package_name
if target_machine.system() == 'windows'
dllimport = 'lib' + dllimport + '-1'
dllimport = 'lib' + dllimport + '-' + version_major
endif
if (package_name != 'eldbus')