0
0
mirror of https://github.com/yse/easy_profiler.git synced 2024-12-27 00:31:02 +08:00
easy_profiler/profiler_gui/CMakeLists.txt
Victor Zarubkin 92a5ca4a75 Big bunch of changes:
* update copyright
* fix css parsing
* fix block name search
* add matching text highlighing for find results
* add calculation of block statistics for selected area
* new action: right-click on a block on "Diagram" selects region using left and right bounds of this block
* other optimizations
2019-10-20 16:12:37 +03:00

90 lines
2.4 KiB
CMake

#set(CMAKE_PREFIX_PATH f:/qt/5.5/5.6/msvc2013_64/lib/cmake)
set(CMAKE_AUTOMOC ON)
set(CMAKE_AUTORCC ON)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
find_package(Qt5Widgets)
if (Qt5Widgets_FOUND)
message(STATUS "Using Qt v${Qt5Widgets_VERSION}")
if (NOT("${CMAKE_BUILD_TYPE}" STREQUAL "Debug") AND WIN32)
set(APPLICATION_PLATFORM WIN32)
endif ()
add_executable(profiler_gui ${APPLICATION_PLATFORM}
main.cpp
arbitrary_value_inspector.h
arbitrary_value_inspector.cpp
arbitrary_value_tooltip.h
arbitrary_value_tooltip.cpp
blocks_graphics_view.h
blocks_graphics_view.cpp
blocks_tree_widget.h
blocks_tree_widget.cpp
bookmarks_editor.h
bookmarks_editor.cpp
common_functions.h
common_functions.cpp
common_types.h
descriptors_tree_widget.h
descriptors_tree_widget.cpp
dialog.h
dialog.cpp
fps_widget.h
fps_widget.cpp
globals.h
globals.cpp
globals_qobjects.cpp
graphics_block_item.h
graphics_block_item.cpp
graphics_image_item.h
graphics_image_item.cpp
graphics_ruler_item.h
graphics_ruler_item.cpp
graphics_scrollbar.h
graphics_scrollbar.cpp
graphics_slider_area.h
graphics_slider_area.cpp
main_window.h
main_window.cpp
round_progress_widget.h
round_progress_widget.cpp
text_highlighter.h
text_highlighter.cpp
timer.h
timer.cpp
thread_pool.h
thread_pool.cpp
thread_pool_task.h
thread_pool_task.cpp
tree_widget_item.h
tree_widget_item.cpp
tree_widget_loader.h
tree_widget_loader.cpp
window_header.h
window_header.cpp
resources.qrc
resources.rc
)
target_link_libraries(profiler_gui Qt5::Widgets easy_profiler)
if (WIN32)
target_compile_definitions(profiler_gui PRIVATE -D_WIN32_WINNT=0x0600)
endif ()
if (MINGW)
target_compile_definitions(profiler_gui PRIVATE -DSTRSAFE_NO_DEPRECATE)
endif ()
install(
TARGETS
profiler_gui
RUNTIME
DESTINATION
bin
)
set_property(TARGET profiler_gui PROPERTY INSTALL_RPATH_USE_LINK_PATH TRUE)
else ()
message(STATUS "INFO\n\n\tQt5 not found! Generating EasyProfiler projects without GUI.\n")
endif ()