mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-04 02:42:49 -04:00
23 lines
769 B
ObjectPascal
23 lines
769 B
ObjectPascal
// DIR_TYPE "metalib" indicates we are building a shared library that
|
|
// consists mostly of references to other shared libraries. Under
|
|
// Windows, this directly produces a DLL (as opposed to the regular
|
|
// src libraries, which don't produce anything but a pile of OBJ files
|
|
// under Windows).
|
|
|
|
#define DIR_TYPE metalib
|
|
#define BUILDING_DLL BUILDING_PANDAGLES2
|
|
#define BUILD_DIRECTORY $[HAVE_GLES2]
|
|
|
|
#define COMPONENT_LIBS \
|
|
gles2gsg egl2display
|
|
|
|
#define LOCAL_LIBS gsgbase display express
|
|
#define OTHER_LIBS interrogatedb:c dconfig:c dtoolconfig:m \
|
|
dtoolutil:c dtoolbase:c dtool:m prc:c
|
|
|
|
#begin metalib_target
|
|
#define TARGET pandagles2
|
|
#define SOURCES pandagles2.cxx pandagles2.h
|
|
#define INSTALL_HEADERS pandagles2.h
|
|
#end metalib_target
|