mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-04 02:42:49 -04:00
42 lines
1.5 KiB
ObjectPascal
42 lines
1.5 KiB
ObjectPascal
#define LOCAL_LIBS event ipc express pandabase
|
|
#define OTHER_LIBS interrogatedb:c dconfig:c dtoolconfig:m \
|
|
dtoolutil:c dtoolbase:c dtool:m
|
|
#define USE_PACKAGES zlib ipc net
|
|
|
|
#begin lib_target
|
|
#define TARGET downloader
|
|
|
|
#define COMBINED_SOURCES $[TARGET]_composite1.cxx \
|
|
$[if $[HAVE_NET], $[TARGET]_composite3.cxx] \
|
|
$[if $[HAVE_ZLIB], $[TARGET]_composite4.cxx] \
|
|
|
|
#define SOURCES \
|
|
config_downloader.h asyncUtility.I asyncUtility.h \
|
|
extractor.h multiplexStream.I multiplexStream.h \
|
|
multiplexStreamBuf.I multiplexStreamBuf.h \
|
|
$[if $[HAVE_NET], downloadDb.I downloadDb.h downloader.I downloader.h] \
|
|
$[if $[HAVE_ZLIB], decompressor.h zcompressor.I zcompressor.h download_utils.h] \
|
|
$[if $[HAVE_CRYPTO], patcher.cxx patcher.h patcher.I]
|
|
|
|
#define INCLUDED_SOURCES \
|
|
config_downloader.cxx asyncUtility.cxx \
|
|
extractor.cxx multiplexStream.cxx multiplexStreamBuf.cxx \
|
|
$[if $[HAVE_NET], downloadDb.cxx downloader.cxx] \
|
|
$[if $[HAVE_ZLIB], decompressor.cxx zcompressor.cxx download_utils.cxx]
|
|
|
|
#define INSTALL_HEADERS \
|
|
asyncUtility.h asyncUtility.I \
|
|
config_downloader.h \
|
|
decompressor.h \
|
|
download_utils.h downloadDb.h downloadDb.I \
|
|
downloader.h downloader.I \
|
|
extractor.h \
|
|
multiplexStream.I multiplexStream.h \
|
|
multiplexStreamBuf.I multiplexStreamBuf.I \
|
|
patcher.h patcher.I \
|
|
zcompressor.I zcompressor.h
|
|
|
|
#define IGATESCAN all
|
|
|
|
#end lib_target
|