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