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
CMakeLists.txt Fix: add HybridMesher as normal source folder (not submodule) 3 months ago
CTestConfig.cmake 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
ProjectName.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
Version.cmake Fix: add HybridMesher as normal source folder (not submodule) 3 months ago

README

#
# TribitsExampleMetaProject Documentation
#

The project TribitsExampleMetaProject defines a TriBITS CMake project designed
to provide a simple example to demonstrate how to compose a TriBITS Meta
project out of one or more other TriBITS Repositories.

To get started building you can create a directory structure like:

~/TribitsExampleMetaProject.base/
TribitsExampleMetaProject/ # This directory
TribitsExampleProject/ # Copied or cloned in
TribitsExampleProjectAddons/ # Copied or cloned in
BUILDS/
SERIAL_DEBUG/

Then configure with:

cd BUILDS/SERIAL_DEBUG/
cmake -DTribitsExMetaProj_ENABLE_ALL_PACKAGES=ON \
-DTribitsExMetaProj_ENABLE_TESTS=ON \
../../TribitsExampleMetaProject

and build and test with:

make -j4
ctest -j4