Cloned SEACAS for EXODUS library with extra build files for internal package management.
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 Initial commit 2 years ago
..
cmake Initial commit 2 years ago
shared_only Initial commit 2 years ago
static_exec Initial commit 2 years ago
static_only Initial commit 2 years ago
CMakeLists.txt Initial commit 2 years ago
PackagesList.cmake Initial commit 2 years ago
README Initial commit 2 years ago
TPLsList.cmake Initial commit 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.