-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
50 lines (34 loc) · 961 Bytes
/
README
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
45
46
47
48
49
What is it?
-----------
libhawk is a GUI-agnostic file-manager library for Linux
Building
--------
libhawk is written in C++1y so you'll need a C++1y compliant compiler
(that'd be g++ >=4.9.1 or llvm/clang >=3.5).
libhawk is using CMake build system so before you start make sure it's
installed on your system.
Dependencies (just this one)
------------
libmagic-dev
As for the actual building:
cd to your build directory (let's say ./build/)
$ cd build/
tell cmake where's the libhawk's CMake config file
$ cmake ../src
run make
$ make
(optional) now you can install libhawk to make it available
system-wide
# make install
Both a shared library libhawk.so and a static library libhawk_static.a will
be created.
Usage
-----
Refer to the API reference manual and hawk-test.
Links
-----
libhawk git: https://github.com/gman0/libhawk.git
hawk-test git: https://github.com/gman0/hawk-test.git
Contact
-------
my email: <[email protected]>