-
Download and install Visual Studio Community 2017. SDK 8.1 should be selected when installing.
-
Download and install CMake.
-
Download pre-compiled third-party libraries. If you want to compile these libraries yourself, then you must follow the instructions for compiling these libraries.
-
Extract the archive with third-party libraries (for example to "C:\third_party")
-
Add an environment variable named ASPIA_THIRD_PARTY_DIR. For the value, specify a directory with third-party libraries.
-
Download Aspia source code (for example to "C:\aspia").
-
Go to the source directory and run the following commands:
mkdir build
cd build
cmake ..\source -G "Visual Studio 15 2017"You can also use CMake GUI for these purposes.
After these actions, the aspia.sln file will be generated in directory "build". -
Open aspia.sln in Visual Studio and build the project.