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.
26 lines
701 B
26 lines
701 B
2 years ago
|
======================
|
||
|
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.
|