modulecompilationcompiler-errorsdcompiled-language

Import D modules from multiple projects


I need to import modules from multiple projects to current project.

Currently I get following message from compiler:

map/map.d(9): Error: module game_object is in file 'steering/game_object.d' which cannot be read
import path[0] = /usr/include/dmd/phobos
import path[1] = /usr/include/dmd/druntime/import

Projects are set up as follows:

${HOME}/d_apps/steering

${HOME}/d_apps/path_find

${HOME}/d_apps/path_find/map/map.d includes steering.game_object

Compile command:

dmd map/map.d main_visual.d -ofmain_visual -H -gc -unittest -L-lDgame -L-lDerelictUtil -L-lDerelictGL3 -L-lDerelictSDL2 -L-ldl -I/home/real/d_apps/dgame/source -I/home/real/d_apps/derelict_util/source -I/home/real/d_apps/derelict_gl3/source -I/home/real/d_apps/derelict_sdl2/source -I/home/real/d_apps/steering

Solution

  • Just add steering/game_object.d at the start of your dmd command.