Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[INFRA] configure cpack for source builds
Usage: Make a fresh clone of the repository and create a build folder (out-of-source). ```bash mkdir package-build git clone https://github.com/seqan/seqan3.git cd seqan3 git checkout 3.0.2 # version to pack git submodule init git submodule update cd ../package-build cmake ../seqan3 # configure cpack # builds binary package, e.g. seqan3-3.0.2-Linux.tar.xz{,.sha265} cmake --build . --target package_source # builds source package, e.g. seqan3-3.0.2-Source.tar.xz{,.sha265} ``` Note: Do not do `git clone -recurse-submodules https://github.com/seqan/seqan3.git` because it will recursively pull sub-submodules which we do not want!
- Loading branch information