24 lines
752 B
ObjectPascal
24 lines
752 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 BUILD_DIRECTORY $[HAVE_EGG]
|
||
|
#define BUILDING_DLL BUILDING_PANDAEGG
|
||
|
|
||
|
#define COMPONENT_LIBS \
|
||
|
p3egg2pg egg2sg p3egg
|
||
|
|
||
|
#define LOCAL_LIBS p3putil p3express
|
||
|
#define OTHER_LIBS p3interrogatedb:c p3dconfig:c p3dtoolconfig:m \
|
||
|
p3dtoolbase:c p3dtoolutil:c p3dtool:m p3prc:c
|
||
|
|
||
|
#begin metalib_target
|
||
|
#define TARGET pandaegg
|
||
|
|
||
|
#define SOURCES pandaegg.cxx pandaegg.h
|
||
|
#define INSTALL_HEADERS pandaegg.h
|
||
|
#end metalib_target
|