forked from mixxxdj/mixxx
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of [email protected]:mixxxdj/mixxx.git into track-me…
…tadata-sync
- Loading branch information
Showing
150 changed files
with
73,645 additions
and
74,068 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
#[=======================================================================[.rst: | ||
FindJACK | ||
-------- | ||
Finds the JACK Audio Connection Kit library. | ||
Imported Targets | ||
^^^^^^^^^^^^^^^^ | ||
This module provides the following imported targets, if found: | ||
``JACK::jack`` | ||
The JACK library | ||
#]=======================================================================] | ||
|
||
# Prefer finding the libraries from pkgconfig rather than find_library. This is | ||
# required to build with PipeWire's reimplementation of the JACK library. | ||
# | ||
# This also enables using PortAudio with the jack2 port in vcpkg. That only | ||
# builds JackWeakAPI (not the JACK server) which dynamically loads the real | ||
# JACK library and forwards API calls to it. JackWeakAPI requires linking `dl` | ||
# in addition to jack, as specified in the pkgconfig file in vcpkg. | ||
find_package(PkgConfig QUIET) | ||
if(PkgConfig_FOUND) | ||
pkg_check_modules(JACK jack) | ||
else() | ||
find_library(JACK_LINK_LIBRARIES | ||
NAMES jack | ||
DOC "JACK library" | ||
) | ||
find_path(JACK_INCLUDEDIR | ||
NAMES jack/jack.h | ||
DOC "JACK header" | ||
) | ||
endif() | ||
|
||
if(WIN32) | ||
# vcpkg provides CMake targets for pthreads4w | ||
# This won't work if pthreads4w was built without vcpkg. | ||
find_package(pthreads REQUIRED) | ||
list(APPEND JACK_LINK_LIBRARIES PThreads4W::PThreads4W) | ||
endif() | ||
|
||
include(FindPackageHandleStandardArgs) | ||
find_package_handle_standard_args( | ||
JACK | ||
DEFAULT_MSG | ||
JACK_LINK_LIBRARIES | ||
JACK_INCLUDEDIR | ||
) | ||
|
||
if(JACK_FOUND AND NOT TARGET JACK::jack) | ||
add_library(JACK::jack INTERFACE IMPORTED) | ||
target_link_libraries(JACK::jack INTERFACE "${JACK_LINK_LIBRARIES}") | ||
target_include_directories(JACK::jack INTERFACE "${JACK_INCLUDEDIR}") | ||
endif() |
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,2 +1,2 @@ | ||
2.3-j00026-0b1209e3-osx10.12-x86_64-release | ||
1b9ed64629fbf9bc6cf466840943588029594a649b0674ee347513f4bc677b8b | ||
mixxx-deps-2.4-x64-osx-b124ddc | ||
dd63757c35f861770413cc7537343d4dc930348d8074e6485458111f834c80de |
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 +1 @@ | ||
mixxx-deps-2.3-x64-windows-049b5ad | ||
mixxx-deps-2.4-x64-windows-b124ddc |
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.