Allows for prebuilding the depdendencies for WINDOWS build of michaelheilmann.com.
This repository contains CMake build files to download and build the dependencies for WINDOWS build of michaelheilmann.com.
This project requires GIT and KitWare's CMake to build.
The project requires Git and CMake to build to be in your path as well as the reachability of the following Git repositories:
- Checkout the repository https://github.com/michaelheilmann/michaelheilmann-dependencies.com to a directory on your machine.
- Create a directory called the build directory. That directory must not be the source directory or a subdirectory of the source directory.
- Invoke
cmake <source directory>
where<source directory>
is the path to the source directory. - Open the
Arcadia-Dependencies.sln
solution file.
Remarks: This will build the target architecture that is the default of your machine.
To generate the build files for the target architecture x86, change the command to cmake -A Win32 <source directory>
.
To generate the build files for the target architecture x64, change the command to cmake -A x64 <source directory>
.