blob: 086c47bffe7de772f677b5704cc16ccb5224caf1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
To build oxen, please run the following commands in the oxen project root directory:
1) Create build dir in which temporary files will be generated:
mkdir build
2) Invoke cmake to create Makefiles
cd build
cmake .
3) Compile program
make
To create a Debian package additionally run the following command:
make package
|