aboutsummaryrefslogtreecommitdiffstats
path: root/cmake
Commit message (Collapse)AuthorAgeFilesLines
* Bug 1417 - Android: OpenAL-Soft toolchain.android.cmake: ANDROID_API_LEVEL ↵Sven Gothel2019-12-251-5/+9
| | | | | | | | | | | | [21..22] only, link against c++_static! NDK >= r19 using API > 22: 'U __register_atfork' __register_atfork; # introduced=23 See <https://github.com/android/ndk/issues/964> libc++_shared.so is not provided on device, either link statically or deploy the shared library. We link statically now.
* Bug 1417 - Android: OpenAL-Soft toolchain.android.cmake cleanup and NDK r20 ↵Sven Gothel2019-12-241-133/+136
| | | | | | | | adoption llvm: clang libc++ All properties are now aligned with gluegen/make/scripts/setenv-android-tools.sh. User must set ANDROID_NDK, ANDROID_HOST_TAG, ANDROID_API_LEVEL and one of NDK_CPU_X86_64, NDK_CPU_X86, NDK_CPU_ARM64, NDK_CPU_ARM_V7A, NDK_CPU_ARM.
* merge v1.20.0Sven Gothel2019-12-126-145/+155
|\
| * Remove large file macrosChris Robinson2019-09-222-48/+0
| | | | | | | | | | Large file offsets aren't being utilized, and C++ seems to use to 64-bit offsets anyway.
| * Enable to detect Windows SDK v1903Minmin Gong2019-08-091-9/+10
| |
| * Fix OpenSL library nameChris Robinson2019-07-101-1/+1
| |
| * Get rid of the custom CHECK_SHARED_FUNCTION_EXISTS functionChris Robinson2019-07-101-92/+0
| |
| * Use a find module for OpenSLChris Robinson2019-07-101-0/+64
| |
| * Fix building makehrtf and sofa-info on WindowsChris Robinson2019-01-221-2/+23
| |
| * Add a FindMySOFA cmake moduleChris Robinson2019-01-211-0/+60
| |
| * Update FindWindowsSDK.cmakewangwenx1902018-11-271-4/+4
| |
| * Update FindWindowsSDK.cmakewangwenx1902018-11-271-0/+4
| | | | | | Support latest Win10 SDK.
* | Skip native build time executables when crosscompiling; Fix aarch64 + ↵Sven Gothel2019-04-082-6/+18
| | | | | | | | armv6hf toolchain files
* | Merge branch 'v1.19' of git://repo.or.cz/openal-soft into v1.19v1.19Sven Gothel2019-04-076-24/+672
|\|
| * Don't cache SDL2_LIBRARY_TEMP with CMakeChris Robinson2018-03-291-11/+9
| | | | | | | | | | Otherwise it keeps prepending and appending the same extra libs and flags with each invocation.
| * Handle libossaudio as an optional OSS libraryChris Robinson2017-09-151-1/+13
| |
| * Don't require SDL_sound for alffplayChris Robinson2017-02-111-0/+6
| | | | | | | | Also explicitly link with libz for alffplay, since static ffmpeg libs need it.
| * Update cmake scripts to handle policy 0054Chris Robinson2016-11-221-2/+2
| |
| * fixed minor check in FindDSound.cmakeseptag2016-11-031-4/+6
| |
| * Added cmake FindWindowsSDK for FindDSound module and fixed FindDSound.cmakeseptag2016-11-032-53/+639
| |
| * Added cmake support for dsound and windows 8/10 SDKsseptag2016-10-301-8/+52
| |
* | Bug 1190: Updating glibc-compat-symbols.h ; Fix armv6hf + adding aarch64 ↵Sven Gothel2019-04-073-10/+24
| | | | | | | | | | | | | | cmake options Note armv6hf won't compile through due to some neon inline argument mismatch errors. aarch64 did produce a native library, despite tons of warnings.
* | Merge branch 'UPSTREAM'Sven Gothel2015-11-127-197/+337
|\|
| * Remove the MIDI codeChris Robinson2015-10-201-19/+0
| | | | | | | | | | | | | | The extension's not going anywhere, and it can't do anything fluidsynth can't. The code maintenance and bloat is not worth keeping around, and ideally the AL API would be able to facilitate MIDI-like behavior anyway (envelopes, start-at- time, etc).
| * Search more aggressively for libs needed by SDL_soundChris Robinson2015-09-301-169/+218
| |
| * Add a cmake module to find JACKChris Robinson2014-12-211-0/+60
| |
| * Use the current binary dir for shared function checks tooChris Robinson2014-08-201-7/+7
| |
| * Use directories relative to current project in CheckFileOffsetBits.cmakeJesper Särnesjö2014-08-201-4/+4
| | | | | | | | Enables building OpenAL Soft in a subdirectory of another project.
| * Search for the correct include and lib directories for the DX SDKChris Robinson2014-08-151-2/+4
| | | | | | | | And only set them when needed.
| * Enable large file supportChris Robinson2014-08-052-0/+48
| |
* | Fix Android ARM64 Support (commit 83ea6a37435296758d492d8be594ca1fb54acdcb)Sven Gothel2015-07-131-5/+29
| | | | | | | | | | | | | | | | | | For an unknown reason, passing '-Wl,--fix-cortex-a8' to LINKER_FLAGS directly in the dead else branch ('NDK_CPU_ARM64' is 'ON') causes its usage when issuing 'try_compile'. Hence we pass these flags via ARM32_LINKER_OPTS and ARM64_LINKER_OPTS via invocation (JOAL's ant build.xml).
* | cmake/clang: Keep using clang; OSX: -mmacosx-version-min=10.5; Inject ↵Sven Gothel2015-07-112-5/+32
| | | | | | | | additional architectures for fat-binary (macosx)
* | Add Android ARM64 SupportSven Gothel2015-07-111-13/+30
| |
* | glibc-compat-symbols.h: Disable warning for not supported ↵Sven Gothel2014-06-111-1/+1
| | | | | | | | GLIBC_COMPAT_SYMBOL, since included even for OSX
* | Fix glibc-compat-symbols.h: for 32bit use GLIBC 2.0 ; Distinguish clang and gcc.Sven Gothel2014-06-101-8/+21
| |
* | CMake: Don't use CMAKE_TOOLCHAIN_FILE for non-crosscompilation, use ↵Sven Gothel2014-06-104-4/+6
| | | | | | | | OPENAL_CUSTOM_CONFIG to inject cmake commands
* | Merge branch 'UPSTREAM' into UPSTREAM_MERGESven Gothel2014-06-1012-292/+941
|\|
| * Add an ffmpeg-based example playerChris Robinson2014-06-021-0/+173
| | | | | | | | | | | | This example shows proper timing and A/V synchronization with an OpenAL stream. Requires the in-progress AL_SOFTX_source_length extension to avoid manually keeping track of the buffer queue length.
| * Update the examples to use SDL2Chris Robinson2014-05-232-286/+477
| | | | | | | | | | | | This should make it easier to build the examples on 64-bit, where there are no premade dev libs for SDL1 on 64-bit mingw. FindSDL_sound.cmake has been updated to accept SDL or SDL2.
| * Don't mix old- and new-style FIND_PACKAGE_HANDLE_STANDARD_ARGS callsChris Robinson2014-05-101-6/+2
| | | | | | | | | | | | | | Some (all?) versions of cmake seem to get a bit confused when an old-style FIND_PACKAGE_HANDLE_STANDARD_ARGS call fails, and the scripts attempt a new- style call later on. It continues to think it's using old-style, acting as if REQUIRED_VARS is the message and looks for a VERSION_VAR variable.
| * Include FindALSA.cmakeChris Robinson2014-04-231-0/+73
| | | | | | | | Older versions of CMake don't seem to have it.
| * Use a find module to look for DirectSoundChris Robinson2014-04-191-0/+33
| |
| * Use find cmake modules for more backendsChris Robinson2014-04-196-0/+183
| |
* | cmake/toolchain.android.cmake: Add CXX_FLAGS and add ↵Sven Gothel2014-02-151-1/+3
| | | | | | | | -I${ANDROID_NDK_SYSROOT}/usr/include
* | cmake/toolchain*: Add CXX_FLAGSSven Gothel2014-02-156-6/+12
| |
* | Merge branch 'UPSTREAM'Sven Gothel2014-01-263-59/+405
|\|
| * Add an option for FLuidSynth to handle MIDIChris Robinson2013-11-281-0/+23
| |
| * Add a custom FindSDL_sound cmake moduleChris Robinson2013-06-051-0/+382
| | | | | | | | | | | | The one that comes with CMake is broken, incorrectly setting SDL_SOUND_LIBRARIES, causing warnings, and not even working if the project is C only.
| * Don't use a custom CheckCCompilerFlag.cmakeChris Robinson2013-03-131-59/+0
| |
* | Add clang cmake.toolchain macros; Fix glibc-compat-symbols.h to work w/ ↵Sven Gothel2013-09-133-6/+44
| | | | | | | | clang (nop)