Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

Microsandbox C++ SDK

A minimal C++ SDK for the Microsandbox project.

Installation

Using CMake (recommended)

  1. Clone this repository:
git clone https://github.com/yourusername/monocore.git
  1. Add the SDK to your CMake project:
# In your CMakeLists.txt
add_subdirectory(/path/to/monocore/sdk/cpp)
target_link_libraries(your_target microsandbox)

Using vcpkg

vcpkg install microsandbox

Using Conan

conan install microsandbox/0.0.1

Usage

#include <iostream>
#include <microsandbox/microsandbox.hpp>

int main() {
    // Print a greeting
    std::string message = microsandbox::greet("World");
    std::cout << message << std::endl;
    return 0;
}

License

MIT