1Getting Started
2
3  See the INSTALL file on how to build gogglesmm. You can skip the install part and run gogglesmm
4  directly from the source directory. For development or diagnosing an issue, you want to build
5  gogglesmm with debug symbols. To do so, run cmake with the appropriate build type:
6
7  > cmake -DCMAKE_BUILD_TYPE=Debug .
8
9  To run gogglesmm directly from the source directory, you need tell gogglesmm where to find the output plugins.
10  By default it will try to find them in <install_prefix>/lib/gogglesmm, but you can set the GOGGLESMM_PLUGIN_PATH
11  environment variable to specify an alternate location:
12
13  > export GOGGLESMM_PLUGIN_PATH=gap
14  > src/gogglesmm
15
16  With the debug build enabled, it should print out the filename of the
17  output plugin when gogglesmm starts playing:
18
19  [output] loading plugin: gap/libgap_pulse.so
20
21Contributing Bug Fixes
22
23  Bugfix branches should be forked off the "stable" branch
24
25Contributing New Features
26
27  New feature branches should be forked off the "develop" branch