https://github.com/openmultiplayer/open.mp-sdk
The open.mp SDK
https://github.com/openmultiplayer/open.mp-sdk
cpp gta gtasa hacktoberfest omp openmp openmultiplayer samp sdk
Last synced: 17 days ago
JSON representation
The open.mp SDK
- Host: GitHub
- URL: https://github.com/openmultiplayer/open.mp-sdk
- Owner: openmultiplayer
- License: mit
- Created: 2022-01-12T12:39:04.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2025-12-28T21:32:52.000Z (about 1 month ago)
- Last Synced: 2025-12-31T14:21:48.354Z (about 1 month ago)
- Topics: cpp, gta, gtasa, hacktoberfest, omp, openmp, openmultiplayer, samp, sdk
- Language: C++
- Homepage:
- Size: 306 KB
- Stars: 44
- Watchers: 17
- Forks: 31
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# open.mp SDK
## Tools
- [CMake 3.19+](https://cmake.org/)
## Tools on Windows
- [Visual Studio 2019+](https://www.visualstudio.com/)
## Sources
```bash
# With HTTPS:
git clone --recursive https://github.com/openmultiplayer/open.mp-sdk
# With SSH:
git clone --recursive git@github.com:openmultiplayer/open.mp-sdk
```
Note the use of the `--recursive` argument, because this repository contains submodules.
## Usage with cmake
```cmake
add_subdirectory(path_to_omp_sdk)
# Later in your cmake file
target_link_libraries(Server PUBLIC OMP-SDK)
```