summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMilo Gilad <milogaccnts@gmail.com>2017-08-26 11:33:08 -0400
committerMilo Gilad <milogaccnts@gmail.com>2017-08-26 11:33:08 -0400
commitf5e226ae8a70917a3272f10b9f35b5eced085a04 (patch)
tree448cd9a125708bd1eea83c12d8c8478e7477e97a
parent5eb6c15162a1a15507fb20497a02d17a7d6a926a (diff)
Added profiles and D-Bus integration reading
-rwxr-xr-xvala.html.markdown8
1 files changed, 8 insertions, 0 deletions
diff --git a/vala.html.markdown b/vala.html.markdown
index 9a48aee9..393578b0 100755
--- a/vala.html.markdown
+++ b/vala.html.markdown
@@ -486,6 +486,13 @@ int more = 57;
int* more_pointer = &i; // & = address-of
int indirection_demo = more_pointer*; // indirection
+// Profiles: affect which Vala features are avaliable and which libraries the
+// C-code will use.
+// - gobject (default)
+// posix
+// dova
+// Use "--profile=whatever" when compiling.
+
```
* More Vala documentation can be found [here](https://valadoc.org/).
* [Alternate construction syntax](https://wiki.gnome.org/Projects/Vala/Tutorial#GObject-Style_Construction) similar to GObject
@@ -493,3 +500,4 @@ int indirection_demo = more_pointer*; // indirection
* Collections library can be found [here](https://wiki.gnome.org/Projects/Vala/Tutorial#Collections)
* [Multithreading](https://wiki.gnome.org/Projects/Vala/Tutorial#Multi-Threading)
* Read about building GUIs with GTK+ and Vala [here](http://archive.is/7C7bw).
+* D-Bus [integration](https://wiki.gnome.org/Projects/Vala/Tutorial#D-Bus_Integration)