Edit

IABSD.fr/xenocara/lib/mesa/src/android_stub/meson.build

Branch :

  • Show log

    Commit

  • Author : jsg
    Date : 2023-11-02 04:31:01
    Hash : 60059fee
    Message : Import Mesa 23.1.9

  • lib/mesa/src/android_stub/meson.build
  • if with_android_stub
      stub_libs = []
      lib_names = ['cutils', 'hardware', 'log', 'nativewindow', 'sync']
    
      if with_libbacktrace
        lib_names += ['backtrace']
      endif
    
      foreach lib : lib_names
        stub_libs += shared_library(
          lib,
          files(lib + '_stub.cpp'),
          include_directories : inc_include,
          install : false,
        )
      endforeach
    
      dep_android = declare_dependency(
        link_with : stub_libs,
      )
    endif