From af3b35676205873ade0ba464fc86487ac6da3e71 Mon Sep 17 00:00:00 2001 From: Carsten Hartenfels Date: Mon, 24 May 2021 21:20:27 +0200 Subject: [PATCH] Add struct clipspace files to autoconf build They weren't being installed. Fixes #200. --- Makefile.am | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 8e8cb91..7a5d327 100644 --- a/Makefile.am +++ b/Makefile.am @@ -154,7 +154,21 @@ cglm_struct_HEADERS = include/cglm/struct/mat4.h \ include/cglm/struct/color.h \ include/cglm/struct/curve.h \ include/cglm/struct/affine2d.h - + +cglm_struct_clipspacedir=$(includedir)/cglm/struct/clipspace +cglm_struct_clipspace_HEADERS = include/cglm/struct/clipspace/persp_lh_zo.h \ + include/cglm/struct/clipspace/persp_rh_zo.h \ + include/cglm/struct/clipspace/persp_lh_no.h \ + include/cglm/struct/clipspace/persp_rh_no.h \ + include/cglm/struct/clipspace/ortho_lh_zo.h \ + include/cglm/struct/clipspace/ortho_rh_zo.h \ + include/cglm/struct/clipspace/ortho_lh_no.h \ + include/cglm/struct/clipspace/ortho_rh_no.h \ + include/cglm/struct/clipspace/view_lh_zo.h \ + include/cglm/struct/clipspace/view_rh_zo.h \ + include/cglm/struct/clipspace/view_lh_no.h \ + include/cglm/struct/clipspace/view_rh_no.h + libcglm_la_SOURCES=\ src/euler.c \ src/affine.c \