A minimal C++ SDK for the Microsandbox project.
- Clone this repository:
git clone https://github.com/yourusername/monocore.git- Add the SDK to your CMake project:
# In your CMakeLists.txt
add_subdirectory(/path/to/monocore/sdk/cpp)
target_link_libraries(your_target microsandbox)vcpkg install microsandboxconan install microsandbox/0.0.1#include <iostream>
#include <microsandbox/microsandbox.hpp>
int main() {
// Print a greeting
std::string message = microsandbox::greet("World");
std::cout << message << std::endl;
return 0;
}