-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #85 from DBraun/warpbuf-fixes
WarpBuf fixes
- Loading branch information
Showing
8 changed files
with
182 additions
and
92 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>CFBundleDevelopmentRegion</key> | ||
<string>English</string> | ||
<key>CFBundleExecutable</key> | ||
<string>WarpBuf</string> | ||
<key>CFBundleIconFile</key> | ||
<string></string> | ||
<key>CFBundleIdentifier</key> | ||
<string>edu.stanford.chuck.WarpBuf</string> | ||
<key>CFBundleInfoDictionaryVersion</key> | ||
<string>0.0.1</string> | ||
<key>CFBundleLongVersionString</key> | ||
<string>WarpBuf 0.0.1, Copyright 2023 Stanford CCRMA</string> | ||
<key>CFBundlePackageType</key> | ||
<string>iLaX</string> | ||
<key>CFBundleShortVersionString</key> | ||
<string>0.0.1</string> | ||
<key>CFBundleSignature</key> | ||
<string>max2</string> | ||
<key>CFBundleVersion</key> | ||
<string>0.0.1</string> | ||
<key>CSResourcesFileMapped</key> | ||
<true/> | ||
</dict> | ||
</plist> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# The quirky thing about this build script is that on macOS, we can't | ||
# use the libsndfile from brew because it's not a static library. | ||
# Therefore, we build libsndfile statically locally and link against it | ||
# in the CMakeLists.txt. On Windows, we can just download libsndfile | ||
# from its GitHub releases. | ||
|
||
cd thirdparty/libsndfile | ||
cmake -Bbuild $CMAKEOPTS -DCMAKE_VERBOSE_MAKEFILE=ON -DCMAKE_C_FLAGS="-fPIC" -DCMAKE_CXX_FLAGS="-fPIC" -DBUILD_TESTING=OFF -DCMAKE_INSTALL_PREFIX="./install" | ||
cmake --build build --config Release | ||
cmake --build build --target install | ||
cd ../.. | ||
|
||
cmake -Bbuild . -DCMAKE_VERBOSE_MAKEFILE=ON | ||
cmake --build build --config Release | ||
cmake --build build --config Release --target install |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
rem Download libsndfile | ||
if not exist "thirdparty/libsndfile-1.2.0-win64/" ( | ||
echo "Downloading libsndfile..." | ||
cd thirdparty | ||
curl -OL https://github.com/libsndfile/libsndfile/releases/download/1.2.0/libsndfile-1.2.0-win64.zip | ||
7z x libsndfile-1.2.0-win64.zip -y | ||
rm libsndfile-1.2.0-win64.zip | ||
echo "Downloaded libsndfile." | ||
cd .. | ||
) | ||
|
||
cmake -Bbuild . -DCMAKE_VERBOSE_MAKEFILE=ON | ||
cmake --build build --config Release | ||
cmake --build build --config Release --target install |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters