Giter Site home page Giter Site logo

Add backend using avro data files about rmf HOT 2 CLOSED

drussel avatar drussel commented on August 15, 2024
Add backend using avro data files

from rmf.

Comments (2)

drussel avatar drussel commented on August 15, 2024

We probably need to ship avro as part of rmf. Can use something like this to test if it is there, and then subdir it if it is not already there.

- Try to find ImageMagick++

Once done, this will define

Magick++_FOUND - system has Magick++

Magick++_INCLUDE_DIRS - the Magick++ include directories

Magick++_LIBRARIES - link these to use Magick++

include(LibFindMacros)

Dependencies

libfind_package(Magick++ Magick)

Use pkg-config to get hints about paths

libfind_pkg_check_modules(Magick++_PKGCONF ImageMagick++)

Include dir

find_path(Magick++_INCLUDE_DIR
NAMES Magick++.h
PATHS ${Magick++_PKGCONF_INCLUDE_DIRS}
)

Finally the library itself

find_library(Magick++_LIBRARY
NAMES Magick++
PATHS ${Magick++_PKGCONF_LIBRARY_DIRS}
)

Set the include dir variables and the libraries and let libfind_process do the rest.

NOTE: Singular variables for this library, plural for libraries this this lib depends on.

set(Magick++_PROCESS_INCLUDES Magick++_INCLUDE_DIR Magick_INCLUDE_DIRS)
set(Magick++_PROCESS_LIBS Magick++_LIBRARY Magick_LIBRARIES)
libfind_process(Magick++)

from rmf.

drussel avatar drussel commented on August 15, 2024

The current big issue is the lack of seek(), sync() support in DataFileReader and append in DataFileWriter.

from rmf.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.