Skip to content

Latest commit

 

History

History
31 lines (20 loc) · 897 Bytes

README.md

File metadata and controls

31 lines (20 loc) · 897 Bytes

SimpleMemory

This is a simple memory with DMI using GreenLib.

Code status

build status

Include this model in a project

  • Copy the misc/FindSIMPLEMEMORY.cmake in your project repository.
  • Add the following lines into your CMakeLists.txt:
find_package(SIMPLEMEMORY)
if(SIMPLEMEMORY_FOUND)
    include_directories(${SIMPLEMEMORY_INCLUDE_DIRS})
else()
    message(FATAL_ERROR "SimpleMemory not found.")
endif()

You're now able to use SimpleMemory headers.

Contributing

SimpleMemory is an open source, community-driven project. If you'd like to contribute, please feel free to fork project and open a merge request or to send us a patch.

GreenLib-logo