diff options
author | sanine <sanine.not@pm.me> | 2022-06-14 00:06:42 -0500 |
---|---|---|
committer | sanine <sanine.not@pm.me> | 2022-06-14 00:06:42 -0500 |
commit | 2f518e5e28d35ae24a5ac0e31000835e43b01972 (patch) | |
tree | 47fdeb9fa5b04e267702acb06424d3f87b37dd84 /libs/cglm/meson.build | |
parent | 034d5c965ff34cfdf4b153af9f32360a02e35684 (diff) |
add cglm as 3rd-party library
Diffstat (limited to 'libs/cglm/meson.build')
-rw-r--r-- | libs/cglm/meson.build | 129 |
1 files changed, 129 insertions, 0 deletions
diff --git a/libs/cglm/meson.build b/libs/cglm/meson.build new file mode 100644 index 0000000..8f9cdc4 --- /dev/null +++ b/libs/cglm/meson.build @@ -0,0 +1,129 @@ +project('cglm', 'c',
+ version : '0.8.6',
+ license : 'mit',
+ default_options : [
+ 'c_std=c11',
+ 'werror=true',
+ 'warning_level=2',
+ 'buildtype=release'
+ ]
+)
+
+cc = meson.get_compiler('c')
+
+cglm_install = get_option('install')
+cglm_deps = cc.find_library('m', required : false)
+
+cglm_args = []
+build_args = []
+
+if get_option('default_library') == 'static'
+ cglm_args = '-DCGLM_STATIC'
+endif
+
+if host_machine.system() == 'windows'
+ build_args = '-DCGLM_EXPORTS'
+endif
+
+cglm_inc = include_directories('include')
+
+cglm_src = files(
+ 'src/affine.c',
+ 'src/affine2d.c',
+ 'src/bezier.c',
+ 'src/box.c',
+ 'src/cam.c',
+ 'src/curve.c',
+ 'src/ease.c',
+ 'src/euler.c',
+ 'src/frustum.c',
+ 'src/io.c',
+ 'src/mat2.c',
+ 'src/mat3.c',
+ 'src/mat4.c',
+ 'src/plane.c',
+ 'src/project.c',
+ 'src/quat.c',
+ 'src/ray.c',
+ 'src/sphere.c',
+ 'src/vec2.c',
+ 'src/vec3.c',
+ 'src/vec4.c',
+ 'src/ivec2.c',
+ 'src/ivec3.c',
+ 'src/ivec4.c',
+ 'src/clipspace/ortho_lh_no.c',
+ 'src/clipspace/ortho_lh_zo.c',
+ 'src/clipspace/ortho_rh_no.c',
+ 'src/clipspace/ortho_rh_zo.c',
+ 'src/clipspace/persp_lh_no.c',
+ 'src/clipspace/persp_lh_zo.c',
+ 'src/clipspace/persp_rh_no.c',
+ 'src/clipspace/persp_rh_zo.c',
+ 'src/clipspace/view_lh_no.c',
+ 'src/clipspace/view_lh_zo.c',
+ 'src/clipspace/view_rh_no.c',
+ 'src/clipspace/view_rh_zo.c',
+)
+
+cglm_lib = library('cglm',
+ cglm_src,
+ install : cglm_install,
+ dependencies : cglm_deps,
+ c_args : [ build_args, cglm_args ],
+ version : meson.project_version(),
+ soversion : '0'
+)
+
+cglm_dep = declare_dependency(
+ link_with : cglm_lib,
+ dependencies : cglm_deps,
+ compile_args : cglm_args,
+ include_directories : cglm_inc,
+ version : meson.project_version()
+)
+
+if meson.version().version_compare('>= 0.54.0')
+ meson.override_dependency('cglm', cglm_dep)
+endif
+
+if cglm_install
+ install_subdir('include/cglm', install_dir : get_option('includedir'))
+
+ pkg = import('pkgconfig')
+ pkg.generate(
+ name : 'cglm',
+ libraries : cglm_lib,
+ extra_cflags : cglm_args,
+ version : meson.project_version(),
+ url : 'https://github.com/recp/cglm',
+ description : 'OpenGL Mathematics (glm) for C'
+ )
+endif
+
+if get_option('build_tests') == true
+
+test_src = files(
+ 'test/runner.c',
+ 'test/src/test_bezier.c',
+ 'test/src/test_cam.c',
+ 'test/src/test_cam_lh_no.c',
+ 'test/src/test_cam_lh_zo.c',
+ 'test/src/test_cam_rh_no.c',
+ 'test/src/test_cam_rh_zo.c',
+ 'test/src/test_clamp.c',
+ 'test/src/test_common.c',
+ 'test/src/test_euler.c',
+ 'test/src/tests.c',
+ 'test/src/test_struct.c',
+)
+
+test_exe = executable('tests',
+ test_src,
+ dependencies : cglm_dep,
+ c_args : '-DGLM_TESTS_NO_COLORFUL_OUTPUT'
+)
+
+test('cglm.tests', test_exe)
+
+endif
|