0
0
mirror of https://github.com/yse/easy_profiler.git synced 2024-12-29 10:05:48 +08:00
easy_profiler/profiler_gui/CMakeLists.txt

11 lines
322 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)
set(CMAKE_AUTOMOC ON)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
find_package(Qt5Widgets REQUIRED)
2016-05-01 23:32:46 +03:00
add_executable(${PROJECT_NAME} main.cpp treemodel.h treemodel.cpp treeitem.h treeitem.cpp)
target_link_libraries(${PROJECT_NAME} Qt5::Widgets easy_profiler)