31 lines
825 B
ObjectPascal
31 lines
825 B
ObjectPascal
|
|
// This package presently only builds on Windows.
|
|
// We also require the network layer (queuedConnectionManager, etc.)
|
|
#define BUILD_DIRECTORY $[and $[WINDOWS_PLATFORM],$[HAVE_NET],$[HAVE_DIRECTD]]
|
|
|
|
//#define LOCAL_LIBS \
|
|
// directbase
|
|
#define OTHER_LIBS \
|
|
$[if $[HAVE_NET],net:c] linmath:c putil:c express:c panda:m pandaexpress:m dtoolconfig dtool
|
|
#define WIN_SYS_LIBS $[WIN_SYS_LIBS] user32.lib //advapi32.lib
|
|
|
|
#begin bin_target
|
|
#define TARGET directdServer
|
|
#define LOCAL_LIBS directd
|
|
#define OTHER_LIBS $[OTHER_LIBS] pystub
|
|
|
|
#define SOURCES \
|
|
directdServer.cxx directdServer.h
|
|
|
|
#end bin_target
|
|
|
|
#begin test_bin_target
|
|
#define TARGET directdClient
|
|
#define LOCAL_LIBS directd
|
|
#define OTHER_LIBS $[OTHER_LIBS] pystub
|
|
|
|
#define SOURCES \
|
|
directdClient.cxx directdClient.h
|
|
|
|
#end test_bin_target
|