summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorPICCORO Lenz McKAY <mckaygerhard@gmail.com>2017-08-13 09:27:27 -0400
committerLeandro A. F. Pereira <leandro@hardinfo.org>2017-08-14 01:52:08 -0700
commit8268dd80a7302f82741006f7abc7afb2b30a3a10 (patch)
tree93b40ed6bfe305f1eaacde6205ff4fcf4ffab174 /modules
parent2db563687071c099851c59396bdde29a00dba156 (diff)
Add Gambas compiler,runtime and IDE to development
Added Gambas compiler,runtime and IDE to development, gambas has a runtime, a compiler and a complete ide, all can be used separatelly but IDE depends on compiler, and compiler depends on runtime.. Gambas its the Visual development most easyle for Linux, theres no languaje similar to Visual Basic but with the power and concepts of Java in Linux.. a hole covered b gambas...
Diffstat (limited to 'modules')
-rw-r--r--modules/computer.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/computer.c b/modules/computer.c
index f30b884e..b8c5ac3f 100644
--- a/modules/computer.c
+++ b/modules/computer.c
@@ -198,6 +198,7 @@ void scan_dev(gboolean reload)
gboolean stdout;
} detect_lang[] = {
{ N_("Scripting Languages"), NULL, FALSE },
+ { N_("Gambas3 (gbr3)"), "gbr3 --version", "\\d+\\.\\d+\\.\\d+", TRUE },
{ N_("Python"), "python -V", "\\d+\\.\\d+\\.\\d+", FALSE },
{ N_("Python2"), "python2 -V", "\\d+\\.\\d+\\.\\d+", FALSE },
{ N_("Python3"), "python3 -V", "\\d+\\.\\d+\\.\\d+", TRUE },
@@ -211,6 +212,7 @@ void scan_dev(gboolean reload)
{ N_("C (GCC)"), "gcc -v", "\\d+\\.\\d+\\.\\d+", FALSE },
{ N_("C (Clang)"), "clang -v", "\\d+\\.\\d+", FALSE },
{ N_("D (dmd)"), "dmd --help", "\\d+\\.\\d+", TRUE },
+ { N_("Gambas3 (gbc3)"), "gbc3 --version", "\\d+\\.\\d+\\.\\d+", FALSE },
{ N_("Java"), "javac -version", "\\d+\\.\\d+\\.\\d+", FALSE },
{ N_("CSharp (Mono, old)"), "mcs --version", "\\d+\\.\\d+\\.\\d+\\.\\d+", TRUE },
{ N_("CSharp (Mono)"), "gmcs --version", "\\d+\\.\\d+\\.\\d+\\.\\d+", TRUE },
@@ -225,6 +227,7 @@ void scan_dev(gboolean reload)
{ N_("valgrind"), "valgrind --version", "\\d+\\.\\d+\\.\\S+", TRUE },
{ N_("QMake"), "qmake --version", "\\d+\\.\\S+", TRUE},
{ N_("CMake"), "cmake --version", "\\d+\\.\\d+\\.?\\d*", TRUE},
+ { N_("Gambas3 IDE"), "gambas3 --version", "\\d+\\.\\d+\\.\\d+", FALSE },
};
g_free(dev_list);