mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-06-18 21:38:22 +02:00
intel: tools: create libaub
Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
This commit is contained in:
parent
475d670ef7
commit
ebb145ee12
1 changed files with 12 additions and 2 deletions
|
|
@ -18,12 +18,22 @@
|
|||
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
# SOFTWARE.
|
||||
|
||||
|
||||
libaub = static_library(
|
||||
'aub',
|
||||
files('aub_read.c', 'aub_mem.c'),
|
||||
include_directories : [inc_common, inc_intel],
|
||||
link_with : [libintel_common, libintel_dev, libmesa_util],
|
||||
c_args : [c_vis_args, no_override_init_args],
|
||||
install : false
|
||||
)
|
||||
|
||||
aubinator = executable(
|
||||
'aubinator',
|
||||
files('aubinator.c', 'intel_aub.h', 'aub_read.h', 'aub_read.c', 'aub_mem.h', 'aub_mem.c'),
|
||||
files('aubinator.c'),
|
||||
dependencies : [dep_expat, dep_zlib, dep_dl, dep_thread, dep_m],
|
||||
include_directories : [inc_common, inc_intel],
|
||||
link_with : [libintel_common, libintel_compiler, libintel_dev, libmesa_util],
|
||||
link_with : [libintel_common, libintel_compiler, libintel_dev, libmesa_util, libaub],
|
||||
c_args : [c_vis_args, no_override_init_args],
|
||||
build_by_default : true,
|
||||
install : true
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue