From 69b5584f112c73af211da7b6d0918b87dd8e090b Mon Sep 17 00:00:00 2001 From: Recep Aslantas Date: Mon, 2 Mar 2020 10:09:48 +0300 Subject: [PATCH] build: add missing headers --- Makefile.am | 4 +++- win/cglm.vcxproj | 1 + win/cglm.vcxproj.filters | 3 +++ 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 371dd29..46b90b5 100644 --- a/Makefile.am +++ b/Makefile.am @@ -64,7 +64,7 @@ cglm_HEADERS = include/cglm/version.h \ include/cglm/curve.h \ include/cglm/bezier.h \ include/cglm/applesimd.h - + cglm_calldir=$(includedir)/cglm/call cglm_call_HEADERS = include/cglm/call/mat4.h \ include/cglm/call/mat3.h \ @@ -95,6 +95,7 @@ cglm_simd_sse2dir=$(includedir)/cglm/simd/sse2 cglm_simd_sse2_HEADERS = include/cglm/simd/sse2/affine.h \ include/cglm/simd/sse2/mat4.h \ include/cglm/simd/sse2/mat3.h \ + include/cglm/simd/sse2/mat2.h \ include/cglm/simd/sse2/quat.h cglm_simd_avxdir=$(includedir)/cglm/simd/avx @@ -107,6 +108,7 @@ cglm_simd_neon_HEADERS = include/cglm/simd/neon/mat4.h cglm_structdir=$(includedir)/cglm/struct cglm_struct_HEADERS = include/cglm/struct/mat4.h \ include/cglm/struct/mat3.h \ + include/cglm/struct/mat2.h \ include/cglm/struct/vec2.h \ include/cglm/struct/vec2-ext.h \ include/cglm/struct/vec3.h \ diff --git a/win/cglm.vcxproj b/win/cglm.vcxproj index 4f0c332..e1a0e4d 100644 --- a/win/cglm.vcxproj +++ b/win/cglm.vcxproj @@ -86,6 +86,7 @@ + diff --git a/win/cglm.vcxproj.filters b/win/cglm.vcxproj.filters index 42f116b..a2f1432 100644 --- a/win/cglm.vcxproj.filters +++ b/win/cglm.vcxproj.filters @@ -346,5 +346,8 @@ include\cglm\struct + + include\cglm\simd\sse2 + \ No newline at end of file