-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add instructions to build to main readme
- Loading branch information
Showing
1 changed file
with
16 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,23 @@ | ||
# pressio-demoapps | ||
|
||
Suite of demo/mini apps. | ||
While the primary purpose of this repository is to contain mini-apps | ||
to use for testing ROMs in Pressio, this repository is self-contained in the sense | ||
Suite of demo/mini apps. | ||
While the primary purpose of this repository is to contain mini-apps | ||
to use for testing ROMs in Pressio, this repository is self-contained in the sense | ||
that the code here does *not* depend on Pressio. | ||
|
||
# Building Tests | ||
Requires CMake > 3.18.0 and a C++ compiler with C++11 support: | ||
|
||
``` | ||
git clone [email protected]:Pressio/pressio-demoapps.git | ||
export CXX=<path-to-your-CXX-compiler> | ||
cd pressio-demoapps && mkdir build && cd build | ||
cmake -DPRESSIODEMOAPPS_ENABLE_TESTS=On .. | ||
make -j4 | ||
ctest -j4 | ||
``` | ||
|
||
# License and Citation | ||
[![License](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](https://opensource.org/licenses/BSD-3-Clause) | ||
|
||
|