From d0c833d2ea462acd04c0b5f163eebcfb505359f9 Mon Sep 17 00:00:00 2001 From: rdb Date: Mon, 16 Nov 2009 13:21:00 +0000 Subject: [PATCH] Provide libp3vision as separate package ('vision') --- direct/src/p3d/panda3d.pdef | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/direct/src/p3d/panda3d.pdef b/direct/src/p3d/panda3d.pdef index 25421660e8..fe54c74ccf 100755 --- a/direct/src/p3d/panda3d.pdef +++ b/direct/src/p3d/panda3d.pdef @@ -64,6 +64,7 @@ class panda3d(package): # except for skel - this is useless in a shipped game anyways. excludeModule('libpandaegg') excludeModule('libpandaode') + excludeModule('libp3vision') excludeModule('libpandaskel') # Exclude these GUI toolkits; they're big, and many applications don't @@ -212,6 +213,17 @@ class ode(package): file('libpandaode.dll') +class vision(package): + # This package contains the code for webcam support, augmented + # reality and computer vision. As many games will not need this + # functionality, it is provided as separate package to save + # on package download size. + + config(display_name = "Panda3D Vision modules") + require('panda3d') + + file('libp3vision.dll') + class wx(package): config(display_name = "wxPython GUI Toolkit") config(gui_app = True)