This repository has been archived on 2026-01-21. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ground-old/extlibs/compiling.md

10 lines
155 B
Markdown

## Compiling External Libraries
On Linux:
`g++ -shared -fPIC -o filename.so filename.cpp`
On macOS:
`g++ -shared -fPIC -o filename.dylib filename.cpp`