This file is an installation guide for new users. Please do everything mentioned in this document.
Git is needed for this section. If you had not installed, you can install Git from it's official website. Open a new terminal window. Copy and paste the command below:
git clone https://github.com/hypernova-developer/Jenny.gitA compiler is needed for this section. If you do not have one, I highly recommend GCC for performance and security. Use the command below to go to the folder where source codes are at:
cd "src/"You will have to compile all of the source codes inside the folder. Before this section, be sure that you added your compiler as an environment variable. If everything is alright, you can use the commands below:
g++ .\jenny.cpp -o jenny.exe -O3 -lole32 -loleaut32 -lwbemuuidg++ .\SentinelCore.cpp -o SentinelCore.exe -O3 -std=c++17 -lwintrust -lbcrypt -liphlpapig++ .\compilex.cpp -o compilex_engine.exe -O3 -std=c++20g++ .\ProtocolX.cpp -o ProtocolX.exe -O3 -std=c++20Define "...\Jenny\src" as an environment variable. After this, jenny.exe file will be executed from wherever you are.
Jenny uses a configuration file for settings. Nothing will be burned into binaries. If you change settings and paths, you will not need to compile the files again. Before running Jenny, be sure that you edited jenny.conf.
You have to be careful while typing the paths of your own files. The template is given in the file but not descripted. Here is the description.
Thanks for reading this document. Good luck with your own projects.
hypernova-developer