diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2018-03-19 22:06:16 -0700 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2018-03-19 22:06:16 -0700 |
commit | b328cf5313b53652be2405113daa60e7ce745311 (patch) | |
tree | 09b7178d1815a4f2a43b80b020947cd2e02ca86c /src/modules/ray/ray.c | |
parent | b5bc962e834992eeba2abdd10f6e37ee2ba20295 (diff) |
modules/ray: #include libray headers w/subdirs
Rather than require adding -Isrc/libs/$lib to every Makefile.am for
every lib used, just add -Ilibs to those makefiles and prefix the lib
dir in the #include <> header paths.
Later I'll probably just move the -Isrc/libs someplace common so the
per-module Makefile.am doesn't need to bother with this stuff.
Diffstat (limited to 'src/modules/ray/ray.c')
-rw-r--r-- | src/modules/ray/ray.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/modules/ray/ray.c b/src/modules/ray/ray.c index 1e58f3b..5a2dd40 100644 --- a/src/modules/ray/ray.c +++ b/src/modules/ray/ray.c @@ -6,10 +6,10 @@ #include "rototiller.h" #include "util.h" -#include "ray_camera.h" -#include "ray_object.h" -#include "ray_render.h" -#include "ray_scene.h" +#include "ray/ray_camera.h" +#include "ray/ray_object.h" +#include "ray/ray_render.h" +#include "ray/ray_scene.h" /* Copyright (C) 2016-2017 Vito Caputo <vcaputo@pengaru.com> */ |