mirror of
https://gitlab.com/Mr_Goldberg/goldberg_emulator.git
synced 2025-07-19 06:55:19 +02:00
4 lines
No EOL
413 B
Bash
Executable file
4 lines
No EOL
413 B
Bash
Executable file
#!/bin/bash
|
|
protoc -I"${PWD}/dll/" --cpp_out="${PWD}/dll/" "${PWD}"/dll/*.proto
|
|
clang++ -shared -fPIC -o libsteam_api.so dll/*.cpp dll/*.cc -g3 -Wno-return-type -fsanitize=address -lasan -lprotobuf-lite -std=c++14 && echo built libsteam_api.so
|
|
clang++ -fPIC -o lobby_connect lobby_connect.cpp dll/*.cpp dll/*.cc -g3 -Wno-return-type -fsanitize=address -lasan -lprotobuf-lite -std=c++14 && echo built lobby_connect |