Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrea Weikert <elubie@gmx.net>2006-11-06 00:55:28 +0300
committerAndrea Weikert <elubie@gmx.net>2006-11-06 00:55:28 +0300
commit6feb2cc4f6d4c2131b959b77a8b87a5d7c9412a4 (patch)
treee8a47d3fa751cea52044fc2bff621707900b4ccd /intern/ghost/SConscript
parent8b77d4241bd0a9763330a41d524349db9d1ee643 (diff)
Extended GHOST to support WinTab, in order to better support graphic tablets on Windows
Basic support for normal pressure sensitivity is implemented, adding other features like tilt etc. shouldn't be too difficult, now that basic support is there. Tested with WACOM Volito on Windows XP using the pressure sensitivity with texture paint to change size of the brush . Added additional include dir to scons, and MSVC 7 project files - other build systems might have to be updated.
Diffstat (limited to 'intern/ghost/SConscript')
-rw-r--r--intern/ghost/SConscript2
1 files changed, 2 insertions, 0 deletions
diff --git a/intern/ghost/SConscript b/intern/ghost/SConscript
index 9002dca21e8..c2b9a59bca3 100644
--- a/intern/ghost/SConscript
+++ b/intern/ghost/SConscript
@@ -27,4 +27,6 @@ else:
Exit()
incs = '. ../string ' + env['BF_OPENGL_INC']
+if window_system in ('win32-vc', 'win32-mingw', 'cygwin', 'linuxcross'):
+ incs = '../../../../lib/windows/wintab/INCLUDE ' + incs
env.BlenderLib ('bf_ghost', sources, Split(incs), [], libtype=['core','player'], priority = [25,15] )