Skip to content

Latest commit

 

History

History
18 lines (17 loc) · 1.1 KB

BUILDING.md

File metadata and controls

18 lines (17 loc) · 1.1 KB

Instructions for building the project

  1. Download and install Visual Studio Community 2017. SDK 8.1 should be selected when installing.

  2. Download and install CMake.

  3. Download pre-compiled third-party libraries. If you want to compile these libraries yourself, then you must follow the instructions for compiling these libraries.

  4. Extract the archive with third-party libraries (for example to "C:\third_party")

  5. Add an environment variable named ASPIA_THIRD_PARTY_DIR. For the value, specify a directory with third-party libraries.

  6. Download Aspia source code (for example to "C:\aspia").

  7. 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".

  8. Open aspia.sln in Visual Studio and build the project.