diff options
author | Ralf Habacker <ralf.habacker@freenet.de> | 2007-04-26 09:30:38 +0000 |
---|---|---|
committer | Ralf Habacker <ralf.habacker@freenet.de> | 2007-04-26 09:30:38 +0000 |
commit | 4bd8418548e668cd3fbf8ea5f6aa21d28e14e386 (patch) | |
tree | a0098f26c866766189bb6ecf224fd0d3c83f0c2f /cmake/tools | |
parent | c4a5da3e597e5ff782b52e48bc8ed2996ea90fa0 (diff) | |
download | dbus-4bd8418548e668cd3fbf8ea5f6aa21d28e14e386.tar.gz |
* cmake: added debug postfixes to debug exe's for easier debugging.
* dbus\dbus-sysdeps-win.c (_dbus_win_set_error_from_win_error): print error code in case no string message is available.
Diffstat (limited to 'cmake/tools')
-rw-r--r-- | cmake/tools/CMakeLists.txt | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/cmake/tools/CMakeLists.txt b/cmake/tools/CMakeLists.txt index 214d19b1..c5568cb3 100644 --- a/cmake/tools/CMakeLists.txt +++ b/cmake/tools/CMakeLists.txt @@ -54,16 +54,16 @@ set (dbus_viewer_SOURCES ../../tools/dbus-viewer.c ) -add_executable(dbus-send ${dbus_send_SOURCES}) -target_link_libraries(dbus-send dbus-1) -install_targets(/bin dbus-send ) +add_executable(dbus-send${CMAKE_EXE_POSTFIX} ${dbus_send_SOURCES}) +target_link_libraries(dbus-send${CMAKE_EXE_POSTFIX} dbus-1) +install_targets(/bin dbus-send${CMAKE_EXE_POSTFIX} ) # glib required -#add_executable(dbus_launch ${dbus_launch_SOURCES}) +#add_executable(dbus_launch${CMAKE_EXE_POSTFIX} ${dbus_launch_SOURCES}) -add_executable(dbus-monitor ${dbus_monitor_SOURCES}) -target_link_libraries(dbus-monitor dbus-1) -install_targets(/bin dbus-monitor ) +add_executable(dbus-monitor${CMAKE_EXE_POSTFIX} ${dbus_monitor_SOURCES}) +target_link_libraries(dbus-monitor${CMAKE_EXE_POSTFIX} dbus-1) +install_targets(/bin dbus-monitor${CMAKE_EXE_POSTFIX} ) #dbus_send_LDADD= $(top_builddir)/dbus/libdbus-1.la #dbus_monitor_LDADD= $(top_builddir)/glib/libdbus-glib-1.la |