aboutsummaryrefslogtreecommitdiffstats
path: root/CMakeLists.txt
Commit message (Collapse)AuthorAgeFilesLines
...
| * Remove unnecessary use of SDL2_INCLUDE_DIRChris Robinson2022-11-161-2/+0
| |
| * Use SDL2's sdl2-config.cmakeChris Robinson2022-11-161-8/+11
| | | | | | | | Instead of our own custom FindSDL2.cmake
| * Avoid unnecessary duplicate CMake variablesChris Robinson2022-11-161-2/+2
| | | | | | | | | | This should make FindPulseAudio.cmake more compatible with PulseAudio's own PulseAudioConfig.cmake.
| * tvos support (#762)Paulo Coutinho2022-09-041-1/+1
| |
| * More updates for making an OSX frameworkChris Robinson2022-08-281-2/+3
| |
| * Fix OSX framework versionsChris Robinson2022-08-281-2/+2
| |
| * Don't include the full path for frameworks to linkChris Robinson2022-08-211-4/+7
| |
| * Update alffplay to support newer ffmpeg versionsChris Robinson2022-08-201-10/+10
| |
| * Fix building on some MinGW systemsChris Robinson2022-07-081-1/+1
| | | | | | | | | | | | Some systems don't like having a space in the export declaration, with windres interpreting the extra attributes as input files. GCC seems to accept the attributes being "packed" together, which avoids the problem with windres.
| * Release 1.22.2Chris Robinson2022-06-271-1/+1
| |
| * Release 1.22.1Chris Robinson2022-06-201-1/+1
| |
| * Set policies to exclude /W3 and /GR on MSVCChris Robinson2022-06-151-9/+8
| | | | | | | | We set /W4, and /GR is the default.
| * Search for Oboe config modules firstChris Robinson2022-06-011-2/+5
| |
| * [EAX] Add separate effect state for each version (#705)Boris I. Bendovsky2022-05-241-4/+2
| | | | | | | | | | * [EAX] Add separate effect state for each version * [EAX] Don't use EAX call as data member
| * Move EAX files to their own sub-directoryChris Robinson2022-05-161-18/+18
| |
| * Fix pkg-config file when libdir/bindir/includedir specified as absolute ↵ilya-fedin2022-05-131-3/+3
| | | | | | | | | | | | | | paths (#696) Currently it makes the pkg-config file unusable as prefix is specified twice. FULL variables do the necessary parsing and automatically prepend the prefix if needed.
| * Search the installation data directory (#693)ilya-fedin2022-05-131-0/+5
| | | | | | That allows the logic to work on non-FHS distros like NixOS
| * Don't enable RTKit/D-Bus support on WindowsChris Robinson2022-05-091-30/+33
| |
| * Check for a minimum PipeWire versionChris Robinson2022-04-271-1/+1
| | | | | | | | | | | | The backend is apparently using some stuff that wasn't in earlier headers, but it's not clear what was introduced in which versions. 0.3.23 should work, though it may need to be higher or it could go a bit lower.
| * Fallback to pkg-config for dbus (#689)ilya-fedin2022-04-251-2/+11
| |
| * Release 1.22.0Chris Robinson2022-04-221-2/+2
| |
| * Be more careful about checking compiler flagsChris Robinson2022-03-231-15/+15
| | | | | | | | | | Certain combinations of MSVC and CMake seem to allow all compiler flag checks to pass, which was causing certain GCC attributes to be used on MSVC.
| * Use function overloading to handle pthread_setname_np differencesChris Robinson2022-02-231-40/+0
| |
| * Add a OpenAL::OpenAL cmake target aliasChris Robinson2022-02-221-0/+3
| | | | | | | | For when built as a sub-project, to clarify it's a target instead of a library.
| * Clean up some cmake output formattingChris Robinson2022-02-221-13/+13
| |
| * Rename deprecated -> legacyChris Robinson2022-02-141-7/+2
| |
| * Don't use a generator expression in a CMake optionChris Robinson2022-02-141-1/+1
| |
| * Don't search for __android_log_print on non-Android targetsChris Robinson2022-02-031-5/+7
| | | | | | | | | | | | For some reason this check is passing on iOS, causing the build to later fail because it can't find -llog. Need to investigate why it finds something that doesn't exist, but this should fix the build error in the mean time.
| * Output a message when EAX is enabled in CMakeChris Robinson2022-02-011-0/+5
| |
| * Output a message when EAX is enabled in CMakeChris Robinson2022-01-301-0/+5
| |
| * Move ALSOFT_EAX definition to config.hChris Robinson2022-01-301-3/+1
| | | | | | | | And disable it by default for non-Windows targets
| * Add EAX extensions (EAX 2.0-5.0, X-RAM) (#632)Boris I. Bendovsky2022-01-301-0/+30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add EAX extensions (EAX 2.0-5.0, X-RAM) * Comment out C++17 leftovers * Remove everything related to patching * Update alsoftrc.sample * Rewrite integration * Fix GCC compilation under Linux * Always reset EAX effect properties when loading it into FX slot
| * Remove math_defs.hChris Robinson2022-01-271-1/+0
| |
| * Start and use a standard-like numbers headerChris Robinson2022-01-271-0/+1
| |
| * Fix non-runtime linking with pipewireChris Robinson2021-12-251-1/+2
| |
| * Move the effects base and effectslot to coreChris Robinson2021-12-171-2/+3
| |
| * Disable MSVC warning 4127Chris Robinson2021-11-081-1/+1
| | | | | | | | | | | | | | "conditional expression is constant", which C++14 can't do anything about since 'if constexpr' was added in C++17. The checks are necessary since it's dealing with a templatized type, or a compile-time non-macro constant for the target system's endian order.
| * Always define NOMINMAX on WindowsChris Robinson2021-08-231-2/+2
| | | | | | | | Clang needs it too, not just MSVC, and it doesn't seem to hurt MinGW.
| * Start a PipeWire backendChris Robinson2021-08-021-0/+21
| | | | | | | | It's just a copy of the Null backend to start with
| * Still print a warning when DBus or Qt5 aren't foundChris Robinson2021-07-171-0/+13
| | | | | | | | | | | | | | | | This way merely avoids the several lines of spam when the config module isn't found, which there's otherwise no reasonable way to test for since they're provided by the package, which you need to use find_package to search for, which causes the spam. It's still useful to report the packages weren't found in case they were expected.
| * Silence searching for Qt5Chris Robinson2021-07-171-1/+1
| |
| * CMakeLists: add QUIET to Dbus1 find_package()Nick (nift4)2021-07-171-1/+1
| | | | | | * Android doesn't have dbus, logspam is annoying
| * Add a utility to encode audio files to UHJChris Robinson2021-07-091-0/+8
| |
| * Make OpenALConfig.cmake compatible with CMake's FindOpenAL.cmake (#581)Anonymous Maarten2021-07-061-4/+12
| | | | | | | | | | | | | | * Make OpenALConfig.cmake compatible with CMake's FindOpenAL.cmake * Create and install OpenALConfigVersion.cmake * cmake: drop creating of OpenALConfigVersion.cmake
| * Merge pull request #564 from halx99/patch-1kcat2021-05-131-1/+3
| |\ | | | | | | Improve cmake to handle tvOS
| | * Update CMakeLists.txtHALX992021-05-131-1/+3
| | |
| * | Merge pull request #559 from tatokis/split-sse-sse2kcat2021-05-131-8/+17
| |\ \ | | |/ | |/| Allow enabling SSE without SSE2
| | * Allow enabling SSE without SSE2Tasos Sahanidis2021-04-301-8/+17
| | |
| * | Update some comments in CMakeChris Robinson2021-05-131-6/+7
| | |
| * | Fix check_include_file return unexpected result (#563)HALX992021-05-131-8/+8
| | | | | | | | | Don't overwrite existing CMAKE_TRY_COMPILE_PLATFORM_VARIABLES values.