mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-13 19:53:48 +00:00
added libraries: opus flac libsndfile updated: libvorbis libogg openal - Everything works as expected for now. Bare in mind libsndfile needed the check for whether or not it could find the xiph libraries removed in order for this to work.
9 lines
116 B
Bash
9 lines
116 B
Bash
#!/bin/bash -eu
|
|
|
|
rm -rf CMakeCache.txt CMakeFiles/ _Build
|
|
|
|
mkdir _Build
|
|
cd _Build
|
|
cmake ..
|
|
cmake --build .
|
|
ctest -V
|