mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-04 10:54:24 -04:00
31 lines
968 B
ObjectPascal
31 lines
968 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_DIRECT
|
|
|
|
#define COMPONENT_LIBS \
|
|
directbase dcparser showbase deadrec directd interval distributed motiontrail http
|
|
|
|
#define OTHER_LIBS \
|
|
panda:m \
|
|
pandaexpress:m \
|
|
parametrics:c \
|
|
interrogatedb:c dconfig:c dtoolconfig:m \
|
|
dtoolutil:c dtoolbase:c dtool:m \
|
|
express:c pstatclient:c prc:c pandabase:c linmath:c \
|
|
putil:c display:c event:c pgraph:c gsgbase:c gobj:c mathutil:c \
|
|
lerp:c downloader:c pnmimage:c chan:c \
|
|
pipeline:c cull:c \
|
|
$[if $[HAVE_NET],net:c] $[if $[WANT_NATIVE_NET],nativenet:c]
|
|
|
|
#begin metalib_target
|
|
#define TARGET direct
|
|
|
|
#define SOURCES direct.cxx
|
|
#end metalib_target
|
|
|