mirror of
https://gitlab.freedesktop.org/mesa/drm.git
synced 2026-06-01 13:08:24 +02:00
Merge branch 'ps-devel-tests-meson-build-disable-nouveau-tests-for-static-build' into 'main'
tests/meson.build: disable nouveau tests for static build See merge request mesa/libdrm!154
This commit is contained in:
commit
afaf5daf51
1 changed files with 5 additions and 1 deletions
|
|
@ -40,8 +40,12 @@ endif
|
|||
if with_etnaviv
|
||||
subdir('etnaviv')
|
||||
endif
|
||||
lib_type = get_option('default_library')
|
||||
if with_nouveau
|
||||
subdir('nouveau')
|
||||
# the nouveau test uses dlsym() making it incompatible with static linking
|
||||
if lib_type != 'static'
|
||||
subdir('nouveau')
|
||||
endif
|
||||
endif
|
||||
|
||||
drmsl = executable(
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue