From 4bd8418548e668cd3fbf8ea5f6aa21d28e14e386 Mon Sep 17 00:00:00 2001 From: Ralf Habacker Date: Thu, 26 Apr 2007 09:30:38 +0000 Subject: * 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. --- cmake/tools/CMakeLists.txt | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'cmake/tools') 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 -- cgit