mirror of
https://github.com/BeamMP/BeamMP-Server.git
synced 2025-07-01 15:26:59 +00:00
11 lines
235 B
Bash
Executable File
11 lines
235 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
cmake --build bin --parallel -t BeamMP-Server
|
|
|
|
objcopy --only-keep-debug bin/BeamMP-Server bin/BeamMP-Server.debug
|
|
objcopy --add-gnu-debuglink bin/BeamMP-Server bin/BeamMP-Server.debug
|
|
|
|
strip -s bin/BeamMP-Server
|