blob: d77be63634aecfd08774c4f465b2e50407f6566f (
plain)
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
|
Hard dependencies
=================
The following packages have to be installed (for Fedora)
- cmake
- mozjs24-devel
Documentation
=============
In order to build the documentation (make doc)
- doxygen
Tools
=====
Automated code formating (clang-format)
---------------------------------------
Download Pre-built binary of "LLVM" from
http://llvm.org/releases/download.html
use the "clang-format" program in the bin/ directory. The following gedit tool can be used for automated code formating:
(Active "External Tools" plugin, add the following lines to ./config/gedit/tools/, without indentation)
#!/bin/sh
# [Gedit Tool]
# Input=document
# Shortcut=<Shift><Alt>f
# Applicability=all
# Save-files=nothing
# Output=replace-document
# Name=Clang Format
cd $GEDIT_CURRENT_DOCUMENT_DIR && <INSERT CORRECT PATH HERE>/clang-format
|