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
path: root/tools
diff options
context:
space:
mode:
authorNathan Letwory <nathan@letworyinteractive.com>2006-10-11 11:28:37 +0400
committerNathan Letwory <nathan@letworyinteractive.com>2006-10-11 11:28:37 +0400
commit1266234202a00b85dbb50fa86e1cf67509d19205 (patch)
treec5207f286b58dd350aede8dc83e890b3fda92949 /tools
parent892607e25012689ce34941a40be23bcb4919b578 (diff)
* remove the .Append(LIBS = ['libverse']), since it confused the build system.
* removed unused options BF_VERSE_LIBPATH, BF_VERSE, BF_VERSE_LIBS, since they are not used at all. * some whitespace mods There should be no more issues with "libverse.lib" not being found (or anything like that).
Diffstat (limited to 'tools')
-rwxr-xr-xtools/btools.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/tools/btools.py b/tools/btools.py
index cd860b093ca..796d0b19552 100755
--- a/tools/btools.py
+++ b/tools/btools.py
@@ -42,7 +42,7 @@ def validate_arguments(args, bc):
'REL_CFLAGS', 'REL_CCFLAGS',
'C_WARN', 'CC_WARN', 'LLIBS', 'PLATFORM_LINKFLAGS',
'BF_PROFILE_FLAGS', 'LCGDIR', 'WITH_BF_VERSE',
- 'BF_VERSE', 'BF_VERSE_LIBPATH', 'BF_VERSE_INCLUDE', 'BF_VERSE_LIB',
+ 'BF_VERSE_INCLUDE',
'VERSE_BUILD_BINARY', 'VERSE_BUILD_DIR', 'VERSE_REGEN_PROTO']
arg_list = ['BF_DEBUG', 'BF_QUIET', 'BF_CROSS', 'BF_UPDATE',
@@ -116,10 +116,7 @@ def read_opts(cfg, args):
('VERSE_BUILD_DIR', 'Target directory for intermediate files.', "${BF_BUILDDIR}/extern/verse"),
('VERSE_REGEN_PROTO', 'Whether to regenerate the protocol files', 'yes'),
(BoolOption('WITH_BF_VERSE', 'Use VERSE if true', 'false')),
- ('BF_VERSE', 'verse dir', '/usr/lib'),
- ('BF_VERSE_LIBPATH', 'verse lib dir', '/usr/lib'),
('BF_VERSE_INCLUDE', 'verse include dir', '/usr/include'),
- ('BF_VERSE_LIB', 'verse libs', ''),
('LCGDIR', 'location of cvs lib dir'),
('VERSE_BUILD_BINARY', 'Build a release or debug binary.', 'release'),
('VERSE_BUILD_DIR', 'Target directory for intermediate files.', "${BF_BUILDDIR}/extern/verse"),
@@ -132,7 +129,7 @@ def read_opts(cfg, args):
('BF_PYTHON_LIB', 'Python library', ''),
('BF_PYTHON_LIBPATH', 'Library path', ''),
('BF_PYTHON_LINKFLAGS', 'Python link flags', ''),
- ('BF_NO_ELBEEM', 'Disable Fluid Sim', 'false'),
+ ('BF_NO_ELBEEM', 'Disable Fluid Sim', 'false'),
(BoolOption('WITH_BF_OPENAL', 'Use OpenAL if true', '')),
('BF_OPENAL', 'base path for OpenAL', ''),
('BF_OPENAL_INC', 'include path for python headers', ''),