mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-09 20:29:10 +02:00
Fix search path for 32-bit Boost
This commit is contained in:
+6
-1
@@ -139,7 +139,12 @@ if get_option('use-bitbridge')
|
|||||||
boost_filesystem_dep = winegcc.find_library(
|
boost_filesystem_dep = winegcc.find_library(
|
||||||
'boost_filesystem',
|
'boost_filesystem',
|
||||||
static : true,
|
static : true,
|
||||||
dirs : ['/usr/lib', '/usr/local/lib']
|
dirs : [
|
||||||
|
'/usr/lib32',
|
||||||
|
'/usr/lib/i386-linux-gnu',
|
||||||
|
'/usr/local/lib32',
|
||||||
|
'/usr/local/lib/i386-linux-gnu'
|
||||||
|
]
|
||||||
)
|
)
|
||||||
xcb_dep = winegcc.find_library('xcb')
|
xcb_dep = winegcc.find_library('xcb')
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user