- Download latest version from visualstudio.microsoft.com
- Launch downloaded Visual Studio installer
- Select "Desktop development with C++" before installation
- Unselect "vcpkg package manager" inside Installation details we will use our own
- Finally click Install button to begin installation
Alternatively you can install and use CLion, VSCode or any other IDE.
- Download and install latest version from git-cms.com
You may use default Git install options or chose any other default Git editor instead of Vim.
- Download latest release version of installer from cmake.org
- Select "Add CMake to the system PATH for the current user" during installation
- Open Terminal or CMD app to execute following commands
- Change current working directory using
cdcommand where to clone repository. (Google it) - Run
git clone --recursive -j8 https://github.com/cfnptr/netscommand to download repository - Run
cd nets/to enter repository directory
Note! Use appropriate github link if Nets is used as a third-party library.
- Open CMD or Terminal app as Administrator. (Right click the app)
- Run
scripts/update-vcpkg.batcommand from the repository scripts/ directory - Reopen CMD or Terminal app to get updated system environment variables.
Or
- Follow installation steps from learn.microsoft.com (Better to choose C:\vcpkg path)
- Run
vcpkg integrate installcommand using Terminal or CMD app to make packages available user-wide - Add vcpkg to the System Environment Variables. (Google it)
- Run
vcpkg install openssl:x64-windows-static curl:x64-windows-staticusing Terminal or CMD app
- Download and install latest version from the built-in App Store
- Run
xcode-select --installcommand using Terminal app to install Xcode tools
Alternatively you can install and use CLion, VSCode or any other IDE.
- Install Homebrew package manager from brew.sh
- Run
brew updatecommand using Terminal app to update package list - And run
brew install git cmake openssl curlcommand to install packages
- Download and install latest version from code.visualstudio.com or from built-in store
- Install "C/C++" and "CMake Tools" extensions inside the VS Code
Alternatively you can install and use CLion, VSCodium or any other IDE.
- Execute scripts/install-packages.sh script or
- Run
sudo apt-get updatecommand using Terminal app - And
sudo apt-get install git cmake build-essential libssl-dev libcurl4-openssl-dev
Before building the project you should clone it: git clone --recursive -j8 <project-url>
To build the project run one of the scripts using Terminal, Git Bash or build it using IDE.
- Open Visual Studio IDE application
- Click "Open a project or solution" and open the project CMakeLists.txt
- Wait for project CMake generation to finish
- Click Build -> Build All to build the project
- Open Visual Studio Code IDE application
- Click File -> Open Folder... and open the project folder
- Select one of the compiler Kits in the opened window (Clang or GCC)
- Wait for project CMake generation to finish (may take some time)
- Click Build button at the bottom bar to build the project