cmake issues
parent
3857ab49e9
commit
28695aa4eb
@ -0,0 +1,252 @@
|
||||
cmake_minimum_required(VERSION 3.11)
|
||||
|
||||
set(LIBNYQUIST_ROOT "${CMAKE_CURRENT_SOURCE_DIR}")
|
||||
|
||||
set(CMAKE_MODULE_PATH ${LIBNYQUIST_ROOT}/cmake)
|
||||
|
||||
include(CXXhelpers)
|
||||
|
||||
option(BUILD_EXAMPLE "Build example application" ON)
|
||||
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
# libopus
|
||||
|
||||
project(libopus)
|
||||
|
||||
file(GLOB third_opus_src
|
||||
"${LIBNYQUIST_ROOT}/third_party/opus/celt/*.c"
|
||||
"${LIBNYQUIST_ROOT}/third_party/opus/libopus/src/*.c"
|
||||
"${LIBNYQUIST_ROOT}/third_party/opus/opusfile/src/*.c"
|
||||
"${LIBNYQUIST_ROOT}/third_party/opus/silk/*.c"
|
||||
"${LIBNYQUIST_ROOT}/third_party/opus/silk/float/*.c"
|
||||
)
|
||||
|
||||
add_library(libopus STATIC ${third_opus_src})
|
||||
|
||||
set_cxx_version(libopus)
|
||||
_set_compile_options(libopus)
|
||||
|
||||
if (WIN32)
|
||||
_disable_warning(4244)
|
||||
_disable_warning(4018)
|
||||
endif()
|
||||
|
||||
target_include_directories(libopus PRIVATE
|
||||
${LIBNYQUIST_ROOT}/third_party/libogg/include
|
||||
${LIBNYQUIST_ROOT}/third_party/opus/celt
|
||||
${LIBNYQUIST_ROOT}/third_party/opus/libopus/include
|
||||
${LIBNYQUIST_ROOT}/third_party/opus/opusfile/include
|
||||
${LIBNYQUIST_ROOT}/third_party/opus/opusfile/src/include
|
||||
${LIBNYQUIST_ROOT}/third_party/opus/silk
|
||||
${LIBNYQUIST_ROOT}/third_party/opus/silk/float)
|
||||
|
||||
if (MSVC_IDE)
|
||||
# hack to get around the "Debug" and "Release" directories cmake tries to add on Windows
|
||||
#set_target_properties(libnyquist PROPERTIES PREFIX "../")
|
||||
set_target_properties(libopus PROPERTIES IMPORT_PREFIX "../")
|
||||
endif()
|
||||
|
||||
target_compile_definitions(libopus PRIVATE OPUS_BUILD)
|
||||
target_compile_definitions(libopus PRIVATE USE_ALLOCA)
|
||||
|
||||
set_target_properties(libopus
|
||||
PROPERTIES
|
||||
LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib"
|
||||
ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/bin"
|
||||
RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/bin"
|
||||
)
|
||||
|
||||
set_target_properties(libopus PROPERTIES OUTPUT_NAME_DEBUG libopus_d)
|
||||
|
||||
install (TARGETS libopus
|
||||
LIBRARY DESTINATION lib
|
||||
ARCHIVE DESTINATION lib
|
||||
RUNTIME DESTINATION bin)
|
||||
|
||||
install (TARGETS libopus DESTINATION lib)
|
||||
|
||||
# folders
|
||||
|
||||
source_group(src\ FILES ${third_opus_src})
|
||||
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
# libwavpack
|
||||
|
||||
project(libwavpack)
|
||||
|
||||
if(MSVC)
|
||||
# Disable warning C4996 regarding fopen(), strcpy(), etc.
|
||||
_add_define("_CRT_SECURE_NO_WARNINGS")
|
||||
|
||||
# Disable warning C4996 regarding unchecked iterators for std::transform,
|
||||
# std::copy, std::equal, et al.
|
||||
_add_define("_SCL_SECURE_NO_WARNINGS")
|
||||
|
||||
# Make sure WinDef.h does not define min and max macros which
|
||||
# will conflict with std::min() and std::max().
|
||||
_add_define("NOMINMAX")
|
||||
endif()
|
||||
|
||||
add_definitions(${_NQR_CXX_DEFINITIONS})
|
||||
set(CMAKE_CXX_FLAGS "${_NQR_CXX_FLAGS} ${CMAKE_CXX_FLAGS}")
|
||||
|
||||
file(GLOB third_wavpack_src "${LIBNYQUIST_ROOT}/third_party/wavpack/src/*")
|
||||
|
||||
add_library(libwavpack STATIC ${third_wavpack_src})
|
||||
|
||||
set_cxx_version(libwavpack)
|
||||
_set_compile_options(libwavpack)
|
||||
|
||||
if (WIN32)
|
||||
_disable_warning(181)
|
||||
_disable_warning(111)
|
||||
_disable_warning(4267)
|
||||
_disable_warning(4996)
|
||||
_disable_warning(4244)
|
||||
_disable_warning(4701)
|
||||
_disable_warning(4702)
|
||||
_disable_warning(4133)
|
||||
_disable_warning(4100)
|
||||
_disable_warning(4127)
|
||||
_disable_warning(4206)
|
||||
_disable_warning(4312)
|
||||
_disable_warning(4505)
|
||||
_disable_warning(4365)
|
||||
_disable_warning(4005)
|
||||
_disable_warning(4013)
|
||||
_disable_warning(4334)
|
||||
_disable_warning(4703)
|
||||
endif()
|
||||
|
||||
target_include_directories(libwavpack PRIVATE ${LIBNYQUIST_ROOT}/third_party/wavpack/include)
|
||||
|
||||
if (MSVC_IDE)
|
||||
set_target_properties(libwavpack PROPERTIES IMPORT_PREFIX "../")
|
||||
endif()
|
||||
|
||||
set_target_properties(libwavpack
|
||||
PROPERTIES
|
||||
LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib"
|
||||
ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/bin"
|
||||
RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/bin"
|
||||
)
|
||||
|
||||
set_target_properties(libwavpack PROPERTIES OUTPUT_NAME_DEBUG libwavpack_d)
|
||||
|
||||
install(TARGETS libwavpack
|
||||
LIBRARY DESTINATION lib
|
||||
ARCHIVE DESTINATION lib
|
||||
RUNTIME DESTINATION bin)
|
||||
|
||||
install (TARGETS libwavpack DESTINATION lib)
|
||||
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
# libnyquist static library
|
||||
|
||||
project(libnyquist)
|
||||
|
||||
file(GLOB nyquist_include "${LIBNYQUIST_ROOT}/include/libnyquist/*")
|
||||
file(GLOB nyquist_src "${LIBNYQUIST_ROOT}/src/*")
|
||||
file(GLOB wavpack_src "${LIBNYQUIST_ROOT}/third_party/wavpack/src/*")
|
||||
|
||||
add_library(libnyquist STATIC
|
||||
${nyquist_include}
|
||||
${nyquist_src}
|
||||
)
|
||||
|
||||
set_cxx_version(libnyquist)
|
||||
_set_compile_options(libnyquist)
|
||||
|
||||
if (WIN32)
|
||||
target_compile_definitions(libnyquist PRIVATE MODPLUG_STATIC)
|
||||
_disable_warning(4244)
|
||||
_disable_warning(4018)
|
||||
endif()
|
||||
|
||||
target_include_directories(libnyquist PRIVATE
|
||||
${LIBNYQUIST_ROOT}/include
|
||||
${LIBNYQUIST_ROOT}/include/libnyquist
|
||||
${LIBNYQUIST_ROOT}/third_party
|
||||
${LIBNYQUIST_ROOT}/third_party/FLAC/src/include
|
||||
${LIBNYQUIST_ROOT}/third_party/libogg/include
|
||||
${LIBNYQUIST_ROOT}/third_party/libvorbis/include
|
||||
${LIBNYQUIST_ROOT}/third_party/libvorbis/src
|
||||
${LIBNYQUIST_ROOT}/third_party/musepack/include
|
||||
${LIBNYQUIST_ROOT}/third_party/opus/celt
|
||||
${LIBNYQUIST_ROOT}/third_party/opus/libopus/include
|
||||
${LIBNYQUIST_ROOT}/third_party/opus/opusfile/include
|
||||
${LIBNYQUIST_ROOT}/third_party/opus/opusfile/src/include
|
||||
${LIBNYQUIST_ROOT}/third_party/opus/silk
|
||||
${LIBNYQUIST_ROOT}/third_party/opus/silk/float
|
||||
${LIBNYQUIST_ROOT}/third_party/wavpack/include
|
||||
${LIBNYQUIST_ROOT}/src
|
||||
)
|
||||
|
||||
if (MSVC_IDE)
|
||||
# hack to get around the "Debug" and "Release" directories cmake tries to add on Windows
|
||||
#set_target_properties(libnyquist PROPERTIES PREFIX "../")
|
||||
set_target_properties(libnyquist PROPERTIES IMPORT_PREFIX "../")
|
||||
endif()
|
||||
|
||||
set_target_properties(libnyquist PROPERTIES OUTPUT_NAME_DEBUG libnyquist_d)
|
||||
|
||||
set_target_properties(libnyquist
|
||||
PROPERTIES
|
||||
LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib"
|
||||
ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/bin"
|
||||
RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/bin"
|
||||
)
|
||||
|
||||
#target_link_libraries(libnyquist libopus libwavpack)
|
||||
|
||||
install(TARGETS libnyquist
|
||||
LIBRARY DESTINATION lib
|
||||
ARCHIVE DESTINATION lib
|
||||
RUNTIME DESTINATION bin)
|
||||
|
||||
install(TARGETS libnyquist DESTINATION lib)
|
||||
|
||||
# folders
|
||||
source_group(src\ FILES ${nyquist_src})
|
||||
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
# libnyquist-examples
|
||||
|
||||
if(BUILD_EXAMPLE)
|
||||
|
||||
set(NQR_EXAMPLE_APP_NAME "libnyquist-examples")
|
||||
|
||||
set(
|
||||
EXAMPLE_SOURCES
|
||||
${LIBNYQUIST_ROOT}/examples/src/Main.cpp
|
||||
${LIBNYQUIST_ROOT}/examples/src/AudioDevice.cpp
|
||||
${LIBNYQUIST_ROOT}/examples/src/AudioDevice.h
|
||||
${LIBNYQUIST_ROOT}/examples/src/RingBuffer.h
|
||||
${LIBNYQUIST_ROOT}/third_party/rtaudio/RtAudio.cpp
|
||||
${LIBNYQUIST_ROOT}/third_party/rtaudio/RtAudio.h
|
||||
)
|
||||
|
||||
add_executable(${NQR_EXAMPLE_APP_NAME} ${EXAMPLE_SOURCES})
|
||||
|
||||
target_include_directories(${NQR_EXAMPLE_APP_NAME} PRIVATE
|
||||
${LIBNYQUIST_ROOT}/include
|
||||
${LIBNYQUIST_ROOT}/examples/src
|
||||
${LIBNYQUIST_ROOT}/third_party
|
||||
)
|
||||
|
||||
set_target_properties(${NQR_EXAMPLE_APP_NAME}
|
||||
PROPERTIES
|
||||
LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib"
|
||||
ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/bin"
|
||||
RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/bin"
|
||||
)
|
||||
|
||||
#target_link_libraries(${NQR_EXAMPLE_APP_NAME} PUBLIC "libnyquist" libopus libwavpack)
|
||||
|
||||
add_dependencies(${NQR_EXAMPLE_APP_NAME} "libnyquist" libopus libwavpack)
|
||||
|
||||
endif()
|
||||
@ -0,0 +1,24 @@
|
||||
|
||||
function(_add_define definition)
|
||||
list(APPEND _NQR_CXX_DEFINITIONS "-D${definition}")
|
||||
set(_NQR_CXX_DEFINITIONS ${_NQR_CXX_DEFINITIONS} PARENT_SCOPE)
|
||||
endfunction()
|
||||
|
||||
function(_disable_warning flag)
|
||||
if(MSVC)
|
||||
list(APPEND _NQR_CXX_WARNING_FLAGS "/wd${flag}")
|
||||
else()
|
||||
list(APPEND _NQR_CXX_WARNING_FLAGS "-Wno-${flag}")
|
||||
endif()
|
||||
set(_NQR_CXX_WARNING_FLAGS ${_NQR_CXX_WARNING_FLAGS} PARENT_SCOPE)
|
||||
endfunction()
|
||||
|
||||
function(_set_compile_options proj)
|
||||
if (WIN32)
|
||||
target_compile_options(${proj} PRIVATE /arch:AVX /Zi )
|
||||
endif()
|
||||
endfunction()
|
||||
|
||||
function(set_cxx_version proj)
|
||||
target_compile_features(${proj} INTERFACE cxx_std_14)
|
||||
endfunction()
|
||||
@ -1,347 +0,0 @@
|
||||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 46;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
083DB3F11B0871D700FB0661 /* RtAudio.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 083DB3EF1B0871D700FB0661 /* RtAudio.cpp */; };
|
||||
08B91D791AC273A900335131 /* libpthread.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 08B91D781AC273A900335131 /* libpthread.dylib */; };
|
||||
08B91D7B1AC273AE00335131 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 08B91D7A1AC273AE00335131 /* CoreAudio.framework */; };
|
||||
08B91D7D1AC273E400335131 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 08B91D7C1AC273E400335131 /* CoreFoundation.framework */; };
|
||||
08B91D7F1AC273EA00335131 /* CoreServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 08B91D7E1AC273EA00335131 /* CoreServices.framework */; };
|
||||
08B91D9F1AC73B8A00335131 /* Main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 08B91D951AC73B8A00335131 /* Main.cpp */; };
|
||||
08BD8BD61B087097006C227C /* libnyquist.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 08BD8BD51B087097006C227C /* libnyquist.a */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXCopyFilesBuildPhase section */
|
||||
08B91D241AC26FC100335131 /* CopyFiles */ = {
|
||||
isa = PBXCopyFilesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
dstPath = /usr/share/man/man1/;
|
||||
dstSubfolderSpec = 0;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 1;
|
||||
};
|
||||
/* End PBXCopyFilesBuildPhase section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
083DB3EF1B0871D700FB0661 /* RtAudio.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RtAudio.cpp; path = ../third_party/rtaudio/RtAudio.cpp; sourceTree = SOURCE_ROOT; };
|
||||
083DB3F01B0871D700FB0661 /* RtAudio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = RtAudio.h; path = ../third_party/rtaudio/RtAudio.h; sourceTree = SOURCE_ROOT; };
|
||||
08B91D261AC26FC100335131 /* nyquist-example */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = "nyquist-example"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
08B91D781AC273A900335131 /* libpthread.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libpthread.dylib; path = usr/lib/libpthread.dylib; sourceTree = SDKROOT; };
|
||||
08B91D7A1AC273AE00335131 /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreAudio.framework; path = System/Library/Frameworks/CoreAudio.framework; sourceTree = SDKROOT; };
|
||||
08B91D7C1AC273E400335131 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreFoundation.framework; path = System/Library/Frameworks/CoreFoundation.framework; sourceTree = SDKROOT; };
|
||||
08B91D7E1AC273EA00335131 /* CoreServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreServices.framework; path = System/Library/Frameworks/CoreServices.framework; sourceTree = SDKROOT; };
|
||||
08B91D951AC73B8A00335131 /* Main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Main.cpp; path = src/Main.cpp; sourceTree = SOURCE_ROOT; };
|
||||
08BD8BD51B087097006C227C /* libnyquist.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libnyquist.a; path = ../../../Library/Developer/Xcode/DerivedData/bin/Debug/libnyquist.a; sourceTree = "<group>"; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
08B91D231AC26FC100335131 /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
08BD8BD61B087097006C227C /* libnyquist.a in Frameworks */,
|
||||
08B91D7F1AC273EA00335131 /* CoreServices.framework in Frameworks */,
|
||||
08B91D7D1AC273E400335131 /* CoreFoundation.framework in Frameworks */,
|
||||
08B91D7B1AC273AE00335131 /* CoreAudio.framework in Frameworks */,
|
||||
08B91D791AC273A900335131 /* libpthread.dylib in Frameworks */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
083DB3EB1B0871B300FB0661 /* third_party */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
083DB3EF1B0871D700FB0661 /* RtAudio.cpp */,
|
||||
083DB3F01B0871D700FB0661 /* RtAudio.h */,
|
||||
);
|
||||
name = third_party;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
08B91D1D1AC26FC100335131 = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
08B91D281AC26FC100335131 /* Example */,
|
||||
08B91D801AC73B3B00335131 /* Frameworks */,
|
||||
08B91D271AC26FC100335131 /* Products */,
|
||||
);
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
08B91D271AC26FC100335131 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
08B91D261AC26FC100335131 /* nyquist-example */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
08B91D281AC26FC100335131 /* Example */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
08B91D821AC73B6900335131 /* src */,
|
||||
083DB3EB1B0871B300FB0661 /* third_party */,
|
||||
);
|
||||
name = Example;
|
||||
path = libnyquist;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
08B91D801AC73B3B00335131 /* Frameworks */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
08B91D7E1AC273EA00335131 /* CoreServices.framework */,
|
||||
08B91D7C1AC273E400335131 /* CoreFoundation.framework */,
|
||||
08B91D7A1AC273AE00335131 /* CoreAudio.framework */,
|
||||
08B91D781AC273A900335131 /* libpthread.dylib */,
|
||||
08BD8BD51B087097006C227C /* libnyquist.a */,
|
||||
);
|
||||
name = Frameworks;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
08B91D821AC73B6900335131 /* src */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
08B91D951AC73B8A00335131 /* Main.cpp */,
|
||||
);
|
||||
name = src;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
08B91D251AC26FC100335131 /* nyquist-example */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 08B91D2D1AC26FC100335131 /* Build configuration list for PBXNativeTarget "nyquist-example" */;
|
||||
buildPhases = (
|
||||
08B91D221AC26FC100335131 /* Sources */,
|
||||
08B91D231AC26FC100335131 /* Frameworks */,
|
||||
08B91D241AC26FC100335131 /* CopyFiles */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
);
|
||||
name = "nyquist-example";
|
||||
productName = libnyquist;
|
||||
productReference = 08B91D261AC26FC100335131 /* nyquist-example */;
|
||||
productType = "com.apple.product-type.tool";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
08B91D1E1AC26FC100335131 /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
attributes = {
|
||||
LastUpgradeCheck = 0610;
|
||||
ORGANIZATIONNAME = "Dimitri Diakopoulos";
|
||||
TargetAttributes = {
|
||||
08B91D251AC26FC100335131 = {
|
||||
CreatedOnToolsVersion = 6.1.1;
|
||||
};
|
||||
};
|
||||
};
|
||||
buildConfigurationList = 08B91D211AC26FC100335131 /* Build configuration list for PBXProject "libnyquist-example" */;
|
||||
compatibilityVersion = "Xcode 3.2";
|
||||
developmentRegion = English;
|
||||
hasScannedForEncodings = 0;
|
||||
knownRegions = (
|
||||
en,
|
||||
);
|
||||
mainGroup = 08B91D1D1AC26FC100335131;
|
||||
productRefGroup = 08B91D271AC26FC100335131 /* Products */;
|
||||
projectDirPath = "";
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
08B91D251AC26FC100335131 /* nyquist-example */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
08B91D221AC26FC100335131 /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
083DB3F11B0871D700FB0661 /* RtAudio.cpp in Sources */,
|
||||
08B91D9F1AC73B8A00335131 /* Main.cpp in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
08B91D2B1AC26FC100335131 /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
||||
CLANG_CXX_LIBRARY = "libc++";
|
||||
CLANG_ENABLE_MODULES = YES;
|
||||
CLANG_ENABLE_OBJC_ARC = YES;
|
||||
CLANG_WARN_BOOL_CONVERSION = YES;
|
||||
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
||||
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
||||
CLANG_WARN_EMPTY_BODY = YES;
|
||||
CLANG_WARN_ENUM_CONVERSION = YES;
|
||||
CLANG_WARN_INT_CONVERSION = YES;
|
||||
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
||||
CLANG_WARN_UNREACHABLE_CODE = YES;
|
||||
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
||||
COPY_PHASE_STRIP = NO;
|
||||
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"DEBUG=1",
|
||||
"$(inherited)",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
||||
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
||||
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
||||
GCC_WARN_UNUSED_FUNCTION = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
MACOSX_DEPLOYMENT_TARGET = 10.10;
|
||||
MTL_ENABLE_DEBUG_INFO = YES;
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SDKROOT = macosx;
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
08B91D2C1AC26FC100335131 /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
||||
CLANG_CXX_LIBRARY = "libc++";
|
||||
CLANG_ENABLE_MODULES = YES;
|
||||
CLANG_ENABLE_OBJC_ARC = YES;
|
||||
CLANG_WARN_BOOL_CONVERSION = YES;
|
||||
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
||||
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
||||
CLANG_WARN_EMPTY_BODY = YES;
|
||||
CLANG_WARN_ENUM_CONVERSION = YES;
|
||||
CLANG_WARN_INT_CONVERSION = YES;
|
||||
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
||||
CLANG_WARN_UNREACHABLE_CODE = YES;
|
||||
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
||||
COPY_PHASE_STRIP = YES;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
ENABLE_NS_ASSERTIONS = NO;
|
||||
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
||||
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
||||
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
||||
GCC_WARN_UNUSED_FUNCTION = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
MACOSX_DEPLOYMENT_TARGET = 10.10;
|
||||
MTL_ENABLE_DEBUG_INFO = NO;
|
||||
SDKROOT = macosx;
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
08B91D2E1AC26FC100335131 /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = NO;
|
||||
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
||||
CLANG_CXX_LIBRARY = "libc++";
|
||||
CLANG_ENABLE_MODULES = YES;
|
||||
GCC_CHAR_IS_UNSIGNED_CHAR = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_BUILTIN_FUNCTIONS = YES;
|
||||
GCC_INLINES_ARE_PRIVATE_EXTERN = NO;
|
||||
GCC_INPUT_FILETYPE = automatic;
|
||||
GCC_LINK_WITH_DYNAMIC_LIBRARIES = YES;
|
||||
GCC_NO_COMMON_BLOCKS = NO;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
__MACOSX_CORE__,
|
||||
USE_ALLOCA,
|
||||
OPUS_BUILD,
|
||||
);
|
||||
GCC_STRICT_ALIASING = NO;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"$(inherited)",
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
|
||||
"$(SRCROOT)/../include",
|
||||
"$(SRCROOT)/../third_party",
|
||||
);
|
||||
LIBRARY_SEARCH_PATHS = (
|
||||
"$(inherited)",
|
||||
"$(USER_LIBRARY_DIR)/Developer/Xcode/DerivedData/bin/Debug",
|
||||
);
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
SCAN_ALL_SOURCE_FILES_FOR_INCLUDES = YES;
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
08B91D2F1AC26FC100335131 /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = NO;
|
||||
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
||||
CLANG_CXX_LIBRARY = "libc++";
|
||||
CLANG_ENABLE_MODULES = YES;
|
||||
GCC_CHAR_IS_UNSIGNED_CHAR = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_BUILTIN_FUNCTIONS = YES;
|
||||
GCC_INLINES_ARE_PRIVATE_EXTERN = NO;
|
||||
GCC_INPUT_FILETYPE = automatic;
|
||||
GCC_LINK_WITH_DYNAMIC_LIBRARIES = YES;
|
||||
GCC_NO_COMMON_BLOCKS = NO;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
__MACOSX_CORE__,
|
||||
USE_ALLOCA,
|
||||
OPUS_BUILD,
|
||||
);
|
||||
GCC_STRICT_ALIASING = NO;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"$(inherited)",
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
|
||||
"$(SRCROOT)/../include",
|
||||
"$(SRCROOT)/../third_party",
|
||||
);
|
||||
LIBRARY_SEARCH_PATHS = (
|
||||
"$(inherited)",
|
||||
"$(USER_LIBRARY_DIR)/Developer/Xcode/DerivedData/bin/Debug",
|
||||
);
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
SCAN_ALL_SOURCE_FILES_FOR_INCLUDES = YES;
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
08B91D211AC26FC100335131 /* Build configuration list for PBXProject "libnyquist-example" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
08B91D2B1AC26FC100335131 /* Debug */,
|
||||
08B91D2C1AC26FC100335131 /* Release */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
08B91D2D1AC26FC100335131 /* Build configuration list for PBXNativeTarget "nyquist-example" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
08B91D2E1AC26FC100335131 /* Debug */,
|
||||
08B91D2F1AC26FC100335131 /* Release */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
};
|
||||
rootObject = 08B91D1E1AC26FC100335131 /* Project object */;
|
||||
}
|
||||
@ -1,7 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Workspace
|
||||
version = "1.0">
|
||||
<FileRef
|
||||
location = "self:libnyquist-example.xcodeproj">
|
||||
</FileRef>
|
||||
</Workspace>
|
||||
@ -1,92 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Scheme
|
||||
LastUpgradeVersion = "0720"
|
||||
version = "1.3">
|
||||
<BuildAction
|
||||
parallelizeBuildables = "YES"
|
||||
buildImplicitDependencies = "YES">
|
||||
<BuildActionEntries>
|
||||
<BuildActionEntry
|
||||
buildForTesting = "YES"
|
||||
buildForRunning = "YES"
|
||||
buildForProfiling = "YES"
|
||||
buildForArchiving = "YES"
|
||||
buildForAnalyzing = "YES">
|
||||
<BuildableReference
|
||||
BuildableIdentifier = "primary"
|
||||
BlueprintIdentifier = "08B91D251AC26FC100335131"
|
||||
BuildableName = "libnyquist"
|
||||
BlueprintName = "libnyquist"
|
||||
ReferencedContainer = "container:libnyquist.xcodeproj">
|
||||
</BuildableReference>
|
||||
</BuildActionEntry>
|
||||
</BuildActionEntries>
|
||||
</BuildAction>
|
||||
<TestAction
|
||||
buildConfiguration = "Debug"
|
||||
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
||||
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
||||
shouldUseLaunchSchemeArgsEnv = "YES">
|
||||
<Testables>
|
||||
</Testables>
|
||||
<MacroExpansion>
|
||||
<BuildableReference
|
||||
BuildableIdentifier = "primary"
|
||||
BlueprintIdentifier = "08B91D251AC26FC100335131"
|
||||
BuildableName = "nyquist-example"
|
||||
BlueprintName = "nyquist-example"
|
||||
ReferencedContainer = "container:libnyquist-example.xcodeproj">
|
||||
</BuildableReference>
|
||||
</MacroExpansion>
|
||||
<AdditionalOptions>
|
||||
</AdditionalOptions>
|
||||
</TestAction>
|
||||
<LaunchAction
|
||||
buildConfiguration = "Debug"
|
||||
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
||||
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
||||
launchStyle = "0"
|
||||
useCustomWorkingDirectory = "YES"
|
||||
customWorkingDirectory = "$(PROJECT_DIR)/../"
|
||||
ignoresPersistentStateOnLaunch = "NO"
|
||||
debugDocumentVersioning = "YES"
|
||||
debugServiceExtension = "internal"
|
||||
allowLocationSimulation = "YES">
|
||||
<BuildableProductRunnable
|
||||
runnableDebuggingMode = "0">
|
||||
<BuildableReference
|
||||
BuildableIdentifier = "primary"
|
||||
BlueprintIdentifier = "08B91D251AC26FC100335131"
|
||||
BuildableName = "nyquist-example"
|
||||
BlueprintName = "nyquist-example"
|
||||
ReferencedContainer = "container:libnyquist-example.xcodeproj">
|
||||
</BuildableReference>
|
||||
</BuildableProductRunnable>
|
||||
<AdditionalOptions>
|
||||
</AdditionalOptions>
|
||||
</LaunchAction>
|
||||
<ProfileAction
|
||||
buildConfiguration = "Release"
|
||||
shouldUseLaunchSchemeArgsEnv = "YES"
|
||||
savedToolIdentifier = ""
|
||||
useCustomWorkingDirectory = "NO"
|
||||
debugDocumentVersioning = "YES">
|
||||
<BuildableProductRunnable
|
||||
runnableDebuggingMode = "0">
|
||||
<BuildableReference
|
||||
BuildableIdentifier = "primary"
|
||||
BlueprintIdentifier = "08B91D251AC26FC100335131"
|
||||
BuildableName = "libnyquist"
|
||||
BlueprintName = "libnyquist"
|
||||
ReferencedContainer = "container:libnyquist.xcodeproj">
|
||||
</BuildableReference>
|
||||
</BuildableProductRunnable>
|
||||
</ProfileAction>
|
||||
<AnalyzeAction
|
||||
buildConfiguration = "Debug">
|
||||
</AnalyzeAction>
|
||||
<ArchiveAction
|
||||
buildConfiguration = "Release"
|
||||
revealArchiveInOrganizer = "YES">
|
||||
</ArchiveAction>
|
||||
</Scheme>
|
||||
@ -1,35 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup>
|
||||
<Filter Include="third_party">
|
||||
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
|
||||
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
|
||||
</Filter>
|
||||
<Filter Include="src">
|
||||
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
|
||||
<Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
|
||||
</Filter>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\..\src\Main.cpp">
|
||||
<Filter>src</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\third_party\rtaudio\RtAudio.cpp">
|
||||
<Filter>third_party</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\AudioDevice.cpp">
|
||||
<Filter>src</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\..\..\third_party\rtaudio\RtAudio.h">
|
||||
<Filter>third_party</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\src\AudioDevice.h">
|
||||
<Filter>src</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\src\RingBuffer.h">
|
||||
<Filter>src</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
@ -1,10 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Workspace
|
||||
version = "1.0">
|
||||
<FileRef
|
||||
location = "group:../libnyquist.xcodeproj">
|
||||
</FileRef>
|
||||
<FileRef
|
||||
location = "container:libnyquist-example.xcodeproj">
|
||||
</FileRef>
|
||||
</Workspace>
|
||||
@ -1,114 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup>
|
||||
<ClCompile Include="$(ProjectDir)..\..\src\VorbisDependencies.c">
|
||||
<Filter>src\deps</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(ProjectDir)..\..\src\OpusDependencies.c">
|
||||
<Filter>src\deps</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(ProjectDir)..\..\src\AudioDecoder.cpp">
|
||||
<Filter>src</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(ProjectDir)..\..\src\CafDecoder.cpp">
|
||||
<Filter>src</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(ProjectDir)..\..\src\FlacDecoder.cpp">
|
||||
<Filter>src</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(ProjectDir)..\..\src\VorbisDecoder.cpp">
|
||||
<Filter>src</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(ProjectDir)..\..\src\WavDecoder.cpp">
|
||||
<Filter>src</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(ProjectDir)..\..\src\WavPackDecoder.cpp">
|
||||
<Filter>src</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(ProjectDir)..\..\src\WavEncoder.cpp">
|
||||
<Filter>src</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(ProjectDir)..\..\src\OpusDecoder.cpp">
|
||||
<Filter>src</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(ProjectDir)..\..\src\Common.cpp">
|
||||
<Filter>src</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(ProjectDir)..\..\src\RiffUtils.cpp">
|
||||
<Filter>src</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(ProjectDir)..\..\src\FlacDependencies.c">
|
||||
<Filter>src\deps</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\MusepackDependencies.c">
|
||||
<Filter>src\deps</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\MusepackDecoder.cpp">
|
||||
<Filter>src</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\ModplugDependencies.cpp">
|
||||
<Filter>src\deps</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\ModplugDecoder.cpp">
|
||||
<Filter>src</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="$(ProjectDir)..\..\include\libnyquist\OpusDecoder.h">
|
||||
<Filter>src</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="$(ProjectDir)..\..\include\libnyquist\AudioDecoder.h">
|
||||
<Filter>include</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="$(ProjectDir)..\..\include\libnyquist\CafDecoder.h">
|
||||
<Filter>include</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="$(ProjectDir)..\..\include\libnyquist\Common.h">
|
||||
<Filter>include</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="$(ProjectDir)..\..\include\libnyquist\FlacDecoder.h">
|
||||
<Filter>include</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="$(ProjectDir)..\..\include\libnyquist\VorbisDecoder.h">
|
||||
<Filter>include</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="$(ProjectDir)..\..\include\libnyquist\WavDecoder.h">
|
||||
<Filter>include</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="$(ProjectDir)..\..\include\libnyquist\WavEncoder.h">
|
||||
<Filter>include</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="$(ProjectDir)..\..\include\libnyquist\WavPackDecoder.h">
|
||||
<Filter>include</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="$(ProjectDir)..\..\include\libnyquist\PostProcess.h">
|
||||
<Filter>include\util</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="$(ProjectDir)..\..\include\libnyquist\Dither.h">
|
||||
<Filter>include\util</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="$(ProjectDir)..\..\include\libnyquist\RiffUtils.h">
|
||||
<Filter>include\util</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\include\libnyquist\MusepackDecoder.h">
|
||||
<Filter>include</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\include\libnyquist\IMA4Util.h">
|
||||
<Filter>include\util</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Filter Include="include">
|
||||
<UniqueIdentifier>{f4ea8340-b8ea-4a42-bafb-6cb461e7a2f3}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="src">
|
||||
<UniqueIdentifier>{a18b19d5-5cd3-49fc-beec-ed17d8e81d6b}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="include\util">
|
||||
<UniqueIdentifier>{f27e7823-c56c-4e03-af63-2ef0b1e83cbd}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="src\deps">
|
||||
<UniqueIdentifier>{d839471f-71d1-471e-95e0-c33af9bb64bc}</UniqueIdentifier>
|
||||
</Filter>
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
@ -1,189 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup>
|
||||
<ClCompile Include="$(ProjectDir)..\..\src\VorbisDependencies.c">
|
||||
<Filter>src\deps</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(ProjectDir)..\..\src\OpusDependencies.c">
|
||||
<Filter>src\deps</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(ProjectDir)..\..\src\AudioDecoder.cpp">
|
||||
<Filter>src</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(ProjectDir)..\..\src\FlacDecoder.cpp">
|
||||
<Filter>src</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(ProjectDir)..\..\src\VorbisDecoder.cpp">
|
||||
<Filter>src</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(ProjectDir)..\..\src\WavDecoder.cpp">
|
||||
<Filter>src</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(ProjectDir)..\..\src\WavPackDecoder.cpp">
|
||||
<Filter>src</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(ProjectDir)..\..\src\WavEncoder.cpp">
|
||||
<Filter>src</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(ProjectDir)..\..\src\OpusDecoder.cpp">
|
||||
<Filter>src</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(ProjectDir)..\..\src\Common.cpp">
|
||||
<Filter>src</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(ProjectDir)..\..\src\RiffUtils.cpp">
|
||||
<Filter>src</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="$(ProjectDir)..\..\src\FlacDependencies.c">
|
||||
<Filter>src\deps</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\MusepackDependencies.c">
|
||||
<Filter>src\deps</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\MusepackDecoder.cpp">
|
||||
<Filter>src</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\ModplugDependencies.cpp">
|
||||
<Filter>src\deps</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\src\ModplugDecoder.cpp">
|
||||
<Filter>src</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\third_party\wavpack\src\entropy_utils.c">
|
||||
<Filter>src\deps\WavpackDependencies</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\third_party\wavpack\src\decorr_utils.c">
|
||||
<Filter>src\deps\WavpackDependencies</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\third_party\wavpack\src\open_legacy.c">
|
||||
<Filter>src\deps\WavpackDependencies</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\third_party\wavpack\src\open_filename.c">
|
||||
<Filter>src\deps\WavpackDependencies</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\third_party\wavpack\src\extra2.c">
|
||||
<Filter>src\deps\WavpackDependencies</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\third_party\wavpack\src\extra1.c">
|
||||
<Filter>src\deps\WavpackDependencies</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\third_party\wavpack\src\common_utils.c">
|
||||
<Filter>src\deps\WavpackDependencies</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\third_party\wavpack\src\open_utils.c">
|
||||
<Filter>src\deps\WavpackDependencies</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\third_party\wavpack\src\open_raw.c">
|
||||
<Filter>src\deps\WavpackDependencies</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\third_party\wavpack\src\pack.c">
|
||||
<Filter>src\deps\WavpackDependencies</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\third_party\wavpack\src\pack_dns.c">
|
||||
<Filter>src\deps\WavpackDependencies</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\third_party\wavpack\src\pack_floats.c">
|
||||
<Filter>src\deps\WavpackDependencies</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\third_party\wavpack\src\pack_dsd.c">
|
||||
<Filter>src\deps\WavpackDependencies</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\third_party\wavpack\src\pack_utils.c">
|
||||
<Filter>src\deps\WavpackDependencies</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\third_party\wavpack\src\read_words.c">
|
||||
<Filter>src\deps\WavpackDependencies</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\third_party\wavpack\src\tags.c">
|
||||
<Filter>src\deps\WavpackDependencies</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\third_party\wavpack\src\unpack.c">
|
||||
<Filter>src\deps\WavpackDependencies</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\third_party\wavpack\src\unpack_dsd.c">
|
||||
<Filter>src\deps\WavpackDependencies</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\third_party\wavpack\src\unpack_floats.c">
|
||||
<Filter>src\deps\WavpackDependencies</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\third_party\wavpack\src\tag_utils.c">
|
||||
<Filter>src\deps\WavpackDependencies</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\third_party\wavpack\src\unpack_seek.c">
|
||||
<Filter>src\deps\WavpackDependencies</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\third_party\wavpack\src\unpack_utils.c">
|
||||
<Filter>src\deps\WavpackDependencies</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\third_party\wavpack\src\unpack3.c">
|
||||
<Filter>src\deps\WavpackDependencies</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\third_party\wavpack\src\unpack3_open.c">
|
||||
<Filter>src\deps\WavpackDependencies</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\third_party\wavpack\src\unpack3_seek.c">
|
||||
<Filter>src\deps\WavpackDependencies</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\third_party\wavpack\src\write_words.c">
|
||||
<Filter>src\deps\WavpackDependencies</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="$(ProjectDir)..\..\include\libnyquist\AudioDecoder.h">
|
||||
<Filter>include</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="$(ProjectDir)..\..\include\libnyquist\Common.h">
|
||||
<Filter>include</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="$(ProjectDir)..\..\include\libnyquist\FlacDecoder.h">
|
||||
<Filter>include</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="$(ProjectDir)..\..\include\libnyquist\VorbisDecoder.h">
|
||||
<Filter>include</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="$(ProjectDir)..\..\include\libnyquist\WavDecoder.h">
|
||||
<Filter>include</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="$(ProjectDir)..\..\include\libnyquist\WavEncoder.h">
|
||||
<Filter>include</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="$(ProjectDir)..\..\include\libnyquist\WavPackDecoder.h">
|
||||
<Filter>include</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="$(ProjectDir)..\..\include\libnyquist\PostProcess.h">
|
||||
<Filter>include\util</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="$(ProjectDir)..\..\include\libnyquist\Dither.h">
|
||||
<Filter>include\util</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="$(ProjectDir)..\..\include\libnyquist\RiffUtils.h">
|
||||
<Filter>include\util</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\include\libnyquist\MusepackDecoder.h">
|
||||
<Filter>include</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\include\libnyquist\IMA4Util.h">
|
||||
<Filter>include\util</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="$(ProjectDir)..\..\include\libnyquist\OpusDecoder.h">
|
||||
<Filter>include</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Filter Include="include">
|
||||
<UniqueIdentifier>{f4ea8340-b8ea-4a42-bafb-6cb461e7a2f3}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="src">
|
||||
<UniqueIdentifier>{a18b19d5-5cd3-49fc-beec-ed17d8e81d6b}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="include\util">
|
||||
<UniqueIdentifier>{f27e7823-c56c-4e03-af63-2ef0b1e83cbd}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="src\deps">
|
||||
<UniqueIdentifier>{d839471f-71d1-471e-95e0-c33af9bb64bc}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="src\deps\WavpackDependencies">
|
||||
<UniqueIdentifier>{4ed41d64-0c09-4382-8ee9-70aad6043650}</UniqueIdentifier>
|
||||
</Filter>
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
@ -1,472 +0,0 @@
|
||||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 46;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
0804D13F1AE69F0100F4B1FD /* OpusDependencies.c in Sources */ = {isa = PBXBuildFile; fileRef = 0804D13E1AE69F0100F4B1FD /* OpusDependencies.c */; };
|
||||
080A58581B0866F600302850 /* RiffUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 080A58571B0866F600302850 /* RiffUtils.cpp */; };
|
||||
081FFB191ADF803800673073 /* FlacDependencies.c in Sources */ = {isa = PBXBuildFile; fileRef = 081FFB181ADF803800673073 /* FlacDependencies.c */; };
|
||||
083730B91BE52B9600216BDC /* MusepackDecoder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 083730B81BE52B9600216BDC /* MusepackDecoder.cpp */; settings = {COMPILER_FLAGS = "-w"; }; };
|
||||
083730BC1BE5350C00216BDC /* MusepackDependencies.c in Sources */ = {isa = PBXBuildFile; fileRef = 083730BB1BE5350C00216BDC /* MusepackDependencies.c */; };
|
||||
083DB3F31B091C1100FB0661 /* WavEncoder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 083DB3F21B091C1100FB0661 /* WavEncoder.cpp */; };
|
||||
086DADAD1AE029860031F793 /* VorbisDependencies.c in Sources */ = {isa = PBXBuildFile; fileRef = 086DADAB1ADF9DF30031F793 /* VorbisDependencies.c */; };
|
||||
08B91D9A1AC73B8A00335131 /* CafDecoder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 08B91D901AC73B8A00335131 /* CafDecoder.cpp */; };
|
||||
08B91D9B1AC73B8A00335131 /* AudioDecoder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 08B91D911AC73B8A00335131 /* AudioDecoder.cpp */; };
|
||||
08B91D9D1AC73B8A00335131 /* Common.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 08B91D931AC73B8A00335131 /* Common.cpp */; };
|
||||
08B91D9E1AC73B8A00335131 /* FlacDecoder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 08B91D941AC73B8A00335131 /* FlacDecoder.cpp */; };
|
||||
08B91DA01AC73B8A00335131 /* VorbisDecoder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 08B91D961AC73B8A00335131 /* VorbisDecoder.cpp */; };
|
||||
08B91DA11AC73B8A00335131 /* OpusDecoder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 08B91D971AC73B8A00335131 /* OpusDecoder.cpp */; };
|
||||
08B91DA21AC73B8A00335131 /* WavDecoder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 08B91D981AC73B8A00335131 /* WavDecoder.cpp */; };
|
||||
08B91DA31AC73B8A00335131 /* WavPackDecoder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 08B91D991AC73B8A00335131 /* WavPackDecoder.cpp */; };
|
||||
08FFC72D1CA702EC005812D6 /* ModplugDependencies.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 08FFC72C1CA702EC005812D6 /* ModplugDependencies.cpp */; };
|
||||
08FFC72F1CA7038D005812D6 /* ModplugDecoder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 08FFC72E1CA7038D005812D6 /* ModplugDecoder.cpp */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXCopyFilesBuildPhase section */
|
||||
08B91D241AC26FC100335131 /* CopyFiles */ = {
|
||||
isa = PBXCopyFilesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
dstPath = /usr/share/man/man1/;
|
||||
dstSubfolderSpec = 0;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 1;
|
||||
};
|
||||
/* End PBXCopyFilesBuildPhase section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
0804D13E1AE69F0100F4B1FD /* OpusDependencies.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = OpusDependencies.c; path = src/OpusDependencies.c; sourceTree = SOURCE_ROOT; };
|
||||
080A58561B0866AA00302850 /* RiffUtils.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = RiffUtils.h; path = include/libnyquist/RiffUtils.h; sourceTree = SOURCE_ROOT; };
|
||||
080A58571B0866F600302850 /* RiffUtils.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = RiffUtils.cpp; path = src/RiffUtils.cpp; sourceTree = SOURCE_ROOT; };
|
||||
081FFB181ADF803800673073 /* FlacDependencies.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = FlacDependencies.c; path = src/FlacDependencies.c; sourceTree = SOURCE_ROOT; };
|
||||
083730B81BE52B9600216BDC /* MusepackDecoder.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = MusepackDecoder.cpp; path = src/MusepackDecoder.cpp; sourceTree = SOURCE_ROOT; };
|
||||
083730BA1BE52BA900216BDC /* MusepackDecoder.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = MusepackDecoder.h; path = include/libnyquist/MusepackDecoder.h; sourceTree = SOURCE_ROOT; };
|
||||
083730BB1BE5350C00216BDC /* MusepackDependencies.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = MusepackDependencies.c; path = src/MusepackDependencies.c; sourceTree = SOURCE_ROOT; };
|
||||
083DB3F21B091C1100FB0661 /* WavEncoder.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = WavEncoder.cpp; path = src/WavEncoder.cpp; sourceTree = SOURCE_ROOT; };
|
||||
083DB3F41B091C1E00FB0661 /* WavEncoder.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = WavEncoder.h; path = include/libnyquist/WavEncoder.h; sourceTree = SOURCE_ROOT; };
|
||||
086DADAB1ADF9DF30031F793 /* VorbisDependencies.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = VorbisDependencies.c; path = src/VorbisDependencies.c; sourceTree = SOURCE_ROOT; };
|
||||
08B91D261AC26FC100335131 /* libnyquist.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libnyquist.a; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
08B91D831AC73B8000335131 /* CafDecoder.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = CafDecoder.h; path = include/libnyquist/CafDecoder.h; sourceTree = SOURCE_ROOT; };
|
||||
08B91D841AC73B8000335131 /* AudioDecoder.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = AudioDecoder.h; path = include/libnyquist/AudioDecoder.h; sourceTree = SOURCE_ROOT; };
|
||||
08B91D851AC73B8000335131 /* AudioDevice.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = AudioDevice.h; path = include/libnyquist/AudioDevice.h; sourceTree = SOURCE_ROOT; };
|
||||
08B91D861AC73B8000335131 /* Common.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = Common.h; path = include/libnyquist/Common.h; sourceTree = SOURCE_ROOT; };
|
||||
08B91D871AC73B8000335131 /* Dither.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = Dither.h; path = include/libnyquist/Dither.h; sourceTree = SOURCE_ROOT; };
|
||||
08B91D881AC73B8000335131 /* FlacDecoder.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.cpp.h; name = FlacDecoder.h; path = include/libnyquist/FlacDecoder.h; sourceTree = SOURCE_ROOT; };
|
||||
08B91D891AC73B8000335131 /* VorbisDecoder.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = VorbisDecoder.h; path = include/libnyquist/VorbisDecoder.h; sourceTree = SOURCE_ROOT; };
|
||||
08B91D8A1AC73B8000335131 /* OpusDecoder.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = OpusDecoder.h; path = include/libnyquist/OpusDecoder.h; sourceTree = SOURCE_ROOT; };
|
||||
08B91D8B1AC73B8000335131 /* PostProcess.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = PostProcess.h; path = include/libnyquist/PostProcess.h; sourceTree = SOURCE_ROOT; };
|
||||
08B91D8C1AC73B8000335131 /* RingBuffer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = RingBuffer.h; path = include/libnyquist/RingBuffer.h; sourceTree = SOURCE_ROOT; };
|
||||
08B91D8E1AC73B8000335131 /* WavDecoder.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = WavDecoder.h; path = include/libnyquist/WavDecoder.h; sourceTree = SOURCE_ROOT; };
|
||||
08B91D8F1AC73B8000335131 /* WavPackDecoder.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = WavPackDecoder.h; path = include/libnyquist/WavPackDecoder.h; sourceTree = SOURCE_ROOT; };
|
||||
08B91D901AC73B8A00335131 /* CafDecoder.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CafDecoder.cpp; path = src/CafDecoder.cpp; sourceTree = SOURCE_ROOT; };
|
||||
08B91D911AC73B8A00335131 /* AudioDecoder.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = AudioDecoder.cpp; path = src/AudioDecoder.cpp; sourceTree = SOURCE_ROOT; };
|
||||
08B91D931AC73B8A00335131 /* Common.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Common.cpp; path = src/Common.cpp; sourceTree = SOURCE_ROOT; };
|
||||
08B91D941AC73B8A00335131 /* FlacDecoder.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = FlacDecoder.cpp; path = src/FlacDecoder.cpp; sourceTree = SOURCE_ROOT; };
|
||||
08B91D961AC73B8A00335131 /* VorbisDecoder.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = VorbisDecoder.cpp; path = src/VorbisDecoder.cpp; sourceTree = SOURCE_ROOT; };
|
||||
08B91D971AC73B8A00335131 /* OpusDecoder.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = OpusDecoder.cpp; path = src/OpusDecoder.cpp; sourceTree = SOURCE_ROOT; };
|
||||
08B91D981AC73B8A00335131 /* WavDecoder.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = WavDecoder.cpp; path = src/WavDecoder.cpp; sourceTree = SOURCE_ROOT; };
|
||||
08B91D991AC73B8A00335131 /* WavPackDecoder.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = WavPackDecoder.cpp; path = src/WavPackDecoder.cpp; sourceTree = SOURCE_ROOT; };
|
||||
08C83B7C1C25D7780071EED6 /* IMA4Util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = IMA4Util.h; path = include/libnyquist/IMA4Util.h; sourceTree = SOURCE_ROOT; };
|
||||
08FFC72C1CA702EC005812D6 /* ModplugDependencies.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = ModplugDependencies.cpp; path = src/ModplugDependencies.cpp; sourceTree = SOURCE_ROOT; };
|
||||
08FFC72E1CA7038D005812D6 /* ModplugDecoder.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = ModplugDecoder.cpp; path = src/ModplugDecoder.cpp; sourceTree = SOURCE_ROOT; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
08B91D231AC26FC100335131 /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
080A58551B083D5100302850 /* deps */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
08FFC72C1CA702EC005812D6 /* ModplugDependencies.cpp */,
|
||||
081FFB181ADF803800673073 /* FlacDependencies.c */,
|
||||
086DADAB1ADF9DF30031F793 /* VorbisDependencies.c */,
|
||||
0804D13E1AE69F0100F4B1FD /* OpusDependencies.c */,
|
||||
083730BB1BE5350C00216BDC /* MusepackDependencies.c */,
|
||||
);
|
||||
name = deps;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
080A58591B0867E500302850 /* util */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
08B91D871AC73B8000335131 /* Dither.h */,
|
||||
080A58561B0866AA00302850 /* RiffUtils.h */,
|
||||
08B91D8C1AC73B8000335131 /* RingBuffer.h */,
|
||||
08B91D8B1AC73B8000335131 /* PostProcess.h */,
|
||||
);
|
||||
name = util;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
08B91D1D1AC26FC100335131 = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
08B91D281AC26FC100335131 /* libnyquist */,
|
||||
08B91D511AC270BB00335131 /* third_party */,
|
||||
08B91D801AC73B3B00335131 /* Frameworks */,
|
||||
08B91D271AC26FC100335131 /* Products */,
|
||||
);
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
08B91D271AC26FC100335131 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
08B91D261AC26FC100335131 /* libnyquist.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
08B91D281AC26FC100335131 /* libnyquist */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
08B91D811AC73B5A00335131 /* include */,
|
||||
08B91D821AC73B6900335131 /* src */,
|
||||
);
|
||||
path = libnyquist;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
08B91D511AC270BB00335131 /* third_party */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
);
|
||||
name = third_party;
|
||||
path = libnyquist;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
08B91D801AC73B3B00335131 /* Frameworks */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
);
|
||||
name = Frameworks;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
08B91D811AC73B5A00335131 /* include */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
080A58591B0867E500302850 /* util */,
|
||||
08B91D841AC73B8000335131 /* AudioDecoder.h */,
|
||||
08B91D851AC73B8000335131 /* AudioDevice.h */,
|
||||
08B91D861AC73B8000335131 /* Common.h */,
|
||||
08B91D831AC73B8000335131 /* CafDecoder.h */,
|
||||
083730BA1BE52BA900216BDC /* MusepackDecoder.h */,
|
||||
08B91D881AC73B8000335131 /* FlacDecoder.h */,
|
||||
08B91D891AC73B8000335131 /* VorbisDecoder.h */,
|
||||
08B91D8A1AC73B8000335131 /* OpusDecoder.h */,
|
||||
083DB3F41B091C1E00FB0661 /* WavEncoder.h */,
|
||||
08B91D8E1AC73B8000335131 /* WavDecoder.h */,
|
||||
08B91D8F1AC73B8000335131 /* WavPackDecoder.h */,
|
||||
08C83B7C1C25D7780071EED6 /* IMA4Util.h */,
|
||||
);
|
||||
name = include;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
08B91D821AC73B6900335131 /* src */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
080A58551B083D5100302850 /* deps */,
|
||||
08B91D901AC73B8A00335131 /* CafDecoder.cpp */,
|
||||
083730B81BE52B9600216BDC /* MusepackDecoder.cpp */,
|
||||
08B91D911AC73B8A00335131 /* AudioDecoder.cpp */,
|
||||
08B91D931AC73B8A00335131 /* Common.cpp */,
|
||||
080A58571B0866F600302850 /* RiffUtils.cpp */,
|
||||
08FFC72E1CA7038D005812D6 /* ModplugDecoder.cpp */,
|
||||
08B91D941AC73B8A00335131 /* FlacDecoder.cpp */,
|
||||
08B91D961AC73B8A00335131 /* VorbisDecoder.cpp */,
|
||||
08B91D971AC73B8A00335131 /* OpusDecoder.cpp */,
|
||||
083DB3F21B091C1100FB0661 /* WavEncoder.cpp */,
|
||||
08B91D981AC73B8A00335131 /* WavDecoder.cpp */,
|
||||
08B91D991AC73B8A00335131 /* WavPackDecoder.cpp */,
|
||||
);
|
||||
name = src;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
08B91D251AC26FC100335131 /* libnyquist */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 08B91D2D1AC26FC100335131 /* Build configuration list for PBXNativeTarget "libnyquist" */;
|
||||
buildPhases = (
|
||||
08B91D221AC26FC100335131 /* Sources */,
|
||||
08B91D231AC26FC100335131 /* Frameworks */,
|
||||
08B91D241AC26FC100335131 /* CopyFiles */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
);
|
||||
name = libnyquist;
|
||||
productName = libnyquist;
|
||||
productReference = 08B91D261AC26FC100335131 /* libnyquist.a */;
|
||||
productType = "com.apple.product-type.library.static";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
08B91D1E1AC26FC100335131 /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
attributes = {
|
||||
LastUpgradeCheck = 0720;
|
||||
ORGANIZATIONNAME = "Dimitri Diakopoulos";
|
||||
TargetAttributes = {
|
||||
08B91D251AC26FC100335131 = {
|
||||
CreatedOnToolsVersion = 6.1.1;
|
||||
};
|
||||
};
|
||||
};
|
||||
buildConfigurationList = 08B91D211AC26FC100335131 /* Build configuration list for PBXProject "libnyquist" */;
|
||||
compatibilityVersion = "Xcode 3.2";
|
||||
developmentRegion = English;
|
||||
hasScannedForEncodings = 0;
|
||||
knownRegions = (
|
||||
en,
|
||||
);
|
||||
mainGroup = 08B91D1D1AC26FC100335131;
|
||||
productRefGroup = 08B91D271AC26FC100335131 /* Products */;
|
||||
projectDirPath = "";
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
08B91D251AC26FC100335131 /* libnyquist */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
08B91D221AC26FC100335131 /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
083730B91BE52B9600216BDC /* MusepackDecoder.cpp in Sources */,
|
||||
083730BC1BE5350C00216BDC /* MusepackDependencies.c in Sources */,
|
||||
081FFB191ADF803800673073 /* FlacDependencies.c in Sources */,
|
||||
0804D13F1AE69F0100F4B1FD /* OpusDependencies.c in Sources */,
|
||||
083DB3F31B091C1100FB0661 /* WavEncoder.cpp in Sources */,
|
||||
08B91D9B1AC73B8A00335131 /* AudioDecoder.cpp in Sources */,
|
||||
08B91DA01AC73B8A00335131 /* VorbisDecoder.cpp in Sources */,
|
||||
08B91DA21AC73B8A00335131 /* WavDecoder.cpp in Sources */,
|
||||
08B91D9A1AC73B8A00335131 /* CafDecoder.cpp in Sources */,
|
||||
080A58581B0866F600302850 /* RiffUtils.cpp in Sources */,
|
||||
08B91DA11AC73B8A00335131 /* OpusDecoder.cpp in Sources */,
|
||||
08FFC72D1CA702EC005812D6 /* ModplugDependencies.cpp in Sources */,
|
||||
08B91D9E1AC73B8A00335131 /* FlacDecoder.cpp in Sources */,
|
||||
08FFC72F1CA7038D005812D6 /* ModplugDecoder.cpp in Sources */,
|
||||
086DADAD1AE029860031F793 /* VorbisDependencies.c in Sources */,
|
||||
08B91DA31AC73B8A00335131 /* WavPackDecoder.cpp in Sources */,
|
||||
08B91D9D1AC73B8A00335131 /* Common.cpp in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
08B91D2B1AC26FC100335131 /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
||||
CLANG_CXX_LIBRARY = "libc++";
|
||||
CLANG_ENABLE_MODULES = YES;
|
||||
CLANG_ENABLE_OBJC_ARC = YES;
|
||||
CLANG_WARN_BOOL_CONVERSION = YES;
|
||||
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
||||
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
||||
CLANG_WARN_EMPTY_BODY = YES;
|
||||
CLANG_WARN_ENUM_CONVERSION = YES;
|
||||
CLANG_WARN_INT_CONVERSION = YES;
|
||||
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
||||
CLANG_WARN_UNREACHABLE_CODE = YES;
|
||||
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
||||
COPY_PHASE_STRIP = NO;
|
||||
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
||||
ENABLE_TESTABILITY = YES;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"DEBUG=1",
|
||||
"$(inherited)",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
||||
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
||||
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
||||
GCC_WARN_UNUSED_FUNCTION = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
MACOSX_DEPLOYMENT_TARGET = 10.10;
|
||||
MTL_ENABLE_DEBUG_INFO = YES;
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SDKROOT = macosx;
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
08B91D2C1AC26FC100335131 /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
||||
CLANG_CXX_LIBRARY = "libc++";
|
||||
CLANG_ENABLE_MODULES = YES;
|
||||
CLANG_ENABLE_OBJC_ARC = YES;
|
||||
CLANG_WARN_BOOL_CONVERSION = YES;
|
||||
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
||||
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
||||
CLANG_WARN_EMPTY_BODY = YES;
|
||||
CLANG_WARN_ENUM_CONVERSION = YES;
|
||||
CLANG_WARN_INT_CONVERSION = YES;
|
||||
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
||||
CLANG_WARN_UNREACHABLE_CODE = YES;
|
||||
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
||||
COPY_PHASE_STRIP = YES;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
ENABLE_NS_ASSERTIONS = NO;
|
||||
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
||||
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
||||
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
||||
GCC_WARN_UNUSED_FUNCTION = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
MACOSX_DEPLOYMENT_TARGET = 10.10;
|
||||
MTL_ENABLE_DEBUG_INFO = NO;
|
||||
SDKROOT = macosx;
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
08B91D2E1AC26FC100335131 /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = NO;
|
||||
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
||||
CLANG_CXX_LIBRARY = "libc++";
|
||||
CLANG_ENABLE_MODULES = YES;
|
||||
COMBINE_HIDPI_IMAGES = YES;
|
||||
EXECUTABLE_EXTENSION = a;
|
||||
EXECUTABLE_PREFIX = "";
|
||||
GCC_CHAR_IS_UNSIGNED_CHAR = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_BUILTIN_FUNCTIONS = YES;
|
||||
GCC_INLINES_ARE_PRIVATE_EXTERN = NO;
|
||||
GCC_INPUT_FILETYPE = automatic;
|
||||
GCC_LINK_WITH_DYNAMIC_LIBRARIES = YES;
|
||||
GCC_NO_COMMON_BLOCKS = NO;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
__MACOSX_CORE__,
|
||||
USE_ALLOCA,
|
||||
OPUS_BUILD,
|
||||
);
|
||||
GCC_STRICT_ALIASING = NO;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"$(inherited)",
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
|
||||
"$(SRCROOT)/include/libnyquist",
|
||||
"$(SRCROOT)/third_party",
|
||||
"$(SRCROOT)/third_party/rtaudio",
|
||||
"$(SRCROOT)/third_party/flac/src/include",
|
||||
"$(SRCROOT)/third_party/libogg/include",
|
||||
"$(SRCROOT)/third_party/libvorbis/src",
|
||||
"$(SRCROOT)/third_party/libvorbis/include",
|
||||
"$(SRCROOT)/third_party/opus/silk",
|
||||
"$(SRCROOT)/third_party/opus/silk/float",
|
||||
"$(SRCROOT)/third_party/opus/celt",
|
||||
"$(SRCROOT)/third_party/opus/libopus/include",
|
||||
"$(SRCROOT)/third_party/opus/opusfile/src/include",
|
||||
"$(SRCROOT)/third_party/opus/opusfile/include",
|
||||
"$(SRCROOT)/third_party/wavpack/include",
|
||||
"$(SRCROOT)/third_party/wavpack/src",
|
||||
"$(SRCROOT)/third_party/musepack/include",
|
||||
"$(SRCROOT)/third_party/musepack/libmpcdec",
|
||||
"$(SRCROOT)/third_party/libmodplug/src",
|
||||
);
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
SCAN_ALL_SOURCE_FILES_FOR_INCLUDES = YES;
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
08B91D2F1AC26FC100335131 /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = NO;
|
||||
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
||||
CLANG_CXX_LIBRARY = "libc++";
|
||||
CLANG_ENABLE_MODULES = YES;
|
||||
COMBINE_HIDPI_IMAGES = YES;
|
||||
EXECUTABLE_EXTENSION = a;
|
||||
EXECUTABLE_PREFIX = "";
|
||||
GCC_CHAR_IS_UNSIGNED_CHAR = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_BUILTIN_FUNCTIONS = YES;
|
||||
GCC_INLINES_ARE_PRIVATE_EXTERN = NO;
|
||||
GCC_INPUT_FILETYPE = automatic;
|
||||
GCC_LINK_WITH_DYNAMIC_LIBRARIES = YES;
|
||||
GCC_NO_COMMON_BLOCKS = NO;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
__MACOSX_CORE__,
|
||||
USE_ALLOCA,
|
||||
OPUS_BUILD,
|
||||
);
|
||||
GCC_STRICT_ALIASING = NO;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"$(inherited)",
|
||||
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
|
||||
"$(SRCROOT)/include/libnyquist",
|
||||
"$(SRCROOT)/third_party",
|
||||
"$(SRCROOT)/third_party/rtaudio",
|
||||
"$(SRCROOT)/third_party/flac/src/include",
|
||||
"$(SRCROOT)/third_party/libogg/include",
|
||||
"$(SRCROOT)/third_party/libvorbis/src",
|
||||
"$(SRCROOT)/third_party/libvorbis/include",
|
||||
"$(SRCROOT)/third_party/opus/silk",
|
||||
"$(SRCROOT)/third_party/opus/silk/float",
|
||||
"$(SRCROOT)/third_party/opus/celt",
|
||||
"$(SRCROOT)/third_party/opus/libopus/include",
|
||||
"$(SRCROOT)/third_party/opus/opusfile/src/include",
|
||||
"$(SRCROOT)/third_party/opus/opusfile/include",
|
||||
"$(SRCROOT)/third_party/wavpack/include",
|
||||
"$(SRCROOT)/third_party/wavpack/src",
|
||||
"$(SRCROOT)/third_party/musepack/include",
|
||||
"$(SRCROOT)/third_party/musepack/libmpcdec",
|
||||
"$(SRCROOT)/third_party/libmodplug/src",
|
||||
);
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
SCAN_ALL_SOURCE_FILES_FOR_INCLUDES = YES;
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
08B91D211AC26FC100335131 /* Build configuration list for PBXProject "libnyquist" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
08B91D2B1AC26FC100335131 /* Debug */,
|
||||
08B91D2C1AC26FC100335131 /* Release */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
08B91D2D1AC26FC100335131 /* Build configuration list for PBXNativeTarget "libnyquist" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
08B91D2E1AC26FC100335131 /* Debug */,
|
||||
08B91D2F1AC26FC100335131 /* Release */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
};
|
||||
rootObject = 08B91D1E1AC26FC100335131 /* Project object */;
|
||||
}
|
||||
@ -1,7 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Workspace
|
||||
version = "1.0">
|
||||
<FileRef
|
||||
location = "self:libnyquist.xcodeproj">
|
||||
</FileRef>
|
||||
</Workspace>
|
||||
@ -1,91 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Scheme
|
||||
LastUpgradeVersion = "0720"
|
||||
version = "1.3">
|
||||
<BuildAction
|
||||
parallelizeBuildables = "YES"
|
||||
buildImplicitDependencies = "YES">
|
||||
<BuildActionEntries>
|
||||
<BuildActionEntry
|
||||
buildForTesting = "YES"
|
||||
buildForRunning = "YES"
|
||||
buildForProfiling = "YES"
|
||||
buildForArchiving = "YES"
|
||||
buildForAnalyzing = "YES">
|
||||
<BuildableReference
|
||||
BuildableIdentifier = "primary"
|
||||
BlueprintIdentifier = "08B91D251AC26FC100335131"
|
||||
BuildableName = "libnyquist.a"
|
||||
BlueprintName = "libnyquist"
|
||||
ReferencedContainer = "container:libnyquist.xcodeproj">
|
||||
</BuildableReference>
|
||||
</BuildActionEntry>
|
||||
</BuildActionEntries>
|
||||
</BuildAction>
|
||||
<TestAction
|
||||
buildConfiguration = "Debug"
|
||||
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
||||
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
||||
shouldUseLaunchSchemeArgsEnv = "YES">
|
||||
<Testables>
|
||||
</Testables>
|
||||
<MacroExpansion>
|
||||
<BuildableReference
|
||||
BuildableIdentifier = "primary"
|
||||
BlueprintIdentifier = "08B91D251AC26FC100335131"
|
||||
BuildableName = "libnyquist.a"
|
||||
BlueprintName = "libnyquist"
|
||||
ReferencedContainer = "container:libnyquist.xcodeproj">
|
||||
</BuildableReference>
|
||||
</MacroExpansion>
|
||||
<AdditionalOptions>
|
||||
</AdditionalOptions>
|
||||
</TestAction>
|
||||
<LaunchAction
|
||||
buildConfiguration = "Debug"
|
||||
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
||||
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
||||
launchStyle = "0"
|
||||
useCustomWorkingDirectory = "YES"
|
||||
customWorkingDirectory = "$(PROJECT_DIR)"
|
||||
ignoresPersistentStateOnLaunch = "NO"
|
||||
debugDocumentVersioning = "YES"
|
||||
debugServiceExtension = "internal"
|
||||
allowLocationSimulation = "YES">
|
||||
<MacroExpansion>
|
||||
<BuildableReference
|
||||
BuildableIdentifier = "primary"
|
||||
BlueprintIdentifier = "08B91D251AC26FC100335131"
|
||||
BuildableName = "libnyquist.a"
|
||||
BlueprintName = "libnyquist"
|
||||
ReferencedContainer = "container:libnyquist.xcodeproj">
|
||||
</BuildableReference>
|
||||
</MacroExpansion>
|
||||
<AdditionalOptions>
|
||||
</AdditionalOptions>
|
||||
</LaunchAction>
|
||||
<ProfileAction
|
||||
buildConfiguration = "Release"
|
||||
shouldUseLaunchSchemeArgsEnv = "YES"
|
||||
savedToolIdentifier = ""
|
||||
useCustomWorkingDirectory = "NO"
|
||||
debugDocumentVersioning = "YES">
|
||||
<BuildableProductRunnable
|
||||
runnableDebuggingMode = "0">
|
||||
<BuildableReference
|
||||
BuildableIdentifier = "primary"
|
||||
BlueprintIdentifier = "08B91D251AC26FC100335131"
|
||||
BuildableName = "libnyquist.a"
|
||||
BlueprintName = "libnyquist"
|
||||
ReferencedContainer = "container:libnyquist.xcodeproj">
|
||||
</BuildableReference>
|
||||
</BuildableProductRunnable>
|
||||
</ProfileAction>
|
||||
<AnalyzeAction
|
||||
buildConfiguration = "Debug">
|
||||
</AnalyzeAction>
|
||||
<ArchiveAction
|
||||
buildConfiguration = "Release"
|
||||
revealArchiveInOrganizer = "YES">
|
||||
</ArchiveAction>
|
||||
</Scheme>
|
||||
File diff suppressed because it is too large
Load Diff
@ -1,5 +0,0 @@
|
||||
wpinclude_HEADERS = wavpack.h
|
||||
wpincludedir = $(prefix)/include/wavpack
|
||||
|
||||
MAINTAINERCLEANFILES = \
|
||||
Makefile.in
|
||||
Loading…
Reference in New Issue