• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2024 Google LLC
2# SPDX-License-Identifier: MIT
3
4inc_aemu = include_directories('include')
5
6files_libaemu = files(
7  'ring_buffer.cpp',
8  'Stream.cpp',
9)
10
11libaemu = static_library(
12   'aemu',
13   files_libaemu,
14   include_directories: [inc_aemu],
15)
16