21 lines
596 B
ObjectPascal
21 lines
596 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
|
|
|
|
#define OTHER_LIBS panda pandaexpress dtoolconfig dtool
|
|
|
|
#begin metalib_target
|
|
#define TARGET direct
|
|
|
|
#define SOURCES direct.cxx
|
|
#end metalib_target
|
|
|