Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/clausklein/docker_build
Usage example of CMake install (RUNTIME_DEPENDENCY_SET ...)
https://github.com/clausklein/docker_build
cmake cpp docker linux
Last synced: about 2 months ago
JSON representation
Usage example of CMake install (RUNTIME_DEPENDENCY_SET ...)
- Host: GitHub
- URL: https://github.com/clausklein/docker_build
- Owner: ClausKlein
- License: apache-2.0
- Created: 2023-09-11T11:33:01.000Z (over 1 year ago)
- Default Branch: develop
- Last Pushed: 2024-09-14T12:30:21.000Z (3 months ago)
- Last Synced: 2024-10-10T19:34:44.325Z (2 months ago)
- Topics: cmake, cpp, docker, linux
- Language: C++
- Homepage: https://discourse.cmake.org/t/how-to-use-installrequiredsystemlibraries-module-or-install-the-runtime-dependency-set/8913/2
- Size: 38.1 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
## Usage example of CMake install `(RUNTIME_DEPENDENCY_SET ...)`
In our use case we build an C++ executable and link it with shared libraries on `ubuntu 22.04` but with `gcc-13`.
It has to be delivered to [Linux Mint 20.1](https://linuxmint.com/download_all.php) with an older `libstd++` installed.
So we need to install all the required runtime libraries too with our executable.
### This project is based [setup-cpp inside a docker build](https://github.com/aminya/setup-cpp#inside-docker).
See too [Docker Instructions](docker.md) and [Dockerfile](Dockerfile).