@@ -40,19 +40,6 @@ def get_directory(filename, dirs):
40
40
includes_check = [os .environ ['RESIBOTS_DIR' ] + '/include' ] + includes_check
41
41
libs_check = [os .environ ['RESIBOTS_DIR' ] + '/lib' ] + libs_check
42
42
43
- # DART requires assimp library
44
- assimp_include = []
45
- assimp_lib = []
46
- assimp_check = ['/usr/local/include' , '/usr/include' ]
47
- assimp_libs = ['/usr/local/lib' , '/usr/local/lib64' , '/usr/lib' , '/usr/lib64' , '/usr/lib/x86_64-linux-gnu/' ]
48
- assimp_found = False
49
- try :
50
- assimp_include = get_directory ('assimp/scene.h' , assimp_check )
51
- assimp_lib = [get_directory ('libassimp.' + suffix , assimp_libs )]
52
- assimp_found = True
53
- except :
54
- assimp_found = False
55
-
56
43
# DART has some optional Bullet features
57
44
bullet_check = ['/usr/local/include/bullet' , '/usr/include/bullet' ]
58
45
bullet_libs = ['/usr/local/lib' , '/usr/local/lib64' , '/usr/lib' , '/usr/lib64' , '/usr/lib/x86_64-linux-gnu/' ]
@@ -182,8 +169,6 @@ def get_directory(filename, dirs):
182
169
conf .end_msg (str (dart_major )+ '.' + str (dart_minor )+ '.' + str (dart_patch )+ ' in ' + dart_include [0 ])
183
170
184
171
more_includes = []
185
- if assimp_found :
186
- more_includes += assimp_include
187
172
188
173
conf .start_msg ('Checking for DART libs (including io/urdf)' )
189
174
dart_lib = []
@@ -197,13 +182,7 @@ def get_directory(filename, dirs):
197
182
if len (dart_cxx_flags ) > 0 :
198
183
conf .env .CXXFLAGS_DART = [dart_cxx_flags ]
199
184
conf .end_msg (conf .env .LIB_DART )
200
- conf .start_msg ('DART: Checking for Assimp' )
201
- if assimp_found :
202
- conf .end_msg (assimp_include )
203
- conf .env .LIBPATH_DART = conf .env .LIBPATH_DART + assimp_lib
204
- conf .env .LIB_DART .append ('assimp' )
205
- else :
206
- conf .end_msg ('Not found - Your programs may not compile' , 'RED' )
185
+
207
186
208
187
if dart_have_bullet :
209
188
conf .start_msg ('DART: Checking for Bullet Collision libs' )
0 commit comments