diff options
author | Romain Pokrzywka <romain@kdab.com> | 2010-02-03 11:32:37 -0800 |
---|---|---|
committer | Ralf Habacker <ralf.habacker@freenet.de> | 2010-02-07 00:32:45 +0100 |
commit | 196b310dd1e67444e16b12f904f1c1d8e7b988ae (patch) | |
tree | ffcc698094c6aa6359fb24e6a84a8a0c39fe5698 /cmake/bus | |
parent | 83c70d45a8df6ff6863629077f0885db7795d749 (diff) | |
download | dbus-196b310dd1e67444e16b12f904f1c1d8e7b988ae.tar.gz |
remove the debug postfix for the executables, it only makes sense for the lib
Diffstat (limited to 'cmake/bus')
-rw-r--r-- | cmake/bus/CMakeLists.txt | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/cmake/bus/CMakeLists.txt b/cmake/bus/CMakeLists.txt index a14e1a57..0473eb2e 100644 --- a/cmake/bus/CMakeLists.txt +++ b/cmake/bus/CMakeLists.txt @@ -81,9 +81,6 @@ set(DBUS_LIBRARIES dbus-1 dbus-internal) add_executable(dbus-daemon ${BUS_SOURCES} ${BUS_DIR}/main.c) target_link_libraries(dbus-daemon ${DBUS_LIBRARIES} ${XML_LIBRARY}) -if(WIN32 AND NOT DBUS_DISABLE_EXECUTABLE_DEBUG_POSTFIX) - set_target_properties(dbus-daemon PROPERTIES DEBUG_POSTFIX "d") -endif(WIN32 AND NOT DBUS_DISABLE_EXECUTABLE_DEBUG_POSTFIX) install_targets(/bin dbus-daemon) install_files(/etc FILES ${config_DATA}) @@ -99,9 +96,6 @@ if (DBUS_SERVICE) add_executable(dbus-service ${dbus_service_SOURCES} ) target_link_libraries(dbus-service ${DBUS_LIBRARIES} ${XML_LIBRARY}) install_targets(/bin dbus-service ) - if(WIN32) - set_target_properties(dbus-service PROPERTIES DEBUG_POSTFIX d) - endif(WIN32) endif (DBUS_SERVICE) if (DBUS_BUILD_TESTS) |