| Index: src/platform/window_manager/SConstruct
|
| diff --git a/src/platform/window_manager/SConstruct b/src/platform/window_manager/SConstruct
|
| index 4055a3847a9a8f4bd6beccf70fb4d701dac3aa4b..c9c59e9a83c758e53c6ea148e933ba61b9529516 100644
|
| --- a/src/platform/window_manager/SConstruct
|
| +++ b/src/platform/window_manager/SConstruct
|
| @@ -89,6 +89,10 @@ wm_env['BUILDERS']['ProtocolBuffer'] = proto_builder
|
|
|
| wm_env.ParseConfig('pkg-config --cflags --libs gdk-2.0 xcomposite libpcrecpp')
|
|
|
| +breakpad_path = '../../third_party/google-breakpad/files/src/client/linux'
|
| +wm_env['CPPPATH'].append(breakpad_path)
|
| +wm_env['LIBPATH'].append(breakpad_path)
|
| +
|
| if os.system('pkg-config clutter-1.0') == 0:
|
| wm_env.ParseConfig('pkg-config --cflags --libs clutter-1.0')
|
| else:
|
| @@ -138,7 +142,7 @@ srcs = Split('''\
|
| ''')
|
| libtest = wm_env.Library('test', Split(srcs))
|
|
|
| -wm_env['LIBS'] += [libwm_core, libwm_ipc]
|
| +wm_env['LIBS'] += [libwm_core, libwm_ipc, 'libbreakpad']
|
|
|
| wm_env.Program('wm', 'main.cc')
|
|
|
|
|