-
Notifications
You must be signed in to change notification settings - Fork 12
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 #108 from fallahn/golf-1.16
Golf 1.16
- Loading branch information
Showing
160 changed files
with
14,045 additions
and
1,873 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,3 +12,6 @@ imgui.ini | |
|
||
build/ | ||
bundle/ | ||
install/ | ||
|
||
assets |
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,54 @@ | ||
# - FindOpus.cmake | ||
# Find the native opus includes and libraries | ||
# | ||
# OPUS_INCLUDE_DIRS - where to find opus/opus.h, etc. | ||
# OPUS_LIBRARIES - List of libraries when using libopus(file). | ||
# OPUS_FOUND - True if libopus found. | ||
|
||
if(OPUS_INCLUDE_DIR AND OPUS_LIBRARY) | ||
# Already in cache, be silent | ||
set(OPUS_FIND_QUIETLY TRUE) | ||
endif(OPUS_INCLUDE_DIR AND OPUS_LIBRARY) | ||
|
||
|
||
SET(SEARCH_PATHS | ||
~/Library/Frameworks | ||
/Library/Frameworks | ||
/usr/local | ||
/usr | ||
/sw # Fink | ||
/opt/homebrew | ||
/opt/local # DarwinPorts | ||
/opt/csw # Blastwave | ||
/opt | ||
../extlibs/opus | ||
../extlibs/opus/include | ||
../extlibs/opus/lib/x64 | ||
) | ||
|
||
|
||
find_path(OPUS_INCLUDE_DIR | ||
NAMES opus.h | ||
PATH_SUFFIXES opus | ||
PATHS ${SEARCH_PATHS} | ||
) | ||
|
||
# MSVC built opus may be named opus_static | ||
# The provided project files name the library with the lib prefix. | ||
find_library(OPUS_LIBRARY | ||
NAMES opus opus_static libopus libopus_static | ||
PATHS ${SEARCH_PATHS} | ||
) | ||
|
||
|
||
# Handle the QUIETLY and REQUIRED arguments and set OPUS_FOUND | ||
# to TRUE if all listed variables are TRUE. | ||
include(FindPackageHandleStandardArgs) | ||
find_package_handle_standard_args(OPUS DEFAULT_MSG | ||
OPUS_LIBRARY OPUS_INCLUDE_DIR | ||
) | ||
|
||
if(OPUS_FOUND) | ||
set(OPUS_LIBRARIES ${OPUS_LIBRARY}) | ||
set(OPUS_INCLUDE_DIRS ${OPUS_INCLUDE_DIR}) | ||
endif(OPUS_FOUND) |
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
Oops, something went wrong.