blob: 1bfe0b99d01f01c945adcfc027f18daeec2f648f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# Copyright (C) 2018-2019 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
#
find_package(OpenCV REQUIRED COMPONENTS core imgproc)
set(SOURCES
src/cpu_monitor.cpp
src/memory_monitor.cpp
src/presenter.cpp)
set(HEADERS
include/monitors/cpu_monitor.h
include/monitors/memory_monitor.h
include/monitors/presenter.h)
if(WIN32)
list(APPEND SOURCES src/query_wrapper.cpp)
list(APPEND HEADERS include/monitors/query_wrapper.h)
endif()
# Create named folders for the sources within the .vcproj
# Empty name lists them directly under the .vcproj
source_group("src" FILES ${SOURCES})
source_group("include" FILES ${HEADERS})
add_library(monitors STATIC ${SOURCES} ${HEADERS})
target_include_directories(monitors PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/include")
target_link_libraries(monitors PRIVATE opencv_core opencv_imgproc)
if(WIN32)
target_link_libraries(monitors PRIVATE pdh)
target_compile_definitions(monitors PRIVATE
# Prevents Windows.h from adding unnecessary includes
WIN32_LEAN_AND_MEAN
# Prevents Windows.h from defining min/max as macros
NOMINMAX
)
endif()
|