mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 11:18:08 +02:00
meson: move gallium include declarations to src
These are used by non-gallium osmesa, so they need to be defined outside of the gallium subdirectory. Signed-off-by: Dylan Baker <dylanx.c.baker@intel.com> Reviewed-by: Eric Engestrom <eric.engestrom@imgtec.com>
This commit is contained in:
parent
63c360d7b2
commit
06c6675560
3 changed files with 2 additions and 3 deletions
|
|
@ -18,8 +18,6 @@
|
|||
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
# SOFTWARE.
|
||||
|
||||
inc_gallium_aux = include_directories('.')
|
||||
|
||||
files_libgallium = files(
|
||||
'cso_cache/cso_cache.c',
|
||||
'cso_cache/cso_cache.h',
|
||||
|
|
|
|||
|
|
@ -18,7 +18,6 @@
|
|||
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
# SOFTWARE.
|
||||
|
||||
inc_gallium = include_directories('include')
|
||||
inc_gallium_drivers = include_directories('drivers')
|
||||
inc_gallium_winsys = include_directories('winsys')
|
||||
|
||||
|
|
|
|||
|
|
@ -23,6 +23,8 @@ inc_common = include_directories(
|
|||
inc_mesa = include_directories('mesa')
|
||||
inc_mapi = include_directories('mapi')
|
||||
inc_src = include_directories('.')
|
||||
inc_gallium = include_directories('gallium/include')
|
||||
inc_gallium_aux = include_directories('gallium/auxiliary')
|
||||
|
||||
libglsl_util = static_library(
|
||||
'glsl_util',
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue