Copy Swift libraries on macOS
This commit is contained in:
parent
a2eb0d7b4c
commit
0ddf75b382
@ -99,7 +99,7 @@ bins.each do |b|
|
|||||||
`cp #{$prefixDir}/bin/#{b} #{outPath}`
|
`cp #{$prefixDir}/bin/#{b} #{outPath}`
|
||||||
end
|
end
|
||||||
|
|
||||||
puts "copying libraries"
|
puts "Copying OSG libraries"
|
||||||
$osgLibs.each do |l|
|
$osgLibs.each do |l|
|
||||||
libFile = "lib#{l}.#{$osgSoVersion}.dylib"
|
libFile = "lib#{l}.#{$osgSoVersion}.dylib"
|
||||||
`cp #{$prefixDir}/lib/#{libFile} #{$frameworksDir}`
|
`cp #{$prefixDir}/lib/#{libFile} #{$frameworksDir}`
|
||||||
@ -109,6 +109,12 @@ end
|
|||||||
libFile = "libOpenThreads.#{$openThreadsSoVersion}.dylib"
|
libFile = "libOpenThreads.#{$openThreadsSoVersion}.dylib"
|
||||||
`cp #{$prefixDir}/lib/#{libFile} #{$frameworksDir}`
|
`cp #{$prefixDir}/lib/#{libFile} #{$frameworksDir}`
|
||||||
|
|
||||||
|
# needed for SWIFT integration
|
||||||
|
otherLibs = ['dbus-1.3', 'event_core-2.2.1']
|
||||||
|
otherLibs.each do |l|
|
||||||
|
`cp #{$prefixDir}/lib/lib#{l}.dylib #{$frameworksDir}`
|
||||||
|
end
|
||||||
|
|
||||||
$osgPlugins.each do |p|
|
$osgPlugins.each do |p|
|
||||||
pluginFile = "osgdb_#{p}.dylib"
|
pluginFile = "osgdb_#{p}.dylib"
|
||||||
`cp #{$prefixDir}/lib/osgPlugins/#{pluginFile} #{osgPluginsDir}`
|
`cp #{$prefixDir}/lib/osgPlugins/#{pluginFile} #{osgPluginsDir}`
|
||||||
|
Loading…
Reference in New Issue
Block a user