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
..
hello_world 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
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

README

This is a simple CMake project shows how to have a default raw CMake build
system and secondary TriBITS build system sit side-by-side.

To configure this, you just create a build dir as:

$ cd $SOME_BASE_DIR
$ mkdir BUILD
$ cd BUILD

and then configure, build, and test with the raw CMake build system, use:

$ cmake $TRIBITS_DIR/doc/example/RawAndTribitsHelloWorld
$ make
$ ctest

To configure, build, and test with the TriBITS CMake build system, use:

$ cmake \
-DRawAndTribitsHelloWorld_TRIBITS_DIR=${TRIBITS_DIR} \
$TRIBITS_DIR/doc/example/RawAndTribitsHelloWorld
$ make
$ ctest