-
Notifications
You must be signed in to change notification settings - Fork 350
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
External: Upgrade googletest, openal-soft, freetype, cxxopts, ogg, vo…
…rbis, nanosvg, scope-lite and rapidjson
- Loading branch information
1 parent
67a3afd
commit baab148
Showing
24 changed files
with
86 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
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 |
---|---|---|
@@ -1,6 +1,8 @@ | ||
UpdateExternalLib("cxxopts" "https://github.com/jarro2783/cxxopts.git" "302302b30839505703d37fb82f536c53cf9172fa") | ||
UpdateExternalLib("cxxopts" "https://github.com/jarro2783/cxxopts.git" "eb787304d67ec22f7c3a184ee8b4c481d04357fd") | ||
|
||
set(CXXOPTS_BUILD_EXAMPLES OFF CACHE BOOL "" FORCE) | ||
set(CXXOPTS_BUILD_TESTS OFF CACHE BOOL "" FORCE) | ||
set(CXXOPTS_ENABLE_INSTALL OFF CACHE BOOL "" FORCE) | ||
set(CXXOPTS_USE_UNICODE_HELP OFF CACHE BOOL "" FORCE) | ||
|
||
add_subdirectory(cxxopts) | ||
add_subdirectory(cxxopts EXCLUDE_FROM_ALL) |
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 was deleted.
Oops, something went wrong.
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
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 @@ | ||
UpdateExternalLib("ogg" "https://github.com/xiph/ogg.git" "e1774cd77f471443541596e09078e78fdc342e4f") | ||
|
||
SET(BUILD_SHARED_LIBS OFF CACHE BOOL "" FORCE) | ||
SET(BUILD_TESTING OFF CACHE BOOL "" FORCE) | ||
SET(BUILD_FRAMEWORK OFF CACHE BOOL "" FORCE) | ||
set(INSTALL_DOCS OFF CACHE BOOL "" FORCE) | ||
set(INSTALL_PKG_CONFIG_MODUL OFF CACHE BOOL "" FORCE) | ||
set(INSTALL_CMAKE_PACKAGE_MODULE OFF CACHE BOOL "" FORCE) | ||
|
||
add_subdirectory(ogg EXCLUDE_FROM_ALL) | ||
|
||
SET_TARGET_PROPERTIES(ogg PROPERTIES | ||
FOLDER "Externals/ogg" | ||
) |
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 |
---|---|---|
@@ -1,8 +1,8 @@ | ||
UpdateExternalLib("scope-lite" "https://github.com/martinmoene/scope-lite.git" "9adce0d39e0e0d3f3d370a523cb33a057af8c91c") | ||
UpdateExternalLib("scope-lite" "https://github.com/martinmoene/scope-lite.git" "59ecb62742d371d9347a2c2c6b0baeb98d683b6d") | ||
|
||
set(SCOPE_LITE_OPT_BUILD_EXAMPLES OFF CACHE BOOL "" FORCE) | ||
set(SCOPE_LITE_OPT_BUILD_TESTS OFF CACHE BOOL "" FORCE) | ||
set(SCOPE_LITE_OPT_SELECT_NONSTD ON CACHE BOOL "" FORCE) | ||
set(SCOPE_LITE_OPT_SELECT_STD OFF CACHE BOOL "" FORCE) | ||
|
||
add_subdirectory(scope-lite) | ||
add_subdirectory(scope-lite EXCLUDE_FROM_ALL) |
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 @@ | ||
UpdateExternalLib("vorbis" "https://github.com/xiph/vorbis.git" "0657aee69dec8508a0011f47f3b69d7538e9d262") | ||
|
||
SET(BUILD_SHARED_LIBS OFF CACHE BOOL "" FORCE) | ||
SET(BUILD_FRAMEWORK OFF CACHE BOOL "" FORCE) | ||
set(INSTALL_CMAKE_PACKAGE_MODULE OFF CACHE BOOL "" FORCE) | ||
|
||
# To make libvorbis enable to find libogg | ||
set(CMAKE_DISABLE_FIND_PACKAGE_Ogg FALSE CACHE BOOL "" FORCE) | ||
set(OGG_INCLUDE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/../ogg/ogg/include") | ||
set(OGG_LIBRARY ogg) | ||
add_library(Ogg::ogg ALIAS ogg) | ||
|
||
add_subdirectory(vorbis EXCLUDE_FROM_ALL) | ||
|
||
set_target_properties("vorbis" "vorbisfile" "vorbisenc" PROPERTIES FOLDER "Externals/vorbis") |
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
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
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