-
Notifications
You must be signed in to change notification settings - Fork 2
/
CMakeLists.txt
40 lines (33 loc) · 944 Bytes
/
CMakeLists.txt
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
39
40
cmake_minimum_required (VERSION 3.11)
# --- Fetch FTXUI --------------------------------------------------------------
include(FetchContent)
set(FETCHCONTENT_UPDATES_DISCONNECTED TRUE)
FetchContent_Declare(ftxui
GIT_REPOSITORY https://github.com/ArthurSonzogni/ftxui
GIT_TAG v5.0.0
)
FetchContent_GetProperties(ftxui)
if(NOT ftxui_POPULATED)
FetchContent_Populate(ftxui)
add_subdirectory(${ftxui_SOURCE_DIR} ${ftxui_BINARY_DIR} EXCLUDE_FROM_ALL)
endif()
# ------------------------------------------------------------------------------
project(resource-monitor
LANGUAGES CXX
VERSION 1.0.0
)
add_executable(resource-monitor
src/main.cpp
src/monitor.cpp
src/renderer.cpp
src/net.cpp
src/disk.cpp
src/mem.cpp
src/util.cpp
src/cpu.cpp)
target_include_directories(resource-monitor PRIVATE src)
target_link_libraries(resource-monitor
PRIVATE ftxui::screen
PRIVATE ftxui::dom
PRIVATE ftxui::component
)