diff options
author | Burt P <pburt0@gmail.com> | 2019-08-16 22:55:18 -0500 |
---|---|---|
committer | Leandro A. F. Pereira <leandro@hardinfo.org> | 2019-08-18 23:49:29 +0200 |
commit | e49e438270cdffc4a80a2676c73ad95bedce33d4 (patch) | |
tree | 769017d433a3004202ea6769d4d0fca40f3099d1 /CMakeLists.txt | |
parent | d55a8f33188eb35e918d5c6c355d686867315337 (diff) |
Devices/Monitors
Signed-off-by: Burt P <pburt0@gmail.com>
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 4326e892..e41cbf4a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -124,6 +124,7 @@ set(HARDINFO_RESOURCES "deps/sysobj_early/data/sdcard.ids" "deps/sysobj_early/data/usb.ids" "deps/sysobj_early/data/arm.ids" + "deps/sysobj_early/data/edid.ids" ) set(HARDINFO_MANPAGES @@ -152,6 +153,7 @@ set(MODULE_devices_SOURCES modules/devices.c modules/devices/${HARDINFO_ARCH}/processor.c modules/devices/gpu.c + modules/devices/monitors.c modules/devices/battery.c modules/devices/dmi.c modules/devices/dmi_memory.c @@ -209,6 +211,7 @@ set_source_files_properties( ) set_source_files_properties( + modules/devices/monitors.c modules/devices/dmi_memory.c # modules/devices/spd-decode.c hardinfo/problem_marker.c @@ -230,8 +233,10 @@ add_library(sysobj_early STATIC deps/sysobj_early/src/appf.c deps/sysobj_early/src/nice_name.c deps/sysobj_early/gui/uri_handler.c + deps/sysobj_early/src/util_edid.c ) set_target_properties(sysobj_early PROPERTIES COMPILE_FLAGS "-std=c99 -Wall -Wextra -Wno-parentheses -Wno-unused-function") +target_link_libraries(sysobj_early m) if (HARDINFO_GTK3) add_library(uber-graph STATIC |