blob: c1a6d4b552822a30a4727159b654c30ac6db275a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Configuration for 32 bits/channel OSMesa library on Linux
include $(TOP)/configs/linux-osmesa
CONFIG_NAME = linux-osmesa32
# Compiler and flags
# Work around aliasing bugs - developers should comment this out
CFLAGS += -fno-strict-aliasing
CXXFLAGS += -fno-strict-aliasing
DEFINES += -DCHAN_BITS=32 -DDEFAULT_SOFTWARE_DEPTH_BITS=31
# Library names
OSMESA_LIB = OSMesa32
# Directories
PROGRAM_DIRS =
# Dependencies
APP_LIB_DEPS = -l$(OSMESA_LIB)
|