summaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build13
1 files changed, 13 insertions, 0 deletions
diff --git a/meson.build b/meson.build
new file mode 100644
index 0000000..a52d189
--- /dev/null
+++ b/meson.build
@@ -0,0 +1,13 @@
+project('chisel', ['c', 'cpp'])
+
+chisel_demo_src = [
+ 'main.cpp'
+]
+
+subdir('chisel')
+
+chisel_demo = executable('chisel-demo',
+ chisel_demo_src,
+
+ dependencies: chisel
+) \ No newline at end of file