aboutsummaryrefslogtreecommitdiff
path: root/mesongui
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2016-01-16 17:21:05 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2016-01-16 17:21:05 +0200
commit1510522b1b9970376a1e1cc5f39e00d8749ec19a (patch)
tree90d475d1e03df898210df467d7dedc25c1980873 /mesongui
parent2ee27504a83dca9982c50459e46f1b39108dc278 (diff)
downloadmeson-1510522b1b9970376a1e1cc5f39e00d8749ec19a.zip
meson-1510522b1b9970376a1e1cc5f39e00d8749ec19a.tar.gz
meson-1510522b1b9970376a1e1cc5f39e00d8749ec19a.tar.bz2
Moved mesongui into module.
Diffstat (limited to 'mesongui')
-rwxr-xr-xmesongui20
1 files changed, 20 insertions, 0 deletions
diff --git a/mesongui b/mesongui
new file mode 100755
index 0000000..c1cd802
--- /dev/null
+++ b/mesongui
@@ -0,0 +1,20 @@
+#!/usr/bin/env python3
+
+# Copyright 2016 The Meson development team
+
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+
+# http://www.apache.org/licenses/LICENSE-2.0
+
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+from meson import mgui
+import sys
+
+sys.exit(mgui.run(sys.argv))