From 564e952386c11e13844a4a64657dac1d10b3385d Mon Sep 17 00:00:00 2001 From: Dominik Schmidt Date: Sat, 3 Nov 2012 01:54:02 +0100 Subject: [PATCH] Port CrashReporter to automoc --- src/breakpad/CrashReporter/CMakeLists.txt | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/breakpad/CrashReporter/CMakeLists.txt b/src/breakpad/CrashReporter/CMakeLists.txt index 26955fce7..4c6c1e3cd 100644 --- a/src/breakpad/CrashReporter/CMakeLists.txt +++ b/src/breakpad/CrashReporter/CMakeLists.txt @@ -6,11 +6,9 @@ SET( QT_USE_QTNETWORK TRUE ) SET( crashreporter_SOURCES main.cpp CrashReporter.cpp ) -SET( crashreporter_HEADERS CrashReporter.h ) SET( crashreporter_UI CrashReporter.ui ) SET( crashreporter_RC ../../../resources.qrc ) -QT4_WRAP_CPP( crashreporter_HEADERS_MOC ${crashreporter_HEADERS} ) QT4_WRAP_UI( crashreporter_UI_HEADERS ${crashreporter_UI} ) QT4_ADD_RESOURCES( crashreporter_RC_RCC ${crashreporter_RC} ) @@ -20,5 +18,5 @@ ADD_DEFINITIONS( ${QT_DEFINITIONS} ) ADD_EXECUTABLE( tomahawk_crash_reporter WIN32 ${crashreporter_SOURCES} ${crashreporter_HEADERS_MOC} ${crashreporter_UI_HEADERS} ${crashreporter_RC_RCC} ) TARGET_LINK_LIBRARIES( tomahawk_crash_reporter ${QT_LIBRARIES} tomahawklib ) - +set_target_properties( tomahawk_crash_reporter PROPERTIES AUTOMOC ON) install(TARGETS tomahawk_crash_reporter RUNTIME DESTINATION ${CMAKE_INSTALL_LIBEXECDIR})