From f05419845bd9ef9d4e46ef0857a11449feba51e2 Mon Sep 17 00:00:00 2001 From: EinMByte Date: Thu, 17 Sep 2015 16:59:39 +0200 Subject: [PATCH] Move part of BUILD_NOTES.md to BUILDING.md --- doc/BUILDING.md | 14 +++++++++++++- doc/BUILD_NOTES.md | 13 ------------- 2 files changed, 13 insertions(+), 14 deletions(-) diff --git a/doc/BUILDING.md b/doc/BUILDING.md index 107f5939..a34046d8 100644 --- a/doc/BUILDING.md +++ b/doc/BUILDING.md @@ -15,7 +15,7 @@ The client should now reseed by itself. By default, the web console is located at http://localhost:7070/. -For a list of cmake options, see build/BUILD_NOTES.md +For a list of cmake options, see BUILD_NOTES.md Building Unit Tests =================== @@ -28,3 +28,15 @@ On Ubuntu/Debian based To build the tests, run $ cmake .. -DWITH_TESTS=ON + +CMake Options +============ +Available cmake options: + +* CMAKE_BUILD_TYPE -- build profile (Debug/Release) +* WITH_AESNI -- AES-NI support (ON/OFF) +* WITH_HARDENING -- enable hardening features (ON/OFF) (gcc only) +* WITH_TESTS -- build tests (ON/OFF) +* WITH_BENCHMARK -- build bechmarking code (ON/OFF) +* WITH_OPTIMIZE -- enable optimization flags (ON/OFF) (not for MSVC) +* I2PD_DATA_DIR -- directory where i2pd will store data diff --git a/doc/BUILD_NOTES.md b/doc/BUILD_NOTES.md index d4d289dd..e3130142 100644 --- a/doc/BUILD_NOTES.md +++ b/doc/BUILD_NOTES.md @@ -1,16 +1,3 @@ -Build notes -=========== - -Available cmake options: - -* CMAKE_BUILD_TYPE -- build profile (Debug/Release) -* WITH_AESNI -- AES-NI support (ON/OFF) -* WITH_HARDENING -- enable hardening features (ON/OFF) (gcc only) -* WITH_TESTS -- build tests (ON/OFF) -* WITH_BENCHMARK -- build bechmarking code (ON/OFF) -* WITH_OPTIMIZE -- enable optimization flags (ON/OFF) (not for MSVC) -* I2PD_DATA_DIR -- directory where i2pd will store data - Debian ------