Skip to content

Commit d9bfb08

Browse files
committed
Fill out README.md
1 parent 3c3fcac commit d9bfb08

File tree

1 file changed

+29
-1
lines changed

1 file changed

+29
-1
lines changed

README.md

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,29 @@
1-
# BlazeEncryptions
1+
# BlazeEncryptions
2+
A Program which encrypts or decrypts text files or messages.
3+
# Building
4+
# Linux
5+
# Requirements
6+
* g++
7+
* cmake
8+
# Windows
9+
# Requirements
10+
* C++ Compiler
11+
* [cmake](https://cmake.org/download/)
12+
13+
installed in your Path Environment Variable.
14+
Then you can cd to BlazeEncryptions source directory and execute
15+
```
16+
cmake .
17+
cmake --build .
18+
```
19+
which should give you a usable binary for your architecture. If you want to build a different architcture for Linux for the aarch64 architecture then you can use
20+
```
21+
cmake -D CMAKE_CXX_COMPILER=aarch64-linux-gnu-g++ -S .
22+
cmake --build .
23+
```
24+
If you want to build a different architecture for Windows, then instead for ARM64, use
25+
```
26+
cmake -A ARM64 -S .
27+
cmake --build .
28+
```
29+
In all cases this should leave a BlazeEncryptions or BlazeEncryptions.exe ready to use.

0 commit comments

Comments
 (0)