-
Notifications
You must be signed in to change notification settings - Fork 0
/
Readme.txt
44 lines (34 loc) · 845 Bytes
/
Readme.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
41
42
43
44
OFGUI-open file gui
This program displays open files
Compiled with KF5/QT5
Building
--------
Required:
compiler/make
c++ (x++11)
cmake
libs(+devel):
libQt5Widgets.so.5
libKF5CoreAddons.so.5
libKF5ConfigCore.so.5
libKF5I18n.so.5
libQt5Gui.so.5
libQt5Core.so.5
building:
goto project root
mkdir build
cd build
cmake ..
make
This program can be installed by running "make install" or it can directly run from the build folder. Ofgui can run under a
normal user or as a root.
Translation:
There is only a English and a Dutch translation.
When the program is installed with "make install" and with a prefix /usr/local, it's possible that the Dutch translation doesn't work.
This can be solved when to program is build as follows:
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr ..
make
sudo make install
T