Installation example for a C++ project (Windows) with Cmake.
This project demonstrates how to use cmake with cpack to generate an installer that can be used to redistribute software/libraries. See my blog for the full write up.
To build this project you will need:
Configure and build using CMake and your favorite build tools. I've tested using Visual Studio Community Edition 2019
cmake -B build
To build an installer simply run:
cmake --build ./build --config Release --target package
@DeveloperPaul123 |
---|
All the code available under the MIT license. See LICENSE.