28 lines
860 B
ObjectPascal
28 lines
860 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_PANDAPHYSICS
|
|
|
|
#if $[eq $[LINK_IN_PHYSICS],]
|
|
// We don't have any components if we're linking the Physics library
|
|
// directly into Panda.
|
|
#define COMPONENT_LIBS \
|
|
physics particlesystem
|
|
#endif
|
|
|
|
#define LOCAL_LIBS linmath putil express
|
|
#define OTHER_LIBS interrogatedb:c dconfig:c dtoolconfig:m \
|
|
dtoolbase:c dtoolutil:c dtool:m
|
|
|
|
#begin metalib_target
|
|
#define TARGET pandaphysics
|
|
|
|
#define SOURCES pandaphysics.cxx pandaphysics.h
|
|
#define INSTALL_HEADERS pandaphysics.h
|
|
|
|
#end metalib_target
|