diff options
Diffstat (limited to 'src/ingen')
-rw-r--r-- | src/ingen/main.cpp | 2 | ||||
-rw-r--r-- | src/ingen/wscript | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/ingen/main.cpp b/src/ingen/main.cpp index 0f4339fd..3a27b46b 100644 --- a/src/ingen/main.cpp +++ b/src/ingen/main.cpp @@ -38,7 +38,7 @@ #include "ingen-config.h" #include "engine/Engine.hpp" -#include "interface/EngineInterface.hpp" +#include "ingen/EngineInterface.hpp" #include "module/World.hpp" #include "module/ingen_module.hpp" #include "serialisation/Parser.hpp" diff --git a/src/ingen/wscript b/src/ingen/wscript index 56b1b3dd..53ccef7b 100644 --- a/src/ingen/wscript +++ b/src/ingen/wscript @@ -5,7 +5,7 @@ def build(bld): obj = bld(features = 'c cxx cxxprogram') obj.target = 'ingen' obj.source = 'main.cpp' - obj.includes = ['..', '../..', '../common'] + obj.includes = ['..', '../..', '../../include'] obj.defines = 'VERSION="' + bld.env['INGEN_VERSION'] + '"' obj.use = 'libingen_module libingen_shared' obj.install_path = '${BINDIR}' |