Skip to content

Commit

Permalink
change the readme.MD and comment metadata and tracer
Browse files Browse the repository at this point in the history
  • Loading branch information
hxu65 committed Feb 5, 2024
1 parent 44615b9 commit 7ef8d6d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ of the ADIOS plugins interface.
## Install

To compile


```
git clone https://github.com/lukemartinlogan/coeus-adapter.git
spack load hermes@master
Expand All @@ -16,7 +18,12 @@ cd build
cmake ../
make -j8
```

Note:
To enable metadata and function trace feature, please comment out /src/CMakeLists.txt
```
#add_definitions(-DMeta_enabled)
#add_definitions(-Ddebug_mode)
```
## Test

To test the functionality of the adapter, run:
Expand Down
4 changes: 2 additions & 2 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ set(HERMES_ENGINE_SRCS
#------------------------------------------------------------------------------
# Libraries
#------------------------------------------------------------------------------
add_definitions(-DMeta_enabled)
add_definitions(-Ddebug_mode)
#add_definitions(-DMeta_enabled)
#add_definitions(-Ddebug_mode)
add_library(hermes_engine ${HERMES_ENGINE_SRCS} ../include/coeus/MetadataSerializer.h)
add_dependencies(hermes_engine spdlog)
add_dependencies(hermes_engine coeus_mdm)
Expand Down

0 comments on commit 7ef8d6d

Please sign in to comment.