forked from qt-creator/qt-creator
CMake Build: Add support for qtcdebugger
Fixes: QTCREATORBUG-22920 Change-Id: I196ba1d987e95a5e33f3b6de2aa70b6720bc7f33 Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
This commit is contained in:
@@ -36,7 +36,7 @@ if (APPLE)
|
||||
endif()
|
||||
|
||||
add_subdirectory(qml2puppet)
|
||||
# add_subdirectory(qtcdebugger) ## windows only
|
||||
add_subdirectory(qtcdebugger) ## windows only
|
||||
# add_subdirectory(qtcrashhandler)
|
||||
add_subdirectory(qtc-askpass)
|
||||
add_subdirectory(qtcreatorcrashhandler)
|
||||
|
@@ -1,18 +1,10 @@
|
||||
#
|
||||
# Copyright (C) YourCompany. All rights reserved.
|
||||
#
|
||||
# GENERATED BY CPP-DEPENDENCIES - do not edit, your changes will be lost
|
||||
# If you must edit, remove these two lines to avoid regeneration
|
||||
if (NOT WIN32)
|
||||
return()
|
||||
endif()
|
||||
|
||||
project(src.tools.qtcdebugger)
|
||||
|
||||
|
||||
add_library(${PROJECT_NAME} STATIC
|
||||
main.cpp
|
||||
add_qtc_executable(qtcdebugger
|
||||
DEPENDS Qt5::Widgets registryaccess psapi
|
||||
SOURCES
|
||||
main.cpp
|
||||
PROPERTIES WIN32_EXECUTABLE ON
|
||||
)
|
||||
|
||||
target_link_libraries(${PROJECT_NAME}
|
||||
PRIVATE
|
||||
src
|
||||
)
|
||||
|
||||
|
Reference in New Issue
Block a user