Giter Site home page Giter Site logo

illegitimate-egg / interface-sys Goto Github PK

View Code? Open in Web Editor NEW

This project forked from williamistgithub/interface-sys

0.0 0.0 0.0 52 KB

A C99 library for declaring interfaces that allow multiple dynamically loaded libraries and executables to communicate with each other.

License: GNU Lesser General Public License v3.0

C 65.76% CMake 27.68% C++ 6.55%

interface-sys's Introduction

interface-sys

interface-sys is a C99 library for declaring interfaces that allow multiple dynamically loaded libraries and executables to communicate with each other, inspired by Valve Software's source engine.

Usage

The system is built using CMake, for easy inclusion in any CMake-based project.

Here is an example CMakeLists.txt file for including it in your project:

cmake_minimum_required(VERSION 3.14) # FetchContent_MakeAvailable was added in cmake 3.14
project(YourProject)

include(FetchContent)

# disable building examples, dont need that for a project
set(BUILD_EXAMPLES OFF CACHE BOOL "" FORCE)

# declare and import interface sys
FetchContent_Declare(
    interface-sys
    GIT_REPOSITORY https://github.com/williamistGitHub/interface-sys.git
    GIT_TAG v1.0.1
)

FetchContent_MakeAvailable(interface-sys)

# your app code goes here
add_executable(YourProject)
target_sources(YourProject PRIVATE app.c)
target_link_libraries(YourProject PRIVATE interface_sys)

Look at the examples for how to use the library in code.

Contributing

Found an issue with the library? Make an issue or pull request!

interface-sys's People

Contributors

williamistgithub avatar illegitimate-egg avatar

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.