Browse Source

Added glm/ext.hpp build test

Christophe Riccio 8 years ago
parent
commit
c0df21a398
2 changed files with 9 additions and 0 deletions
  1. 1 0
      test/gtx/CMakeLists.txt
  2. 8 0
      test/gtx/gtx.cpp

+ 1 - 0
test/gtx/CMakeLists.txt

@@ -1,3 +1,4 @@
+glmCreateTestGTC(gtx)
 glmCreateTestGTC(gtx_associated_min_max)
 glmCreateTestGTC(gtx_closest_point)
 glmCreateTestGTC(gtx_color_encoding)

+ 8 - 0
test/gtx/gtx.cpp

@@ -0,0 +1,8 @@
+#include <glm/ext.hpp>
+
+int main()
+{
+	int Error = 0;
+
+	return Error;
+}