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

40 lines
829 B
CMake
Raw Normal View History

2016-04-29 16:13:32 +03:00
cmake_minimum_required(VERSION 3.0.0 FATAL_ERROR)
project(profiler_gui)
2016-06-26 12:48:59 +03:00
#set(CMAKE_PREFIX_PATH f:/qt/5.5/5.6/msvc2013_64/lib/cmake)
2016-04-29 16:13:32 +03:00
set(CMAKE_AUTOMOC ON)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
find_package(Qt5Widgets REQUIRED)
2016-06-26 18:46:51 +03:00
add_executable(${PROJECT_NAME}
main.cpp
blocks_graphics_view.h
blocks_graphics_view.cpp
blocks_tree_widget.h
blocks_tree_widget.cpp
globals.h
globals.cpp
2016-08-08 22:45:57 +03:00
globals_qobjects.cpp
graphics_scrollbar.h
graphics_scrollbar.cpp
main_window.h
main_window.cpp
tree_widget_item.h
tree_widget_item.cpp
tree_widget_loader.h
tree_widget_loader.cpp
#treemodel.h
#treemodel.cpp
#treeitem.h
#treeitem.cpp
2016-06-26 18:46:51 +03:00
)
2016-08-18 23:50:53 +03:00
if(UNIX)
set(SPECIAL_LIB pthread)
endif(UNIX)
target_link_libraries(${PROJECT_NAME} Qt5::Widgets easy_profiler ${SPECIAL_LIB})