From ab20ebc28cf65f7098936c8b49d953190d6604c9 Mon Sep 17 00:00:00 2001 From: Recep Aslantas Date: Mon, 24 Feb 2020 22:22:27 +0300 Subject: [PATCH] build: add vec2 and mat2 files --- Makefile.am | 7 +++++++ win/cglm-test.vcxproj | 5 +++++ win/cglm-test.vcxproj.filters | 15 +++++++++++++++ win/cglm.vcxproj | 8 ++++++++ win/cglm.vcxproj.filters | 26 +++++++++++++++++++++++++- 5 files changed, 60 insertions(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index f755b65..8d4246e 100644 --- a/Makefile.am +++ b/Makefile.am @@ -42,7 +42,10 @@ cglm_HEADERS = include/cglm/version.h \ include/cglm/io.h \ include/cglm/mat4.h \ include/cglm/mat3.h \ + include/cglm/mat2.h \ include/cglm/affine.h \ + include/cglm/vec2.h \ + include/cglm/vec2-ext.h \ include/cglm/vec3.h \ include/cglm/vec3-ext.h \ include/cglm/vec4.h \ @@ -65,6 +68,8 @@ cglm_HEADERS = include/cglm/version.h \ cglm_calldir=$(includedir)/cglm/call cglm_call_HEADERS = include/cglm/call/mat4.h \ include/cglm/call/mat3.h \ + include/cglm/call/mat2.h \ + include/cglm/call/vec2.h \ include/cglm/call/vec3.h \ include/cglm/call/vec4.h \ include/cglm/call/affine.h \ @@ -125,8 +130,10 @@ libcglm_la_SOURCES=\ src/io.c \ src/quat.c \ src/cam.c \ + src/vec2.c \ src/vec3.c \ src/vec4.c \ + src/mat2.c \ src/mat3.c \ src/mat4.c \ src/plane.c \ diff --git a/win/cglm-test.vcxproj b/win/cglm-test.vcxproj index f7ccc91..1c0916d 100644 --- a/win/cglm-test.vcxproj +++ b/win/cglm-test.vcxproj @@ -30,11 +30,16 @@ + + + + + diff --git a/win/cglm-test.vcxproj.filters b/win/cglm-test.vcxproj.filters index 66691ff..c81dc11 100644 --- a/win/cglm-test.vcxproj.filters +++ b/win/cglm-test.vcxproj.filters @@ -64,5 +64,20 @@ src + + src + + + src + + + src + + + src + + + src + \ No newline at end of file diff --git a/win/cglm.vcxproj b/win/cglm.vcxproj index dcb9a76..9b7a84b 100644 --- a/win/cglm.vcxproj +++ b/win/cglm.vcxproj @@ -28,18 +28,21 @@ + + + @@ -52,12 +55,14 @@ + + @@ -69,6 +74,7 @@ + @@ -94,6 +100,7 @@ + @@ -107,6 +114,7 @@ + diff --git a/win/cglm.vcxproj.filters b/win/cglm.vcxproj.filters index 917f837..cf5beb2 100644 --- a/win/cglm.vcxproj.filters +++ b/win/cglm.vcxproj.filters @@ -86,6 +86,12 @@ src + + src + + + src + @@ -254,7 +260,7 @@ include\cglm\call - include\cglm + include\cglm include\cglm\struct @@ -316,5 +322,23 @@ include\cglm + + include\cglm\call + + + include\cglm\call + + + include\cglm\struct + + + include\cglm + + + include\cglm + + + include\cglm + \ No newline at end of file