Skip to content

nvdla/simple_memory

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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