mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-01-22 21:37:17 +01:00
* cmake debug (closes #562)
This commit is contained in:
parent
c528d739c8
commit
fac6229e43
|
@ -3,6 +3,9 @@ cmake_minimum_required ( VERSION 2.8.12 )
|
||||||
cmake_policy( VERSION 2.8.12 )
|
cmake_policy( VERSION 2.8.12 )
|
||||||
project ( "i2pd" )
|
project ( "i2pd" )
|
||||||
|
|
||||||
|
# for debugging
|
||||||
|
#set(CMAKE_VERBOSE_MAKEFILE on)
|
||||||
|
|
||||||
# configurale options
|
# configurale options
|
||||||
option(WITH_AESNI "Use AES-NI instructions set" OFF)
|
option(WITH_AESNI "Use AES-NI instructions set" OFF)
|
||||||
option(WITH_HARDENING "Use hardening compiler flags" OFF)
|
option(WITH_HARDENING "Use hardening compiler flags" OFF)
|
||||||
|
|
|
@ -16,7 +16,7 @@ Let's clone the repository and start building the i2pd:
|
||||||
git clone https://github.com/PurpleI2P/i2pd.git
|
git clone https://github.com/PurpleI2P/i2pd.git
|
||||||
cd i2pd/build
|
cd i2pd/build
|
||||||
cmake -DCMAKE_BUILD_TYPE=Release # more options could be passed, see "CMake Options"
|
cmake -DCMAKE_BUILD_TYPE=Release # more options could be passed, see "CMake Options"
|
||||||
make
|
make # you may add VERBOSE=1 to cmdline for debugging
|
||||||
```
|
```
|
||||||
|
|
||||||
After successfull build i2pd could be installed with:
|
After successfull build i2pd could be installed with:
|
||||||
|
|
Loading…
Reference in a new issue