This repository serve as a backup for my Maxwell-TD code
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.
 
 
 
 
 
 
Qi Jian Lim 6c05defaa1 Fix: add HybridMesher as normal source folder (not submodule) 3 months ago
..
cmake Fix: add HybridMesher as normal source folder (not submodule) 3 months ago
shared_only Fix: add HybridMesher as normal source folder (not submodule) 3 months ago
static_exec Fix: add HybridMesher as normal source folder (not submodule) 3 months ago
static_only Fix: add HybridMesher as normal source folder (not submodule) 3 months ago
CMakeLists.txt Fix: add HybridMesher as normal source folder (not submodule) 3 months ago
PackagesList.cmake Fix: add HybridMesher as normal source folder (not submodule) 3 months ago
README Fix: add HybridMesher as normal source folder (not submodule) 3 months ago
TPLsList.cmake Fix: add HybridMesher as normal source folder (not submodule) 3 months 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.