From 9f9acbfdf42a104ca3e52f2146313115e9b9c1ea Mon Sep 17 00:00:00 2001 From: Thibault Saunier Date: Mon, 4 Sep 2017 22:38:04 -0300 Subject: [PATCH] Add a meson.build file in the toplevel folder --- Source/meson.build | 2 -- meson.build | 3 +++ Source/meson_options.txt => meson_options.txt | 0 3 files changed, 3 insertions(+), 2 deletions(-) create mode 100644 meson.build rename Source/meson_options.txt => meson_options.txt (100%) diff --git a/Source/meson.build b/Source/meson.build index 63cb87a2c..140c8f680 100644 --- a/Source/meson.build +++ b/Source/meson.build @@ -1,5 +1,3 @@ -project('gtk-sharp', ['cs', 'c'], version: '3.22.6') - if host_machine.system() == 'windows' if host_machine.cpu() == 'amd64' add_project_arguments('-define:WIN64LONGS', language: 'cs') diff --git a/meson.build b/meson.build new file mode 100644 index 000000000..4ab28a80d --- /dev/null +++ b/meson.build @@ -0,0 +1,3 @@ +project('gtk-sharp', ['cs', 'c'], version: '3.22.6') + +subdir('Source') diff --git a/Source/meson_options.txt b/meson_options.txt similarity index 100% rename from Source/meson_options.txt rename to meson_options.txt