fixed copying of library links in install target
[gph-math] / src / gmath.h
1 /*
2 gph-math - math library for graphics programs
3 Copyright (C) 2016 John Tsiombikas <nuclear@member.fsf.org>
4
5 This program is free software. Feel free to use, modify, and/or redistribute
6 it under the terms of the MIT/X11 license. See LICENSE for details.
7 If you intend to redistribute parts of the code without the LICENSE file
8 replace this paragraph with the full contents of the LICENSE file.
9 */
10 #ifndef GMATH_H_
11 #define GMATH_H_
12
13 #include "vector.h"
14 #include "matrix.h"
15 #include "ray.h"
16
17 #ifndef GPH_NAMESPACE
18 using namespace gph;
19 #endif
20
21 #endif  // GMATH_H_