mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-04 02:42:49 -04:00
25 lines
591 B
ObjectPascal
Executable File
25 lines
591 B
ObjectPascal
Executable File
// 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 OTHER_LIBS \
|
|
pandaexpress:m \
|
|
dconfig:c dtoolconfig:m \
|
|
dtoolutil:c dtoolbase:c dtool:m
|
|
|
|
#begin metalib_target
|
|
#define TARGET heapq
|
|
|
|
#define LOCAL_LIBS \
|
|
task
|
|
|
|
#define SOURCES heapq.cxx
|
|
#end metalib_target
|
|
|