~3v1n0/unity/overlay-border-scale

« back to all changes in this revision

Viewing changes to HACKING

  • Committer: Daniel van Vugt
  • Date: 2012-03-14 06:24:18 UTC
  • mfrom: (2108 unity)
  • mto: This revision was merged to the branch mainline in revision 2146.
  • Revision ID: daniel.van.vugt@canonical.com-20120314062418-nprucpbr0m7qky5e
MergedĀ latestĀ lp:unity

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
If you want to hack on unity you need the following packages
2
 
  - nux
 
2
  - libnux-2.0
3
3
  - libbamf
4
4
  - libdee
5
5
  - gio-2.0
39
39
 
40
40
Testing is handled through GTest, googles test system, we currently have three test targets; test-gtest, test-gtest-xless, test-gtest-dbus. tests that require Nux should be in test-gtest as they require X, tests that can run headless should be in test-gtest-xless and tests that require dbus should be run with test-gtest-dbus, which tests run with our test service.
41
41
 
 
42
To enable debug logging you must set the environment variable UNITY_LOG_SEVERITY to the log domain you
 
43
want to watch and the log level for that domain. For example:
 
44
 
 
45
  UNITY_LOG_SEVERITY="unity.dash.lens=DEBUG" standalone-clients/dash
 
46
 
 
47
 
 
48
 
42
49
for more information see the README file
43
50