You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lib
96dbec27e0
|
2 years ago | |
---|---|---|
.. | ||
cmake | 2 years ago | |
shared_only | 2 years ago | |
static_exec | 2 years ago | |
static_only | 2 years ago | |
CMakeLists.txt | 2 years ago | |
PackagesList.cmake | 2 years ago | |
README | 2 years ago | |
TPLsList.cmake | 2 years ago |
README
======================
MixedSharedStaticLibs
======================
The purpose of this package is to demonstrate and test the usage of the the
arguments SHARED and STATIC with tribits_add_library().
This package has to three subpackages:
* SharedOnly:
- Depends on nothing
- Creates a library shared_only_lib and a test executable
* StaticOnly:
- Depends on SharedOnly
- Creates a library shared_only_lib
- Purpose: shows you can link a shared lib against an upstream static lib
* StaticExec:
- Depends on StaticOnly
- Creates a test executable
- Purpose: Shows that static libs are linked into targets in downstream
packages
See GitHub TriBITS Issue #95 for more details.