You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
747 B
24 lines
747 B
AM_CFLAGS = -Wno-missing-field-initializers -Wconversion \
|
|
-std=c++11 -DLOG_TAG=\"SDE_DRM\" -DUNIX_OS
|
|
|
|
|
|
cpp_sources = drm_manager.cpp \
|
|
drm_connector.cpp \
|
|
drm_crtc.cpp \
|
|
drm_plane.cpp \
|
|
drm_encoder.cpp \
|
|
drm_atomic_req.cpp \
|
|
drm_utils.cpp \
|
|
drm_pp_manager.cpp \
|
|
drm_property.cpp \
|
|
drm_dpps_mgr_imp.cpp
|
|
|
|
|
|
lib_LTLIBRARIES = libsdedrm.la
|
|
libsdedrm_la_CC = @CC@
|
|
libsdedrm_la_SOURCES = $(cpp_sources)
|
|
libsdedrm_la_CFLAGS = $(AM_CFLAGS) -DLOG_TAG=\"SDE_DRM\"
|
|
libsdedrm_la_CPPFLAGS = $(AM_CPPFLAGS)
|
|
libsdedrm_la_LIBADD = -ldrm -ldrmutils -ldisplaydebug
|
|
libsdedrm_la_LDFLAGS = -shared -avoid-version
|