boku-ilen / geodot-plugin

Godot plugin for loading geospatial data
GNU General Public License v3.0
108 stars 18 forks source link

Mac build broken #47

Closed clemens-tolboom closed 3 years ago

clemens-tolboom commented 3 years ago

Commit a47587e174b3a1dea4360382243c4c7586a07c95 broke the build.

scons
scons: Reading SConscript files ...
SConsEnvironmentError: No module named compilation_db:
  File "/Users/clemens/Downloads/godot/geodot-plugin/SConstruct", line 9:
    env = DefaultEnvironment(tools=['default', 'compilation_db'])

Changing back to the old fixes this for now.

#env = DefaultEnvironment(tools=['default', 'compilation_db'])
env = DefaultEnvironment()

README

Guess we need this requiments somehow documented

kb173 commented 3 years ago

Ah yes, this requires SCons version 4 or greater. It's been out for half a year, but it seems like many package repositories are still at 3.x :/ I'll surround that with a try/catch

kb173 commented 3 years ago

Should be fixed with https://github.com/boku-ilen/geodot-plugin/commit/b4b219cb8539d9e811f352ca5575f98a27e0f907, please let me know if that works!