Changes: Restructure folder.

This commit is contained in:
Alastair Poole 2019-12-04 22:55:01 +00:00
parent 920b61ee82
commit 75e1daf45e
13 changed files with 18 additions and 12 deletions

7
NEWS
View File

@ -1,3 +1,10 @@
============
Evisum 0.3.0
============
* Move to Meson build system.
...
============
Evisum 0.2.6
============

View File

@ -26,6 +26,3 @@ NOTES
You can press 'k', 'm', 'g' to display results in KB, MB of GB
respectively.
The plan is to rewrite the whole program to log system information
over time to disk so we can do nice things with E and displaying
system information (not duplicating loads of code).

9
src/bin/meson.build Normal file
View File

@ -0,0 +1,9 @@
executable('evisum', [
'disks.c', 'disks.h',
'process.c', 'process.h',
'system.c', 'system.h',
'ui.c', 'ui.h',
'main.c'],
dependencies : deps,
gui_app : true,
install : true)

View File

@ -386,6 +386,7 @@ _tab_cpu_update(Ui *ui, results_t *results)
frame = elm_frame_add(box);
evas_object_size_hint_align_set(frame, EVAS_HINT_FILL, 0);
evas_object_size_hint_weight_set(frame, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
if (i == 0 && results->temperature != INVALID_TEMP)
elm_object_text_set(frame, eina_slstr_printf("CPU %d (%d °C)", i, results->temperature));
else

View File

@ -1,9 +1 @@
executable('evisum', [
'disks.c', 'disks.h',
'process.c', 'process.h',
'system.c', 'system.h',
'ui.c', 'ui.h',
'main.c'],
dependencies : deps,
gui_app : true,
install : true)
subdir('bin')