From a0b5f58d8d2040306006a8b9deded629692ed8f3 Mon Sep 17 00:00:00 2001 From: Justin Bedo Date: Tue, 7 Feb 2023 15:27:42 +1100 Subject: init --- meson.build | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 meson.build (limited to 'meson.build') diff --git a/meson.build b/meson.build new file mode 100644 index 0000000..0145c5a --- /dev/null +++ b/meson.build @@ -0,0 +1,7 @@ +project('coda-pca', 'c', + version : '0.1', + default_options : ['warning_level=3']) +cc = meson.get_compiler('c') +m_dep = cc.find_library('m', required : false) +install_headers('pca.h') +shared_library('codapca', 'pca.c', dependencies : m_dep, install : true) -- cgit v1.2.3