https://github.com/code-disaster/gameanalytics-sdk-build
Custom CMake build for GA-SDK-CPP
https://github.com/code-disaster/gameanalytics-sdk-build
Last synced: 11 days ago
JSON representation
Custom CMake build for GA-SDK-CPP
- Host: GitHub
- URL: https://github.com/code-disaster/gameanalytics-sdk-build
- Owner: code-disaster
- Created: 2023-01-11T09:11:30.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-03-02T08:11:32.000Z (almost 3 years ago)
- Last Synced: 2025-01-20T21:13:51.211Z (12 months ago)
- Language: CMake
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Custom CMake build for GA-SDK-CPP
Because their own build infrastructure is a smoking pile of rubble.
## build instructions
### Windows (x86_64)
```
mkdir build && cd build
cmake -G Ninja -DCMAKE_BUILD_TYPE=Release ..
cmake --build .
```
### MacOS (universal binary with x86_64 and arm64)
```
mkdir build && cd build
cmake -G Ninja -DCMAKE_OSX_DEPLOYMENT_TARGET=10.14 -DCMAKE_OSX_ARCHITECTURES="x86_64;arm64" -DCMAKE_BUILD_TYPE=Release ..
cmake --build .
```