Undo dunce boy move

nix
Owen Green 5 years ago
parent 5afdad3865
commit 77ab8cb91a

@ -1,122 +0,0 @@
---
Language: Cpp
# BasedOnStyle: LLVM
AccessModifierOffset: -2
AlignAfterOpenBracket: Align
AlignConsecutiveAssignments: false
AlignConsecutiveDeclarations: true
AlignEscapedNewlines: Right
AlignOperands: true
AlignTrailingComments: true
AllowAllParametersOfDeclarationOnNextLine: true
AllowShortBlocksOnASingleLine: true
AllowShortCaseLabelsOnASingleLine: true
AllowShortFunctionsOnASingleLine: All
AllowShortLambdasOnASingleLine: true
AllowShortIfStatementsOnASingleLine: true
AllowShortLoopsOnASingleLine: true
AlwaysBreakAfterDefinitionReturnType: None
AlwaysBreakAfterReturnType: None
AlwaysBreakBeforeMultilineStrings: false
AlwaysBreakTemplateDeclarations: true
BinPackArguments: true
BinPackParameters: true
BraceWrapping:
AfterClass: true
AfterControlStatement: true
AfterEnum: false
AfterFunction: true
AfterNamespace: false
AfterObjCDeclaration: false
AfterStruct: true
AfterUnion: true
AfterExternBlock: false
BeforeCatch: false
BeforeElse: true
IndentBraces: false
SplitEmptyFunction: false
SplitEmptyRecord: false
SplitEmptyNamespace: false
BreakBeforeBinaryOperators: None
BreakBeforeBraces: Custom
BreakBeforeInheritanceComma: false
BreakBeforeTernaryOperators: true
BreakConstructorInitializersBeforeComma: false
BreakConstructorInitializers: BeforeColon
BreakAfterJavaFieldAnnotations: false
BreakStringLiterals: true
ColumnLimit: 80
CommentPragmas: '^ IWYU pragma:'
CompactNamespaces: false
ConstructorInitializerAllOnOneLineOrOnePerLine: false
ConstructorInitializerIndentWidth: 4
ContinuationIndentWidth: 4
Cpp11BracedListStyle: true
DerivePointerAlignment: false
DisableFormat: false
ExperimentalAutoDetectBinPacking: false
FixNamespaceComments: true
ForEachMacros:
- foreach
- Q_FOREACH
- BOOST_FOREACH
IncludeBlocks: Merge
# Try and group includes by 'locality'
# We use "" with rel paths for headers in same repo
# Headers in quotes wiht no relative path at top
# Group ../ and ../../ with different priorities, so they get sorted separately
# <> headers *with a folder break* likely not to be STL -> STL / systems headers last
IncludeCategories:
- Regex: '<.+/'
Priority: 4
- Regex: '"../../'
Priority: 3
- Regex: '../' #
Priority: 2
- Regex: '".+hpp"'
Priority: 1
IncludeIsMainRegex: '(Test)?$'
IndentCaseLabels: false
IndentPPDirectives: None
IndentWidth: 2
IndentWrappedFunctionNames: false
JavaScriptQuotes: Leave
JavaScriptWrapImports: true
KeepEmptyLinesAtTheStartOfBlocks: true
MacroBlockBegin: ''
MacroBlockEnd: ''
MaxEmptyLinesToKeep: 2
NamespaceIndentation: None
ObjCBinPackProtocolList: Auto
ObjCBlockIndentWidth: 2
ObjCSpaceAfterProperty: false
ObjCSpaceBeforeProtocolList: true
PenaltyBreakAssignment: 2
PenaltyBreakBeforeFirstCallParameter: 19
PenaltyBreakComment: 300
PenaltyBreakFirstLessLess: 120
PenaltyBreakString: 1000
PenaltyExcessCharacter: 1000000
PenaltyReturnTypeOnItsOwnLine: 60
PointerAlignment: Left
ReflowComments: true
SortIncludes: true
SortUsingDeclarations: true
SpaceAfterCStyleCast: true
SpaceAfterTemplateKeyword: true
SpaceBeforeAssignmentOperators: true
SpaceBeforeCtorInitializerColon: true
SpaceBeforeInheritanceColon: true
SpaceBeforeParens: ControlStatements
SpaceBeforeRangeBasedForLoopColon: true
SpaceInEmptyParentheses: false
SpacesBeforeTrailingComments: 1
SpacesInAngles: false
SpacesInContainerLiterals: true
SpacesInCStyleCastParentheses: false
SpacesInParentheses: false
SpacesInSquareBrackets: false
Standard: Cpp11
TabWidth: 8
UseTab: Never
...

@ -1,10 +0,0 @@
{
"configurations": [
{
"name": "fluid_decomposition_supercollider",
"cacheRoot": "Z:\\dev\\flucoma-supercollider\\win",
"inheritEnvironments": [],
"variables": []
}
]
}

@ -1,98 +0,0 @@
(
b = Buffer.read(s,File.realpath(FluidBufStats.class.filenameSymbol).dirname.withTrailingSlash ++ "../AudioFiles/Tremblay-ASWINE-ScratchySynth-M.wav");
~slicesBuffer = Buffer.new(s);
~pitchBuffer = Buffer.new(s);
~statsBuffer = Buffer.new(s);
~windowSize = 1024;
~hopSize = 512;
)
(
//split in various chunks, collecting the indices in an array
FluidBufOnsetSlice.process(s,b, minSliceLength: 10, metric: 9, threshold: 0.4, filterSize: 7, indices: ~slicesBuffer, action:{
~slicesBuffer.loadToFloatArray(action: {|a|
~slices = a;
if(~slices.size == 1 && ~slices[0] == -1) {"WARNING: No slices found".postln; ~slices=[];}{};
//Make sure we have index points at the start and end of the file (inefficiently)
~slices = [0] ++ ~slices ++ [b.numFrames];
//no duplciates
~slices.asSet.asArray.sort;
~slices.postln;
})
});
)
//describe the whole input too, here using pitch, and collecting the values in an array, dismissing the (interleaved) confidence.
FluidBufPitch.process(s,b,features:~pitchBuffer,windowSize:~windowSize,hopSize:~hopSize,action:{
~pitchBuffer.loadToFloatArray(action: {|array|
~pitches = array.unlace(2)[0];
~pitches.postln;
})
});
~pitches
// iterate through each slice, taking the median of the first derivative of the pitch of each
(
~stats = Array.new;
Routine({
~slices.doAdjacentPairs({
arg start,end;
var duration;
duration.postln;
//convert slice points to frame numbers (divide by analysis hop size)
start = (start / 512).asInt;
duration = ((end - start)/512).max(2).asInt; //we don't want to take the stats of single frames
FluidBufStats.process(s,~pitches,start,duration,0,1,~statsBuffer,1, action:
{~statsBuffer.loadToFloatArray(action: {
arg array;
~stats = ~stats.add(array[5]);
"% % %\n".postf(start,duration, array[5]);
})});
});
"Done".postln;
}).play;
)
~sortedSlices = Array.newFrom(e).slide(2,1).clump(2)
//obtain the order of indices that would sort the stats
(
SynthDef(\help_pitchsort,
{ |buf,start,end|
var l, sig;
l = Line.ar(start,end,(end-start)*SampleDur.ir,doneAction:Done.freeSelf);
sig = BufRd.ar(1,buf,l);
Out.ar(0,sig)
}).add;
)
b.play
g.size
g.order
g[39]
h = Array.newFrom(e).slide(2,1).clump(2)[g.order]
Array.newFrom(e).slide(2,1).clump(2)[39]
~potch = Buffer.new
FluidBufPitch.process(s,b,features:~potch,
action:{c.loadToFloatArray(action: {|array| f = array.unlace(2)[0]; f.postln;})});
(
~ps = Pseq(~sortedSlices,inf).asStream;
Routine({
~sortedSlices.do({
~bounds = ~ps.next;
Synth(\help_pitchsort,[\buf,b,\start,~bounds[0],\end,~bounds[1]]);
~bounds.postln;
((~bounds[1]-~bounds[0])/b.sampleRate).wait;
})
}).play
)

Binary file not shown.

@ -1,519 +0,0 @@
# This is the CMakeCache file.
# For build in directory: /media/psf/Home/dev/flucoma-sc/linuxbuild
# It was generated by CMake: /usr/bin/cmake
# You can edit this file to change values found and used by cmake.
# If you do not want to change any of the values, simply exit the editor.
# If you do want to change a value, simply edit, save, and exit the editor.
# The syntax for the file is as follows:
# KEY:TYPE=VALUE
# KEY is the name of a variable in the cache.
# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!.
# VALUE is the current value for the KEY.
########################
# EXTERNAL cache entries
########################
//Path to a program.
CMAKE_ADDR2LINE:FILEPATH=/usr/bin/addr2line
//Path to a program.
CMAKE_AR:FILEPATH=/usr/bin/ar
CMAKE_BUILD_TYPE:STRING=Release
//Enable/Disable color output during build.
CMAKE_COLOR_MAKEFILE:BOOL=ON
//CXX compiler
CMAKE_CXX_COMPILER:FILEPATH=/usr/bin/c++
//A wrapper around 'ar' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_CXX_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar-7
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-7
//Flags used by the CXX compiler during all build types.
CMAKE_CXX_FLAGS:STRING=
//Flags used by the CXX compiler during DEBUG builds.
CMAKE_CXX_FLAGS_DEBUG:STRING=-g
//Flags used by the CXX compiler during MINSIZEREL builds.
CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
//Flags used by the CXX compiler during RELEASE builds.
CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
//Flags used by the CXX compiler during RELWITHDEBINFO builds.
CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
//Path to a program.
CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND
//Flags used by the linker during all build types.
CMAKE_EXE_LINKER_FLAGS:STRING=
//Flags used by the linker during DEBUG builds.
CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING=
//Flags used by the linker during MINSIZEREL builds.
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING=
//Flags used by the linker during RELEASE builds.
CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING=
//Flags used by the linker during RELWITHDEBINFO builds.
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
//Enable/Disable output of compile commands during generation.
CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=
CMAKE_INSTALL_PREFIX:PATH=/media/psf/Home/dev/flucoma-sc/install
//Path to a program.
CMAKE_LINKER:FILEPATH=/usr/bin/ld
//Path to a program.
CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/make
//Flags used by the linker during the creation of modules during
// all build types.
CMAKE_MODULE_LINKER_FLAGS:STRING=
//Flags used by the linker during the creation of modules during
// DEBUG builds.
CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING=
//Flags used by the linker during the creation of modules during
// MINSIZEREL builds.
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING=
//Flags used by the linker during the creation of modules during
// RELEASE builds.
CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING=
//Flags used by the linker during the creation of modules during
// RELWITHDEBINFO builds.
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
//Path to a program.
CMAKE_NM:FILEPATH=/usr/bin/nm
//Path to a program.
CMAKE_OBJCOPY:FILEPATH=/usr/bin/objcopy
//Path to a program.
CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump
//Value Computed by CMake
CMAKE_PROJECT_DESCRIPTION:STATIC=
//Value Computed by CMake
CMAKE_PROJECT_HOMEPAGE_URL:STATIC=
//Value Computed by CMake
CMAKE_PROJECT_NAME:STATIC=flucoma-sc
//Path to a program.
CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib
//Path to a program.
CMAKE_READELF:FILEPATH=/usr/bin/readelf
//Flags used by the linker during the creation of shared libraries
// during all build types.
CMAKE_SHARED_LINKER_FLAGS:STRING=
//Flags used by the linker during the creation of shared libraries
// during DEBUG builds.
CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING=
//Flags used by the linker during the creation of shared libraries
// during MINSIZEREL builds.
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING=
//Flags used by the linker during the creation of shared libraries
// during RELEASE builds.
CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING=
//Flags used by the linker during the creation of shared libraries
// during RELWITHDEBINFO builds.
CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING=
//If set, runtime paths are not added when installing shared libraries,
// but are added when building.
CMAKE_SKIP_INSTALL_RPATH:BOOL=NO
//If set, runtime paths are not added when using shared libraries.
CMAKE_SKIP_RPATH:BOOL=NO
//Flags used by the linker during the creation of static libraries
// during all build types.
CMAKE_STATIC_LINKER_FLAGS:STRING=
//Flags used by the linker during the creation of static libraries
// during DEBUG builds.
CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING=
//Flags used by the linker during the creation of static libraries
// during MINSIZEREL builds.
CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING=
//Flags used by the linker during the creation of static libraries
// during RELEASE builds.
CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING=
//Flags used by the linker during the creation of static libraries
// during RELWITHDEBINFO builds.
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING=
//Path to a program.
CMAKE_STRIP:FILEPATH=/usr/bin/strip
//If this value is on, makefiles will be generated without the
// .SILENT directive, and all commands will be echoed to the console
// during the make. This is useful for debugging only. With Visual
// Studio IDE projects all commands are done without /nologo.
CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE
EIGEN_PATH:PATH=/home/owen/mac/dev/eigen
//Directory under which to collect all populated content
FETCHCONTENT_BASE_DIR:PATH=/media/psf/Home/dev/flucoma-sc/linuxbuild/_deps
//Disables all attempts to download or update content and assumes
// source dirs already exist
FETCHCONTENT_FULLY_DISCONNECTED:BOOL=OFF
//Enables QUIET option for all content population
FETCHCONTENT_QUIET:BOOL=ON
//When not empty, overrides where to find pre-populated content
// for Eigen
FETCHCONTENT_SOURCE_DIR_EIGEN:PATH=/home/owen/mac/dev/eigen
//When not empty, overrides where to find pre-populated content
// for flucoma-core
FETCHCONTENT_SOURCE_DIR_FLUCOMA-CORE:PATH=/home/owen/mac/dev/flucoma-core
//When not empty, overrides where to find pre-populated content
// for HISSTools
FETCHCONTENT_SOURCE_DIR_HISSTOOLS:PATH=/home/owen/mac/dev/HISSTools_Library
//Enables UPDATE_DISCONNECTED behavior for all content population
FETCHCONTENT_UPDATES_DISCONNECTED:BOOL=OFF
//Flag for using vector instruction sets
FLUID_ARCH:STRING=-mavx
FLUID_CLI_PATH:PATH=/home/owen/mac/dev/flucoma-cli
FLUID_DOCS_PATH:PATH=/home/owen/mac/dev/flucoma-docs
FLUID_MAX_PATH:PATH=/home/owen/mac/Documents/Max 7/Packages/flucoma-max
FLUID_M_PATH:PATH=/home/owen/mac/dev/fluid_manipulation
//Name for published package
FLUID_PACKAGE_NAME:STRING=FluidCorpusManipulation
FLUID_PATH:PATH=/home/owen/mac/dev/flucoma-core
FLUID_PD_PATH:PATH=/home/owen/mac/dev/flucoma-pd
FLUID_SC_PATH:PATH=/home/owen/mac/dev/flucoma-sc
//Dependencies for the target
FluidAmpGate_LIB_DEPENDS:STATIC=general;HISSTools_FFT;
//Dependencies for the target
FluidAmpSlice_LIB_DEPENDS:STATIC=general;HISSTools_FFT;
//Dependencies for the target
FluidBufAmpGate_LIB_DEPENDS:STATIC=general;HISSTools_FFT;
//Dependencies for the target
FluidBufAmpSlice_LIB_DEPENDS:STATIC=general;HISSTools_FFT;
//Dependencies for the target
FluidBufCompose_LIB_DEPENDS:STATIC=general;HISSTools_FFT;
//Dependencies for the target
FluidBufFlatten_LIB_DEPENDS:STATIC=general;HISSTools_FFT;
//Dependencies for the target
FluidBufHPSS_LIB_DEPENDS:STATIC=general;HISSTools_FFT;
//Dependencies for the target
FluidBufLoudness_LIB_DEPENDS:STATIC=general;HISSTools_FFT;
//Dependencies for the target
FluidBufMFCC_LIB_DEPENDS:STATIC=general;HISSTools_FFT;
//Dependencies for the target
FluidBufMelBands_LIB_DEPENDS:STATIC=general;HISSTools_FFT;
//Dependencies for the target
FluidBufNMF_LIB_DEPENDS:STATIC=general;HISSTools_FFT;
//Dependencies for the target
FluidBufNoveltySlice_LIB_DEPENDS:STATIC=general;HISSTools_FFT;
//Dependencies for the target
FluidBufOnsetSlice_LIB_DEPENDS:STATIC=general;HISSTools_FFT;
//Dependencies for the target
FluidBufPitch_LIB_DEPENDS:STATIC=general;HISSTools_FFT;
//Dependencies for the target
FluidBufSines_LIB_DEPENDS:STATIC=general;HISSTools_FFT;
//Dependencies for the target
FluidBufSpectralShape_LIB_DEPENDS:STATIC=general;HISSTools_FFT;
//Dependencies for the target
FluidBufStats_LIB_DEPENDS:STATIC=general;HISSTools_FFT;
//Dependencies for the target
FluidBufThreadDemo_LIB_DEPENDS:STATIC=general;HISSTools_FFT;
//Dependencies for the target
FluidBufTransientSlice_LIB_DEPENDS:STATIC=general;HISSTools_FFT;
//Dependencies for the target
FluidBufTransients_LIB_DEPENDS:STATIC=general;HISSTools_FFT;
//Dependencies for the target
FluidGain_LIB_DEPENDS:STATIC=general;HISSTools_FFT;
//Dependencies for the target
FluidHPSS_LIB_DEPENDS:STATIC=general;HISSTools_FFT;
//Dependencies for the target
FluidLoudness_LIB_DEPENDS:STATIC=general;HISSTools_FFT;
//Dependencies for the target
FluidMFCC_LIB_DEPENDS:STATIC=general;HISSTools_FFT;
//Dependencies for the target
FluidManipulation_LIB_DEPENDS:STATIC=general;HISSTools_FFT;
//Dependencies for the target
FluidMelBands_LIB_DEPENDS:STATIC=general;HISSTools_FFT;
//Dependencies for the target
FluidMessageTest_LIB_DEPENDS:STATIC=general;HISSTools_FFT;
//Dependencies for the target
FluidNMFCross_LIB_DEPENDS:STATIC=general;HISSTools_FFT;
//Dependencies for the target
FluidNMFFilter_LIB_DEPENDS:STATIC=general;HISSTools_FFT;
//Dependencies for the target
FluidNMFMatch_LIB_DEPENDS:STATIC=general;HISSTools_FFT;
//Dependencies for the target
FluidNMFMorph_LIB_DEPENDS:STATIC=general;HISSTools_FFT;
//Dependencies for the target
FluidNoveltySlice_LIB_DEPENDS:STATIC=general;HISSTools_FFT;
//Dependencies for the target
FluidOnsetSlice_LIB_DEPENDS:STATIC=general;HISSTools_FFT;
//Dependencies for the target
FluidPitch_LIB_DEPENDS:STATIC=general;HISSTools_FFT;
//Dependencies for the target
FluidSTFTPass_LIB_DEPENDS:STATIC=general;HISSTools_FFT;
//Dependencies for the target
FluidSines_LIB_DEPENDS:STATIC=general;HISSTools_FFT;
//Dependencies for the target
FluidSpectralShape_LIB_DEPENDS:STATIC=general;HISSTools_FFT;
//Dependencies for the target
FluidSubscriberProviderTest_LIB_DEPENDS:STATIC=general;HISSTools_FFT;
//Dependencies for the target
FluidTransientSlice_LIB_DEPENDS:STATIC=general;HISSTools_FFT;
//Dependencies for the target
FluidTransients_LIB_DEPENDS:STATIC=general;HISSTools_FFT;
//Git command line client
GIT_EXECUTABLE:FILEPATH=/usr/bin/git
HISS_PATH:PATH=/home/owen/mac/dev/HISSTools_Library
MAX_SDK_PATH:PATH=/home/owen/mac/Downloads/max-sdk-8.0.3
PD_PATH:PATH=/home/owen/mac/dev/pure-data-source
//Prefix for assembling SC packages
SC_INSTALL_PREFIX:PATH=.
//Where in the hierarchy to write sc plugins
SC_LIBRARY_OUTPUT_PREFIX:STRING=release-packaging
SC_PATH:PATH=/home/owen/mac/dev/supercollider
//Value Computed by CMake
flucoma-core_BINARY_DIR:STATIC=/media/psf/Home/dev/flucoma-sc/linuxbuild/_deps/flucoma-core-build
//Value Computed by CMake
flucoma-core_SOURCE_DIR:STATIC=/home/owen/mac/dev/flucoma-core
//Value Computed by CMake
flucoma-sc_BINARY_DIR:STATIC=/media/psf/Home/dev/flucoma-sc/linuxbuild
//Value Computed by CMake
flucoma-sc_SOURCE_DIR:STATIC=/media/psf/Home/dev/flucoma-sc
########################
# INTERNAL cache entries
########################
//ADVANCED property for variable: CMAKE_ADDR2LINE
CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_AR
CMAKE_AR-ADVANCED:INTERNAL=1
//STRINGS property for variable: CMAKE_BUILD_TYPE
CMAKE_BUILD_TYPE-STRINGS:INTERNAL=Debug;Release;RelWithDebInfo;Test
//This is the directory where this CMakeCache.txt was created
CMAKE_CACHEFILE_DIR:INTERNAL=/media/psf/Home/dev/flucoma-sc/linuxbuild
//Major version of cmake used to create the current loaded cache
CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3
//Minor version of cmake used to create the current loaded cache
CMAKE_CACHE_MINOR_VERSION:INTERNAL=17
//Patch version of cmake used to create the current loaded cache
CMAKE_CACHE_PATCH_VERSION:INTERNAL=0
//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE
CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1
//Path to CMake executable.
CMAKE_COMMAND:INTERNAL=/usr/bin/cmake
//Path to cpack program executable.
CMAKE_CPACK_COMMAND:INTERNAL=/usr/bin/cpack
//Path to ctest program executable.
CMAKE_CTEST_COMMAND:INTERNAL=/usr/bin/ctest
//ADVANCED property for variable: CMAKE_CXX_COMPILER
CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR
CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB
CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS
CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG
CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL
CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE
CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO
CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_DLLTOOL
CMAKE_DLLTOOL-ADVANCED:INTERNAL=1
//Path to cache edit program executable.
CMAKE_EDIT_COMMAND:INTERNAL=/usr/bin/ccmake
//Executable file format
CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS
CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG
CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE
CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS
CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1
//Name of external makefile project generator.
CMAKE_EXTRA_GENERATOR:INTERNAL=
//Name of generator.
CMAKE_GENERATOR:INTERNAL=Unix Makefiles
//Generator instance identifier.
CMAKE_GENERATOR_INSTANCE:INTERNAL=
//Name of generator platform.
CMAKE_GENERATOR_PLATFORM:INTERNAL=
//Name of generator toolset.
CMAKE_GENERATOR_TOOLSET:INTERNAL=
//Source directory with the top level CMakeLists.txt file for this
// project
CMAKE_HOME_DIRECTORY:INTERNAL=/media/psf/Home/dev/flucoma-sc
//Install .so files without execute permission.
CMAKE_INSTALL_SO_NO_EXE:INTERNAL=1
//ADVANCED property for variable: CMAKE_LINKER
CMAKE_LINKER-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MAKE_PROGRAM
CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS
CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG
CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE
CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_NM
CMAKE_NM-ADVANCED:INTERNAL=1
//number of local generators
CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=43
//ADVANCED property for variable: CMAKE_OBJCOPY
CMAKE_OBJCOPY-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_OBJDUMP
CMAKE_OBJDUMP-ADVANCED:INTERNAL=1
//Platform information initialized
CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1
//ADVANCED property for variable: CMAKE_RANLIB
CMAKE_RANLIB-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_READELF
CMAKE_READELF-ADVANCED:INTERNAL=1
//Path to CMake installation.
CMAKE_ROOT:INTERNAL=/usr/share/cmake-3.17
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS
CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG
CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE
CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH
CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SKIP_RPATH
CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS
CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG
CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL
CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE
CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STRIP
CMAKE_STRIP-ADVANCED:INTERNAL=1
//uname command
CMAKE_UNAME:INTERNAL=/bin/uname
//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE
CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1
//Details about finding Git
FIND_PACKAGE_MESSAGE_DETAILS_Git:INTERNAL=[/usr/bin/git][v2.17.1()]
//ADVANCED property for variable: GIT_EXECUTABLE
GIT_EXECUTABLE-ADVANCED:INTERNAL=1

@ -1,88 +0,0 @@
set(CMAKE_CXX_COMPILER "/usr/bin/c++")
set(CMAKE_CXX_COMPILER_ARG1 "")
set(CMAKE_CXX_COMPILER_ID "GNU")
set(CMAKE_CXX_COMPILER_VERSION "7.5.0")
set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "")
set(CMAKE_CXX_COMPILER_WRAPPER "")
set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "14")
set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17")
set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters")
set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates")
set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates")
set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17")
set(CMAKE_CXX20_COMPILE_FEATURES "")
set(CMAKE_CXX_PLATFORM_ID "Linux")
set(CMAKE_CXX_SIMULATE_ID "")
set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "")
set(CMAKE_CXX_SIMULATE_VERSION "")
set(CMAKE_AR "/usr/bin/ar")
set(CMAKE_CXX_COMPILER_AR "/usr/bin/gcc-ar-7")
set(CMAKE_RANLIB "/usr/bin/ranlib")
set(CMAKE_CXX_COMPILER_RANLIB "/usr/bin/gcc-ranlib-7")
set(CMAKE_LINKER "/usr/bin/ld")
set(CMAKE_MT "")
set(CMAKE_COMPILER_IS_GNUCXX 1)
set(CMAKE_CXX_COMPILER_LOADED 1)
set(CMAKE_CXX_COMPILER_WORKS TRUE)
set(CMAKE_CXX_ABI_COMPILED TRUE)
set(CMAKE_COMPILER_IS_MINGW )
set(CMAKE_COMPILER_IS_CYGWIN )
if(CMAKE_COMPILER_IS_CYGWIN)
set(CYGWIN 1)
set(UNIX 1)
endif()
set(CMAKE_CXX_COMPILER_ENV_VAR "CXX")
if(CMAKE_COMPILER_IS_MINGW)
set(MINGW 1)
endif()
set(CMAKE_CXX_COMPILER_ID_RUN 1)
set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;CPP)
set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC)
foreach (lang C OBJC OBJCXX)
if (CMAKE_${lang}_COMPILER_ID_RUN)
foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS)
list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension})
endforeach()
endif()
endforeach()
set(CMAKE_CXX_LINKER_PREFERENCE 30)
set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1)
# Save compiler ABI information.
set(CMAKE_CXX_SIZEOF_DATA_PTR "8")
set(CMAKE_CXX_COMPILER_ABI "ELF")
set(CMAKE_CXX_LIBRARY_ARCHITECTURE "x86_64-linux-gnu")
if(CMAKE_CXX_SIZEOF_DATA_PTR)
set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}")
endif()
if(CMAKE_CXX_COMPILER_ABI)
set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}")
endif()
if(CMAKE_CXX_LIBRARY_ARCHITECTURE)
set(CMAKE_LIBRARY_ARCHITECTURE "x86_64-linux-gnu")
endif()
set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "")
if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX)
set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}")
endif()
set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/usr/include/c++/7;/usr/include/x86_64-linux-gnu/c++/7;/usr/include/c++/7/backward;/usr/lib/gcc/x86_64-linux-gnu/7/include;/usr/local/include;/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed;/usr/include/x86_64-linux-gnu;/usr/include")
set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc_s;gcc;c;gcc_s;gcc")
set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/7;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib")
set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")

@ -1,15 +0,0 @@
set(CMAKE_HOST_SYSTEM "Linux-5.3.0-45-generic")
set(CMAKE_HOST_SYSTEM_NAME "Linux")
set(CMAKE_HOST_SYSTEM_VERSION "5.3.0-45-generic")
set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64")
set(CMAKE_SYSTEM "Linux-5.3.0-45-generic")
set(CMAKE_SYSTEM_NAME "Linux")
set(CMAKE_SYSTEM_VERSION "5.3.0-45-generic")
set(CMAKE_SYSTEM_PROCESSOR "x86_64")
set(CMAKE_CROSSCOMPILING "FALSE")
set(CMAKE_SYSTEM_LOADED 1)

@ -1,660 +0,0 @@
/* This source file must have a .cpp extension so that all C++ compilers
recognize the extension without flags. Borland does not know .cxx for
example. */
#ifndef __cplusplus
# error "A C compiler has been selected for C++."
#endif
/* Version number components: V=Version, R=Revision, P=Patch
Version date components: YYYY=Year, MM=Month, DD=Day */
#if defined(__COMO__)
# define COMPILER_ID "Comeau"
/* __COMO_VERSION__ = VRR */
# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100)
# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100)
#elif defined(__INTEL_COMPILER) || defined(__ICC)
# define COMPILER_ID "Intel"
# if defined(_MSC_VER)
# define SIMULATE_ID "MSVC"
# endif
# if defined(__GNUC__)
# define SIMULATE_ID "GNU"
# endif
/* __INTEL_COMPILER = VRP */
# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100)
# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10)
# if defined(__INTEL_COMPILER_UPDATE)
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE)
# else
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10)
# endif
# if defined(__INTEL_COMPILER_BUILD_DATE)
/* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */
# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE)
# endif
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
# endif
# if defined(__GNUC__)
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
# elif defined(__GNUG__)
# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)
# endif
# if defined(__GNUC_MINOR__)
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
# endif
# if defined(__GNUC_PATCHLEVEL__)
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
# endif
#elif defined(__PATHCC__)
# define COMPILER_ID "PathScale"
# define COMPILER_VERSION_MAJOR DEC(__PATHCC__)
# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__)
# if defined(__PATHCC_PATCHLEVEL__)
# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__)
# endif
#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__)
# define COMPILER_ID "Embarcadero"
# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF)
# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF)
# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF)
#elif defined(__BORLANDC__)
# define COMPILER_ID "Borland"
/* __BORLANDC__ = 0xVRR */
# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8)
# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF)
#elif defined(__WATCOMC__) && __WATCOMC__ < 1200
# define COMPILER_ID "Watcom"
/* __WATCOMC__ = VVRR */
# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100)
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
# if (__WATCOMC__ % 10) > 0
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
# endif
#elif defined(__WATCOMC__)
# define COMPILER_ID "OpenWatcom"
/* __WATCOMC__ = VVRP + 1100 */
# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100)
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
# if (__WATCOMC__ % 10) > 0
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
# endif
#elif defined(__SUNPRO_CC)
# define COMPILER_ID "SunPro"
# if __SUNPRO_CC >= 0x5100
/* __SUNPRO_CC = 0xVRRP */
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12)
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF)
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF)
# else
/* __SUNPRO_CC = 0xVRP */
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8)
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF)
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF)
# endif
#elif defined(__HP_aCC)
# define COMPILER_ID "HP"
/* __HP_aCC = VVRRPP */
# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000)
# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100)
# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100)
#elif defined(__DECCXX)
# define COMPILER_ID "Compaq"
/* __DECCXX_VER = VVRRTPPPP */
# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000)
# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100)
# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000)
#elif defined(__IBMCPP__) && defined(__COMPILER_VER__)
# define COMPILER_ID "zOS"
/* __IBMCPP__ = VRP */
# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
#elif defined(__ibmxl__) && defined(__clang__)
# define COMPILER_ID "XLClang"
# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__)
# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__)
# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__)
# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__)
#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800
# define COMPILER_ID "XL"
/* __IBMCPP__ = VRP */
# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800
# define COMPILER_ID "VisualAge"
/* __IBMCPP__ = VRP */
# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
#elif defined(__PGI)
# define COMPILER_ID "PGI"
# define COMPILER_VERSION_MAJOR DEC(__PGIC__)
# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__)
# if defined(__PGIC_PATCHLEVEL__)
# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__)
# endif
#elif defined(_CRAYC)
# define COMPILER_ID "Cray"
# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR)
# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR)
#elif defined(__TI_COMPILER_VERSION__)
# define COMPILER_ID "TI"
/* __TI_COMPILER_VERSION__ = VVVRRRPPP */
# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000)
# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000)
# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000)
#elif defined(__FUJITSU) || defined(__FCC_VERSION) || defined(__fcc_version)
# define COMPILER_ID "Fujitsu"
#elif defined(__ghs__)
# define COMPILER_ID "GHS"
/* __GHS_VERSION_NUMBER = VVVVRP */
# ifdef __GHS_VERSION_NUMBER
# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100)
# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10)
# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10)
# endif
#elif defined(__SCO_VERSION__)
# define COMPILER_ID "SCO"
#elif defined(__ARMCC_VERSION) && !defined(__clang__)
# define COMPILER_ID "ARMCC"
#if __ARMCC_VERSION >= 1000000
/* __ARMCC_VERSION = VRRPPPP */
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000)
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100)
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
#else
/* __ARMCC_VERSION = VRPPPP */
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000)
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10)
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
#endif
#elif defined(__clang__) && defined(__apple_build_version__)
# define COMPILER_ID "AppleClang"
# if defined(_MSC_VER)
# define SIMULATE_ID "MSVC"
# endif
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
# endif
# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__)
#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION)
# define COMPILER_ID "ARMClang"
# define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000)
# define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100)
# define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000)
# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION)
#elif defined(__clang__)
# define COMPILER_ID "Clang"
# if defined(_MSC_VER)
# define SIMULATE_ID "MSVC"
# endif
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
# endif
#elif defined(__GNUC__) || defined(__GNUG__)
# define COMPILER_ID "GNU"
# if defined(__GNUC__)
# define COMPILER_VERSION_MAJOR DEC(__GNUC__)
# else
# define COMPILER_VERSION_MAJOR DEC(__GNUG__)
# endif
# if defined(__GNUC_MINOR__)
# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__)
# endif
# if defined(__GNUC_PATCHLEVEL__)
# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
# endif
#elif defined(_MSC_VER)
# define COMPILER_ID "MSVC"
/* _MSC_VER = VVRR */
# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100)
# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100)
# if defined(_MSC_FULL_VER)
# if _MSC_VER >= 1400
/* _MSC_FULL_VER = VVRRPPPPP */
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000)
# else
/* _MSC_FULL_VER = VVRRPPPP */
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000)
# endif
# endif
# if defined(_MSC_BUILD)
# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD)
# endif
#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__)
# define COMPILER_ID "ADSP"
#if defined(__VISUALDSPVERSION__)
/* __VISUALDSPVERSION__ = 0xVVRRPP00 */
# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24)
# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF)
# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF)
#endif
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
# define COMPILER_ID "IAR"
# if defined(__VER__) && defined(__ICCARM__)
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000)
# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000)
# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000)
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__))
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100)
# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100))
# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__)
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
# endif
/* These compilers are either not known or too old to define an
identification macro. Try to identify the platform and guess that
it is the native compiler. */
#elif defined(__hpux) || defined(__hpua)
# define COMPILER_ID "HP"
#else /* unknown compiler */
# define COMPILER_ID ""
#endif
/* Construct the string literal in pieces to prevent the source from
getting matched. Store it in a pointer rather than an array
because some compilers will just produce instructions to fill the
array rather than assigning a pointer to a static array. */
char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";
#ifdef SIMULATE_ID
char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";
#endif
#ifdef __QNXNTO__
char const* qnxnto = "INFO" ":" "qnxnto[]";
#endif
#if defined(__CRAYXE) || defined(__CRAYXC)
char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
#endif
#define STRINGIFY_HELPER(X) #X
#define STRINGIFY(X) STRINGIFY_HELPER(X)
/* Identify known platforms by name. */
#if defined(__linux) || defined(__linux__) || defined(linux)
# define PLATFORM_ID "Linux"
#elif defined(__CYGWIN__)
# define PLATFORM_ID "Cygwin"
#elif defined(__MINGW32__)
# define PLATFORM_ID "MinGW"
#elif defined(__APPLE__)
# define PLATFORM_ID "Darwin"
#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32)
# define PLATFORM_ID "Windows"
#elif defined(__FreeBSD__) || defined(__FreeBSD)
# define PLATFORM_ID "FreeBSD"
#elif defined(__NetBSD__) || defined(__NetBSD)
# define PLATFORM_ID "NetBSD"
#elif defined(__OpenBSD__) || defined(__OPENBSD)
# define PLATFORM_ID "OpenBSD"
#elif defined(__sun) || defined(sun)
# define PLATFORM_ID "SunOS"
#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)
# define PLATFORM_ID "AIX"
#elif defined(__hpux) || defined(__hpux__)
# define PLATFORM_ID "HP-UX"
#elif defined(__HAIKU__)
# define PLATFORM_ID "Haiku"
#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS)
# define PLATFORM_ID "BeOS"
#elif defined(__QNX__) || defined(__QNXNTO__)
# define PLATFORM_ID "QNX"
#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__)
# define PLATFORM_ID "Tru64"
#elif defined(__riscos) || defined(__riscos__)
# define PLATFORM_ID "RISCos"
#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__)
# define PLATFORM_ID "SINIX"
#elif defined(__UNIX_SV__)
# define PLATFORM_ID "UNIX_SV"
#elif defined(__bsdos__)
# define PLATFORM_ID "BSDOS"
#elif defined(_MPRAS) || defined(MPRAS)
# define PLATFORM_ID "MP-RAS"
#elif defined(__osf) || defined(__osf__)
# define PLATFORM_ID "OSF1"
#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv)
# define PLATFORM_ID "SCO_SV"
#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX)
# define PLATFORM_ID "ULTRIX"
#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX)
# define PLATFORM_ID "Xenix"
#elif defined(__WATCOMC__)
# if defined(__LINUX__)
# define PLATFORM_ID "Linux"
# elif defined(__DOS__)
# define PLATFORM_ID "DOS"
# elif defined(__OS2__)
# define PLATFORM_ID "OS2"
# elif defined(__WINDOWS__)
# define PLATFORM_ID "Windows3x"
# else /* unknown platform */
# define PLATFORM_ID
# endif
#elif defined(__INTEGRITY)
# if defined(INT_178B)
# define PLATFORM_ID "Integrity178"
# else /* regular Integrity */
# define PLATFORM_ID "Integrity"
# endif
#else /* unknown platform */
# define PLATFORM_ID
#endif
/* For windows compilers MSVC and Intel we can determine
the architecture of the compiler being used. This is because
the compilers do not have flags that can change the architecture,
but rather depend on which compiler is being used
*/
#if defined(_WIN32) && defined(_MSC_VER)
# if defined(_M_IA64)
# define ARCHITECTURE_ID "IA64"
# elif defined(_M_X64) || defined(_M_AMD64)
# define ARCHITECTURE_ID "x64"
# elif defined(_M_IX86)
# define ARCHITECTURE_ID "X86"
# elif defined(_M_ARM64)
# define ARCHITECTURE_ID "ARM64"
# elif defined(_M_ARM)
# if _M_ARM == 4
# define ARCHITECTURE_ID "ARMV4I"
# elif _M_ARM == 5
# define ARCHITECTURE_ID "ARMV5I"
# else
# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM)
# endif
# elif defined(_M_MIPS)
# define ARCHITECTURE_ID "MIPS"
# elif defined(_M_SH)
# define ARCHITECTURE_ID "SHx"
# else /* unknown architecture */
# define ARCHITECTURE_ID ""
# endif
#elif defined(__WATCOMC__)
# if defined(_M_I86)
# define ARCHITECTURE_ID "I86"
# elif defined(_M_IX86)
# define ARCHITECTURE_ID "X86"
# else /* unknown architecture */
# define ARCHITECTURE_ID ""
# endif
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
# if defined(__ICCARM__)
# define ARCHITECTURE_ID "ARM"
# elif defined(__ICCRX__)
# define ARCHITECTURE_ID "RX"
# elif defined(__ICCRH850__)
# define ARCHITECTURE_ID "RH850"
# elif defined(__ICCRL78__)
# define ARCHITECTURE_ID "RL78"
# elif defined(__ICCRISCV__)
# define ARCHITECTURE_ID "RISCV"
# elif defined(__ICCAVR__)
# define ARCHITECTURE_ID "AVR"
# elif defined(__ICC430__)
# define ARCHITECTURE_ID "MSP430"
# elif defined(__ICCV850__)
# define ARCHITECTURE_ID "V850"
# elif defined(__ICC8051__)
# define ARCHITECTURE_ID "8051"
# else /* unknown architecture */
# define ARCHITECTURE_ID ""
# endif
#elif defined(__ghs__)
# if defined(__PPC64__)
# define ARCHITECTURE_ID "PPC64"
# elif defined(__ppc__)
# define ARCHITECTURE_ID "PPC"
# elif defined(__ARM__)
# define ARCHITECTURE_ID "ARM"
# elif defined(__x86_64__)
# define ARCHITECTURE_ID "x64"
# elif defined(__i386__)
# define ARCHITECTURE_ID "X86"
# else /* unknown architecture */
# define ARCHITECTURE_ID ""
# endif
#else
# define ARCHITECTURE_ID
#endif
/* Convert integer to decimal digit literals. */
#define DEC(n) \
('0' + (((n) / 10000000)%10)), \
('0' + (((n) / 1000000)%10)), \
('0' + (((n) / 100000)%10)), \
('0' + (((n) / 10000)%10)), \
('0' + (((n) / 1000)%10)), \
('0' + (((n) / 100)%10)), \
('0' + (((n) / 10)%10)), \
('0' + ((n) % 10))
/* Convert integer to hex digit literals. */
#define HEX(n) \
('0' + ((n)>>28 & 0xF)), \
('0' + ((n)>>24 & 0xF)), \
('0' + ((n)>>20 & 0xF)), \
('0' + ((n)>>16 & 0xF)), \
('0' + ((n)>>12 & 0xF)), \
('0' + ((n)>>8 & 0xF)), \
('0' + ((n)>>4 & 0xF)), \
('0' + ((n) & 0xF))
/* Construct a string literal encoding the version number components. */
#ifdef COMPILER_VERSION_MAJOR
char const info_version[] = {
'I', 'N', 'F', 'O', ':',
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[',
COMPILER_VERSION_MAJOR,
# ifdef COMPILER_VERSION_MINOR
'.', COMPILER_VERSION_MINOR,
# ifdef COMPILER_VERSION_PATCH
'.', COMPILER_VERSION_PATCH,
# ifdef COMPILER_VERSION_TWEAK
'.', COMPILER_VERSION_TWEAK,
# endif
# endif
# endif
']','\0'};
#endif
/* Construct a string literal encoding the internal version number. */
#ifdef COMPILER_VERSION_INTERNAL
char const info_version_internal[] = {
'I', 'N', 'F', 'O', ':',
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_',
'i','n','t','e','r','n','a','l','[',
COMPILER_VERSION_INTERNAL,']','\0'};
#endif
/* Construct a string literal encoding the version number components. */
#ifdef SIMULATE_VERSION_MAJOR
char const info_simulate_version[] = {
'I', 'N', 'F', 'O', ':',
's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[',
SIMULATE_VERSION_MAJOR,
# ifdef SIMULATE_VERSION_MINOR
'.', SIMULATE_VERSION_MINOR,
# ifdef SIMULATE_VERSION_PATCH
'.', SIMULATE_VERSION_PATCH,
# ifdef SIMULATE_VERSION_TWEAK
'.', SIMULATE_VERSION_TWEAK,
# endif
# endif
# endif
']','\0'};
#endif
/* Construct the string literal in pieces to prevent the source from
getting matched. Store it in a pointer rather than an array
because some compilers will just produce instructions to fill the
array rather than assigning a pointer to a static array. */
char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";
char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";
#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L
# if defined(__INTEL_CXX11_MODE__)
# if defined(__cpp_aggregate_nsdmi)
# define CXX_STD 201402L
# else
# define CXX_STD 201103L
# endif
# else
# define CXX_STD 199711L
# endif
#elif defined(_MSC_VER) && defined(_MSVC_LANG)
# define CXX_STD _MSVC_LANG
#else
# define CXX_STD __cplusplus
#endif
const char* info_language_dialect_default = "INFO" ":" "dialect_default["
#if CXX_STD > 201703L
"20"
#elif CXX_STD >= 201703L
"17"
#elif CXX_STD >= 201402L
"14"
#elif CXX_STD >= 201103L
"11"
#else
"98"
#endif
"]";
/*--------------------------------------------------------------------------*/
int main(int argc, char* argv[])
{
int require = 0;
require += info_compiler[argc];
require += info_platform[argc];
#ifdef COMPILER_VERSION_MAJOR
require += info_version[argc];
#endif
#ifdef COMPILER_VERSION_INTERNAL
require += info_version_internal[argc];
#endif
#ifdef SIMULATE_ID
require += info_simulate[argc];
#endif
#ifdef SIMULATE_VERSION_MAJOR
require += info_simulate_version[argc];
#endif
#if defined(__CRAYXE) || defined(__CRAYXC)
require += info_cray[argc];
#endif
require += info_language_dialect_default[argc];
(void)argv;
return require;
}

@ -1,16 +0,0 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.17
# Relative path conversion top directories.
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/media/psf/Home/dev/flucoma-sc")
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/media/psf/Home/dev/flucoma-sc/linuxbuild")
# Force unix paths in dependencies.
set(CMAKE_FORCE_UNIX_PATHS 1)
# The C and CXX include file regular expressions for this directory.
set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$")
set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$")
set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN})
set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN})

@ -1,476 +0,0 @@
The system is: Linux - 5.3.0-45-generic - x86_64
Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded.
Compiler: /usr/bin/c++
Build flags:
Id flags:
The output was:
0
Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out"
The CXX compiler identification is GNU, found in "/media/psf/Home/dev/flucoma-sc/linuxbuild/CMakeFiles/3.17.0/CompilerIdCXX/a.out"
Determining if the CXX compiler works passed with the following output:
Change Dir: /media/psf/Home/dev/flucoma-sc/linuxbuild/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_8fbe3/fast && /usr/bin/make -f CMakeFiles/cmTC_8fbe3.dir/build.make CMakeFiles/cmTC_8fbe3.dir/build
make[1]: Entering directory '/media/psf/Home/dev/flucoma-sc/linuxbuild/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_8fbe3.dir/testCXXCompiler.cxx.o
/usr/bin/c++ -o CMakeFiles/cmTC_8fbe3.dir/testCXXCompiler.cxx.o -c /media/psf/Home/dev/flucoma-sc/linuxbuild/CMakeFiles/CMakeTmp/testCXXCompiler.cxx
Linking CXX executable cmTC_8fbe3
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_8fbe3.dir/link.txt --verbose=1
/usr/bin/c++ CMakeFiles/cmTC_8fbe3.dir/testCXXCompiler.cxx.o -o cmTC_8fbe3
make[1]: Leaving directory '/media/psf/Home/dev/flucoma-sc/linuxbuild/CMakeFiles/CMakeTmp'
Detecting CXX compiler ABI info compiled with the following output:
Change Dir: /media/psf/Home/dev/flucoma-sc/linuxbuild/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_30e22/fast && /usr/bin/make -f CMakeFiles/cmTC_30e22.dir/build.make CMakeFiles/cmTC_30e22.dir/build
make[1]: Entering directory '/media/psf/Home/dev/flucoma-sc/linuxbuild/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_30e22.dir/CMakeCXXCompilerABI.cpp.o
/usr/bin/c++ -v -o CMakeFiles/cmTC_30e22.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.17/Modules/CMakeCXXCompilerABI.cpp
Using built-in specs.
COLLECT_GCC=/usr/bin/c++
OFFLOAD_TARGET_NAMES=nvptx-none
OFFLOAD_TARGET_DEFAULT=1
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04)
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_30e22.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64'
/usr/lib/gcc/x86_64-linux-gnu/7/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE /usr/share/cmake-3.17/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_30e22.dir/CMakeCXXCompilerABI.cpp.o -version -fstack-protector-strong -Wformat -Wformat-security -o /tmp/ccxKfrVZ.s
GNU C++14 (Ubuntu 7.5.0-3ubuntu1~18.04) version 7.5.0 (x86_64-linux-gnu)
compiled by GNU C version 7.5.0, GMP version 6.1.2, MPFR version 4.0.1, MPC version 1.1.0, isl version isl-0.19-GMP
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
ignoring duplicate directory "/usr/include/x86_64-linux-gnu/c++/7"
ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"
ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/7/../../../../x86_64-linux-gnu/include"
#include "..." search starts here:
#include <...> search starts here:
/usr/include/c++/7
/usr/include/x86_64-linux-gnu/c++/7
/usr/include/c++/7/backward
/usr/lib/gcc/x86_64-linux-gnu/7/include
/usr/local/include
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed
/usr/include/x86_64-linux-gnu
/usr/include
End of search list.
GNU C++14 (Ubuntu 7.5.0-3ubuntu1~18.04) version 7.5.0 (x86_64-linux-gnu)
compiled by GNU C version 7.5.0, GMP version 6.1.2, MPFR version 4.0.1, MPC version 1.1.0, isl version isl-0.19-GMP
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
Compiler executable checksum: 3eb3dc290cd5714c3e1c3ae751116f07
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_30e22.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64'
as -v --64 -o CMakeFiles/cmTC_30e22.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccxKfrVZ.s
GNU assembler version 2.30 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.30
COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/
LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_30e22.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64'
Linking CXX executable cmTC_30e22
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_30e22.dir/link.txt --verbose=1
/usr/bin/c++ -v CMakeFiles/cmTC_30e22.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_30e22
Using built-in specs.
COLLECT_GCC=/usr/bin/c++
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper
OFFLOAD_TARGET_NAMES=nvptx-none
OFFLOAD_TARGET_DEFAULT=1
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04)
COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/
LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_30e22' '-shared-libgcc' '-mtune=generic' '-march=x86-64'
/usr/lib/gcc/x86_64-linux-gnu/7/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper -plugin-opt=-fresolution=/tmp/ccEhFbg3.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_30e22 /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/7 -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/7/../../.. CMakeFiles/cmTC_30e22.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_30e22' '-shared-libgcc' '-mtune=generic' '-march=x86-64'
make[1]: Leaving directory '/media/psf/Home/dev/flucoma-sc/linuxbuild/CMakeFiles/CMakeTmp'
Parsed CXX implicit include dir info from above output: rv=done
found start of include info
found start of implicit include info
add: [/usr/include/c++/7]
add: [/usr/include/x86_64-linux-gnu/c++/7]
add: [/usr/include/c++/7/backward]
add: [/usr/lib/gcc/x86_64-linux-gnu/7/include]
add: [/usr/local/include]
add: [/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed]
add: [/usr/include/x86_64-linux-gnu]
add: [/usr/include]
end of search list found
collapse include dir [/usr/include/c++/7] ==> [/usr/include/c++/7]
collapse include dir [/usr/include/x86_64-linux-gnu/c++/7] ==> [/usr/include/x86_64-linux-gnu/c++/7]
collapse include dir [/usr/include/c++/7/backward] ==> [/usr/include/c++/7/backward]
collapse include dir [/usr/lib/gcc/x86_64-linux-gnu/7/include] ==> [/usr/lib/gcc/x86_64-linux-gnu/7/include]
collapse include dir [/usr/local/include] ==> [/usr/local/include]
collapse include dir [/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed] ==> [/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed]
collapse include dir [/usr/include/x86_64-linux-gnu] ==> [/usr/include/x86_64-linux-gnu]
collapse include dir [/usr/include] ==> [/usr/include]
implicit include dirs: [/usr/include/c++/7;/usr/include/x86_64-linux-gnu/c++/7;/usr/include/c++/7/backward;/usr/lib/gcc/x86_64-linux-gnu/7/include;/usr/local/include;/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed;/usr/include/x86_64-linux-gnu;/usr/include]
Parsed CXX implicit link information from above output:
link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
ignore line: [Change Dir: /media/psf/Home/dev/flucoma-sc/linuxbuild/CMakeFiles/CMakeTmp]
ignore line: []
ignore line: [Run Build Command(s):/usr/bin/make cmTC_30e22/fast && /usr/bin/make -f CMakeFiles/cmTC_30e22.dir/build.make CMakeFiles/cmTC_30e22.dir/build]
ignore line: [make[1]: Entering directory '/media/psf/Home/dev/flucoma-sc/linuxbuild/CMakeFiles/CMakeTmp']
ignore line: [Building CXX object CMakeFiles/cmTC_30e22.dir/CMakeCXXCompilerABI.cpp.o]
ignore line: [/usr/bin/c++ -v -o CMakeFiles/cmTC_30e22.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.17/Modules/CMakeCXXCompilerABI.cpp]
ignore line: [Using built-in specs.]
ignore line: [COLLECT_GCC=/usr/bin/c++]
ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none]
ignore line: [OFFLOAD_TARGET_DEFAULT=1]
ignore line: [Target: x86_64-linux-gnu]
ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu]
ignore line: [Thread model: posix]
ignore line: [gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04) ]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_30e22.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64']
ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/7/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE /usr/share/cmake-3.17/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_30e22.dir/CMakeCXXCompilerABI.cpp.o -version -fstack-protector-strong -Wformat -Wformat-security -o /tmp/ccxKfrVZ.s]
ignore line: [GNU C++14 (Ubuntu 7.5.0-3ubuntu1~18.04) version 7.5.0 (x86_64-linux-gnu)]
ignore line: [ compiled by GNU C version 7.5.0 GMP version 6.1.2 MPFR version 4.0.1 MPC version 1.1.0 isl version isl-0.19-GMP]
ignore line: []
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
ignore line: [ignoring duplicate directory "/usr/include/x86_64-linux-gnu/c++/7"]
ignore line: [ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"]
ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/7/../../../../x86_64-linux-gnu/include"]
ignore line: [#include "..." search starts here:]
ignore line: [#include <...> search starts here:]
ignore line: [ /usr/include/c++/7]
ignore line: [ /usr/include/x86_64-linux-gnu/c++/7]
ignore line: [ /usr/include/c++/7/backward]
ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/7/include]
ignore line: [ /usr/local/include]
ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/7/include-fixed]
ignore line: [ /usr/include/x86_64-linux-gnu]
ignore line: [ /usr/include]
ignore line: [End of search list.]
ignore line: [GNU C++14 (Ubuntu 7.5.0-3ubuntu1~18.04) version 7.5.0 (x86_64-linux-gnu)]
ignore line: [ compiled by GNU C version 7.5.0 GMP version 6.1.2 MPFR version 4.0.1 MPC version 1.1.0 isl version isl-0.19-GMP]
ignore line: []
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
ignore line: [Compiler executable checksum: 3eb3dc290cd5714c3e1c3ae751116f07]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_30e22.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64']
ignore line: [ as -v --64 -o CMakeFiles/cmTC_30e22.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccxKfrVZ.s]
ignore line: [GNU assembler version 2.30 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.30]
ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/]
ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_30e22.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64']
ignore line: [Linking CXX executable cmTC_30e22]
ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_30e22.dir/link.txt --verbose=1]
ignore line: [/usr/bin/c++ -v CMakeFiles/cmTC_30e22.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_30e22 ]
ignore line: [Using built-in specs.]
ignore line: [COLLECT_GCC=/usr/bin/c++]
ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper]
ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none]
ignore line: [OFFLOAD_TARGET_DEFAULT=1]
ignore line: [Target: x86_64-linux-gnu]
ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu]
ignore line: [Thread model: posix]
ignore line: [gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04) ]
ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/]
ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_30e22' '-shared-libgcc' '-mtune=generic' '-march=x86-64']
link line: [ /usr/lib/gcc/x86_64-linux-gnu/7/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper -plugin-opt=-fresolution=/tmp/ccEhFbg3.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_30e22 /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/7 -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/7/../../.. CMakeFiles/cmTC_30e22.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o]
arg [/usr/lib/gcc/x86_64-linux-gnu/7/collect2] ==> ignore
arg [-plugin] ==> ignore
arg [/usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so] ==> ignore
arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper] ==> ignore
arg [-plugin-opt=-fresolution=/tmp/ccEhFbg3.res] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
arg [-plugin-opt=-pass-through=-lc] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
arg [--build-id] ==> ignore
arg [--eh-frame-hdr] ==> ignore
arg [-m] ==> ignore
arg [elf_x86_64] ==> ignore
arg [--hash-style=gnu] ==> ignore
arg [--as-needed] ==> ignore
arg [-dynamic-linker] ==> ignore
arg [/lib64/ld-linux-x86-64.so.2] ==> ignore
arg [-pie] ==> ignore
arg [-znow] ==> ignore
arg [-zrelro] ==> ignore
arg [-o] ==> ignore
arg [cmTC_30e22] ==> ignore
arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o] ==> ignore
arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o] ==> ignore
arg [/usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o] ==> ignore
arg [-L/usr/lib/gcc/x86_64-linux-gnu/7] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7]
arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu]
arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib]
arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu]
arg [-L/lib/../lib] ==> dir [/lib/../lib]
arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu]
arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib]
arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../..]
arg [CMakeFiles/cmTC_30e22.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore
arg [-lstdc++] ==> lib [stdc++]
arg [-lm] ==> lib [m]
arg [-lgcc_s] ==> lib [gcc_s]
arg [-lgcc] ==> lib [gcc]
arg [-lc] ==> lib [c]
arg [-lgcc_s] ==> lib [gcc_s]
arg [-lgcc] ==> lib [gcc]
arg [/usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o] ==> ignore
arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o] ==> ignore
collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7] ==> [/usr/lib/gcc/x86_64-linux-gnu/7]
collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu]
collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] ==> [/usr/lib]
collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu]
collapse library dir [/lib/../lib] ==> [/lib]
collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu]
collapse library dir [/usr/lib/../lib] ==> [/usr/lib]
collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../..] ==> [/usr/lib]
implicit libs: [stdc++;m;gcc_s;gcc;c;gcc_s;gcc]
implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/7;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib]
implicit fwks: []
The system is: Linux - 5.3.0-45-generic - x86_64
Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded.
Compiler: /usr/bin/c++
Build flags:
Id flags:
The output was:
0
Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out"
The CXX compiler identification is GNU, found in "/media/psf/Home/dev/flucoma-sc/linuxbuild/CMakeFiles/3.17.0/CompilerIdCXX/a.out"
Determining if the CXX compiler works passed with the following output:
Change Dir: /media/psf/Home/dev/flucoma-sc/linuxbuild/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_af7bc/fast && /usr/bin/make -f CMakeFiles/cmTC_af7bc.dir/build.make CMakeFiles/cmTC_af7bc.dir/build
make[1]: Entering directory '/media/psf/Home/dev/flucoma-sc/linuxbuild/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_af7bc.dir/testCXXCompiler.cxx.o
/usr/bin/c++ -o CMakeFiles/cmTC_af7bc.dir/testCXXCompiler.cxx.o -c /media/psf/Home/dev/flucoma-sc/linuxbuild/CMakeFiles/CMakeTmp/testCXXCompiler.cxx
Linking CXX executable cmTC_af7bc
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_af7bc.dir/link.txt --verbose=1
/usr/bin/c++ CMakeFiles/cmTC_af7bc.dir/testCXXCompiler.cxx.o -o cmTC_af7bc
make[1]: Leaving directory '/media/psf/Home/dev/flucoma-sc/linuxbuild/CMakeFiles/CMakeTmp'
Detecting CXX compiler ABI info compiled with the following output:
Change Dir: /media/psf/Home/dev/flucoma-sc/linuxbuild/CMakeFiles/CMakeTmp
Run Build Command(s):/usr/bin/make cmTC_a2f29/fast && /usr/bin/make -f CMakeFiles/cmTC_a2f29.dir/build.make CMakeFiles/cmTC_a2f29.dir/build
make[1]: Entering directory '/media/psf/Home/dev/flucoma-sc/linuxbuild/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_a2f29.dir/CMakeCXXCompilerABI.cpp.o
/usr/bin/c++ -v -o CMakeFiles/cmTC_a2f29.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.17/Modules/CMakeCXXCompilerABI.cpp
Using built-in specs.
COLLECT_GCC=/usr/bin/c++
OFFLOAD_TARGET_NAMES=nvptx-none
OFFLOAD_TARGET_DEFAULT=1
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04)
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_a2f29.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64'
/usr/lib/gcc/x86_64-linux-gnu/7/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE /usr/share/cmake-3.17/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_a2f29.dir/CMakeCXXCompilerABI.cpp.o -version -fstack-protector-strong -Wformat -Wformat-security -o /tmp/cchibov8.s
GNU C++14 (Ubuntu 7.5.0-3ubuntu1~18.04) version 7.5.0 (x86_64-linux-gnu)
compiled by GNU C version 7.5.0, GMP version 6.1.2, MPFR version 4.0.1, MPC version 1.1.0, isl version isl-0.19-GMP
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
ignoring duplicate directory "/usr/include/x86_64-linux-gnu/c++/7"
ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"
ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/7/../../../../x86_64-linux-gnu/include"
#include "..." search starts here:
#include <...> search starts here:
/usr/include/c++/7
/usr/include/x86_64-linux-gnu/c++/7
/usr/include/c++/7/backward
/usr/lib/gcc/x86_64-linux-gnu/7/include
/usr/local/include
/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed
/usr/include/x86_64-linux-gnu
/usr/include
End of search list.
GNU C++14 (Ubuntu 7.5.0-3ubuntu1~18.04) version 7.5.0 (x86_64-linux-gnu)
compiled by GNU C version 7.5.0, GMP version 6.1.2, MPFR version 4.0.1, MPC version 1.1.0, isl version isl-0.19-GMP
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
Compiler executable checksum: 3eb3dc290cd5714c3e1c3ae751116f07
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_a2f29.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64'
as -v --64 -o CMakeFiles/cmTC_a2f29.dir/CMakeCXXCompilerABI.cpp.o /tmp/cchibov8.s
GNU assembler version 2.30 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.30
COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/
LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_a2f29.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64'
Linking CXX executable cmTC_a2f29
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a2f29.dir/link.txt --verbose=1
/usr/bin/c++ -v CMakeFiles/cmTC_a2f29.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_a2f29
Using built-in specs.
COLLECT_GCC=/usr/bin/c++
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper
OFFLOAD_TARGET_NAMES=nvptx-none
OFFLOAD_TARGET_DEFAULT=1
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04)
COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/
LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_a2f29' '-shared-libgcc' '-mtune=generic' '-march=x86-64'
/usr/lib/gcc/x86_64-linux-gnu/7/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper -plugin-opt=-fresolution=/tmp/ccvUBmrc.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_a2f29 /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/7 -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/7/../../.. CMakeFiles/cmTC_a2f29.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_a2f29' '-shared-libgcc' '-mtune=generic' '-march=x86-64'
make[1]: Leaving directory '/media/psf/Home/dev/flucoma-sc/linuxbuild/CMakeFiles/CMakeTmp'
Parsed CXX implicit include dir info from above output: rv=done
found start of include info
found start of implicit include info
add: [/usr/include/c++/7]
add: [/usr/include/x86_64-linux-gnu/c++/7]
add: [/usr/include/c++/7/backward]
add: [/usr/lib/gcc/x86_64-linux-gnu/7/include]
add: [/usr/local/include]
add: [/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed]
add: [/usr/include/x86_64-linux-gnu]
add: [/usr/include]
end of search list found
collapse include dir [/usr/include/c++/7] ==> [/usr/include/c++/7]
collapse include dir [/usr/include/x86_64-linux-gnu/c++/7] ==> [/usr/include/x86_64-linux-gnu/c++/7]
collapse include dir [/usr/include/c++/7/backward] ==> [/usr/include/c++/7/backward]
collapse include dir [/usr/lib/gcc/x86_64-linux-gnu/7/include] ==> [/usr/lib/gcc/x86_64-linux-gnu/7/include]
collapse include dir [/usr/local/include] ==> [/usr/local/include]
collapse include dir [/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed] ==> [/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed]
collapse include dir [/usr/include/x86_64-linux-gnu] ==> [/usr/include/x86_64-linux-gnu]
collapse include dir [/usr/include] ==> [/usr/include]
implicit include dirs: [/usr/include/c++/7;/usr/include/x86_64-linux-gnu/c++/7;/usr/include/c++/7/backward;/usr/lib/gcc/x86_64-linux-gnu/7/include;/usr/local/include;/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed;/usr/include/x86_64-linux-gnu;/usr/include]
Parsed CXX implicit link information from above output:
link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
ignore line: [Change Dir: /media/psf/Home/dev/flucoma-sc/linuxbuild/CMakeFiles/CMakeTmp]
ignore line: []
ignore line: [Run Build Command(s):/usr/bin/make cmTC_a2f29/fast && /usr/bin/make -f CMakeFiles/cmTC_a2f29.dir/build.make CMakeFiles/cmTC_a2f29.dir/build]
ignore line: [make[1]: Entering directory '/media/psf/Home/dev/flucoma-sc/linuxbuild/CMakeFiles/CMakeTmp']
ignore line: [Building CXX object CMakeFiles/cmTC_a2f29.dir/CMakeCXXCompilerABI.cpp.o]
ignore line: [/usr/bin/c++ -v -o CMakeFiles/cmTC_a2f29.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.17/Modules/CMakeCXXCompilerABI.cpp]
ignore line: [Using built-in specs.]
ignore line: [COLLECT_GCC=/usr/bin/c++]
ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none]
ignore line: [OFFLOAD_TARGET_DEFAULT=1]
ignore line: [Target: x86_64-linux-gnu]
ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu]
ignore line: [Thread model: posix]
ignore line: [gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04) ]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_a2f29.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64']
ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/7/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE /usr/share/cmake-3.17/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_a2f29.dir/CMakeCXXCompilerABI.cpp.o -version -fstack-protector-strong -Wformat -Wformat-security -o /tmp/cchibov8.s]
ignore line: [GNU C++14 (Ubuntu 7.5.0-3ubuntu1~18.04) version 7.5.0 (x86_64-linux-gnu)]
ignore line: [ compiled by GNU C version 7.5.0 GMP version 6.1.2 MPFR version 4.0.1 MPC version 1.1.0 isl version isl-0.19-GMP]
ignore line: []
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
ignore line: [ignoring duplicate directory "/usr/include/x86_64-linux-gnu/c++/7"]
ignore line: [ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"]
ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/7/../../../../x86_64-linux-gnu/include"]
ignore line: [#include "..." search starts here:]
ignore line: [#include <...> search starts here:]
ignore line: [ /usr/include/c++/7]
ignore line: [ /usr/include/x86_64-linux-gnu/c++/7]
ignore line: [ /usr/include/c++/7/backward]
ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/7/include]
ignore line: [ /usr/local/include]
ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/7/include-fixed]
ignore line: [ /usr/include/x86_64-linux-gnu]
ignore line: [ /usr/include]
ignore line: [End of search list.]
ignore line: [GNU C++14 (Ubuntu 7.5.0-3ubuntu1~18.04) version 7.5.0 (x86_64-linux-gnu)]
ignore line: [ compiled by GNU C version 7.5.0 GMP version 6.1.2 MPFR version 4.0.1 MPC version 1.1.0 isl version isl-0.19-GMP]
ignore line: []
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
ignore line: [Compiler executable checksum: 3eb3dc290cd5714c3e1c3ae751116f07]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_a2f29.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64']
ignore line: [ as -v --64 -o CMakeFiles/cmTC_a2f29.dir/CMakeCXXCompilerABI.cpp.o /tmp/cchibov8.s]
ignore line: [GNU assembler version 2.30 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.30]
ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/]
ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_a2f29.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64']
ignore line: [Linking CXX executable cmTC_a2f29]
ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a2f29.dir/link.txt --verbose=1]
ignore line: [/usr/bin/c++ -v CMakeFiles/cmTC_a2f29.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_a2f29 ]
ignore line: [Using built-in specs.]
ignore line: [COLLECT_GCC=/usr/bin/c++]
ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper]
ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none]
ignore line: [OFFLOAD_TARGET_DEFAULT=1]
ignore line: [Target: x86_64-linux-gnu]
ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu]
ignore line: [Thread model: posix]
ignore line: [gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04) ]
ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/]
ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_a2f29' '-shared-libgcc' '-mtune=generic' '-march=x86-64']
link line: [ /usr/lib/gcc/x86_64-linux-gnu/7/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper -plugin-opt=-fresolution=/tmp/ccvUBmrc.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_a2f29 /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/7 -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/7/../../.. CMakeFiles/cmTC_a2f29.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o]
arg [/usr/lib/gcc/x86_64-linux-gnu/7/collect2] ==> ignore
arg [-plugin] ==> ignore
arg [/usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so] ==> ignore
arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper] ==> ignore
arg [-plugin-opt=-fresolution=/tmp/ccvUBmrc.res] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
arg [-plugin-opt=-pass-through=-lc] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
arg [--build-id] ==> ignore
arg [--eh-frame-hdr] ==> ignore
arg [-m] ==> ignore
arg [elf_x86_64] ==> ignore
arg [--hash-style=gnu] ==> ignore
arg [--as-needed] ==> ignore
arg [-dynamic-linker] ==> ignore
arg [/lib64/ld-linux-x86-64.so.2] ==> ignore
arg [-pie] ==> ignore
arg [-znow] ==> ignore
arg [-zrelro] ==> ignore
arg [-o] ==> ignore
arg [cmTC_a2f29] ==> ignore
arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o] ==> ignore
arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o] ==> ignore
arg [/usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o] ==> ignore
arg [-L/usr/lib/gcc/x86_64-linux-gnu/7] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7]
arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu]
arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib]
arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu]
arg [-L/lib/../lib] ==> dir [/lib/../lib]
arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu]
arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib]
arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../..]
arg [CMakeFiles/cmTC_a2f29.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore
arg [-lstdc++] ==> lib [stdc++]
arg [-lm] ==> lib [m]
arg [-lgcc_s] ==> lib [gcc_s]
arg [-lgcc] ==> lib [gcc]
arg [-lc] ==> lib [c]
arg [-lgcc_s] ==> lib [gcc_s]
arg [-lgcc] ==> lib [gcc]
arg [/usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o] ==> ignore
arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o] ==> ignore
collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7] ==> [/usr/lib/gcc/x86_64-linux-gnu/7]
collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu]
collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] ==> [/usr/lib]
collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu]
collapse library dir [/lib/../lib] ==> [/lib]
collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu]
collapse library dir [/usr/lib/../lib] ==> [/usr/lib]
collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../..] ==> [/usr/lib]
implicit libs: [stdc++;m;gcc_s;gcc;c;gcc_s;gcc]
implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/7;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib]
implicit fwks: []

@ -1,238 +0,0 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.17
# The generator used is:
set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles")
# The top level Makefile was generated from the following files:
set(CMAKE_MAKEFILE_DEPENDS
"CMakeCache.txt"
"/home/owen/mac/dev/flucoma-core/CMakeLists.txt"
"/home/owen/mac/dev/flucoma-core/examples/CMakeLists.txt"
"/home/owen/mac/dev/flucoma-core/script/FluidVersion.hpp.in"
"/home/owen/mac/dev/flucoma-core/script/flucoma-buildtools.cmake"
"/home/owen/mac/dev/flucoma-core/script/flucoma-buildtype.cmake"
"/home/owen/mac/dev/flucoma-core/script/flucoma_simdcmd.cmake"
"/home/owen/mac/dev/flucoma-core/script/flucoma_version.cmake"
"../CMakeLists.txt"
"CMakeFiles/3.17.0/CMakeCXXCompiler.cmake"
"CMakeFiles/3.17.0/CMakeSystem.cmake"
"CMakeFiles/VerifyGlobs.cmake"
"CMakeFiles/cmake.verify_globs"
"../scripts/target_post.cmake"
"../src/FluidAmpGate/CMakeLists.txt"
"../src/FluidAmpSlice/CMakeLists.txt"
"../src/FluidBufAmpGate/CMakeLists.txt"
"../src/FluidBufAmpSlice/CMakeLists.txt"
"../src/FluidBufCompose/CMakeLists.txt"
"../src/FluidBufFlatten/CMakeLists.txt"
"../src/FluidBufHPSS/CMakeLists.txt"
"../src/FluidBufLoudness/CMakeLists.txt"
"../src/FluidBufMFCC/CMakeLists.txt"
"../src/FluidBufMelBands/CMakeLists.txt"
"../src/FluidBufNMF/CMakeLists.txt"
"../src/FluidBufNoveltySlice/CMakeLists.txt"
"../src/FluidBufOnsetSlice/CMakeLists.txt"
"../src/FluidBufPitch/CMakeLists.txt"
"../src/FluidBufSines/CMakeLists.txt"
"../src/FluidBufSpectralShape/CMakeLists.txt"
"../src/FluidBufStats/CMakeLists.txt"
"../src/FluidBufThreadDemo/CMakeLists.txt"
"../src/FluidBufTransientSlice/CMakeLists.txt"
"../src/FluidBufTransients/CMakeLists.txt"
"../src/FluidGain/CMakeLists.txt"
"../src/FluidHPSS/CMakeLists.txt"
"../src/FluidLoudness/CMakeLists.txt"
"../src/FluidMFCC/CMakeLists.txt"
"../src/FluidManipulation/CMakeLists.txt"
"../src/FluidMelBands/CMakeLists.txt"
"../src/FluidMessageTest/CMakeLists.txt"
"../src/FluidNMFCross/CMakeLists.txt"
"../src/FluidNMFFilter/CMakeLists.txt"
"../src/FluidNMFMatch/CMakeLists.txt"
"../src/FluidNMFMorph/CMakeLists.txt"
"../src/FluidNoveltySlice/CMakeLists.txt"
"../src/FluidOnsetSlice/CMakeLists.txt"
"../src/FluidPitch/CMakeLists.txt"
"../src/FluidSTFTPass/CMakeLists.txt"
"../src/FluidSines/CMakeLists.txt"
"../src/FluidSpectralShape/CMakeLists.txt"
"../src/FluidSubscriberProviderTest/CMakeLists.txt"
"../src/FluidTransientSlice/CMakeLists.txt"
"../src/FluidTransients/CMakeLists.txt"
"/usr/share/cmake-3.17/Modules/CMakeCXXCompiler.cmake.in"
"/usr/share/cmake-3.17/Modules/CMakeCXXCompilerABI.cpp"
"/usr/share/cmake-3.17/Modules/CMakeCXXInformation.cmake"
"/usr/share/cmake-3.17/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake"
"/usr/share/cmake-3.17/Modules/CMakeCommonLanguageInclude.cmake"
"/usr/share/cmake-3.17/Modules/CMakeCompilerIdDetection.cmake"
"/usr/share/cmake-3.17/Modules/CMakeDetermineCXXCompiler.cmake"
"/usr/share/cmake-3.17/Modules/CMakeDetermineCompileFeatures.cmake"
"/usr/share/cmake-3.17/Modules/CMakeDetermineCompiler.cmake"
"/usr/share/cmake-3.17/Modules/CMakeDetermineCompilerABI.cmake"
"/usr/share/cmake-3.17/Modules/CMakeDetermineCompilerId.cmake"
"/usr/share/cmake-3.17/Modules/CMakeDetermineSystem.cmake"
"/usr/share/cmake-3.17/Modules/CMakeFindBinUtils.cmake"
"/usr/share/cmake-3.17/Modules/CMakeGenericSystem.cmake"
"/usr/share/cmake-3.17/Modules/CMakeInitializeConfigs.cmake"
"/usr/share/cmake-3.17/Modules/CMakeLanguageInformation.cmake"
"/usr/share/cmake-3.17/Modules/CMakeParseArguments.cmake"
"/usr/share/cmake-3.17/Modules/CMakeParseImplicitIncludeInfo.cmake"
"/usr/share/cmake-3.17/Modules/CMakeParseImplicitLinkInfo.cmake"
"/usr/share/cmake-3.17/Modules/CMakeSystem.cmake.in"
"/usr/share/cmake-3.17/Modules/CMakeSystemSpecificInformation.cmake"
"/usr/share/cmake-3.17/Modules/CMakeSystemSpecificInitialize.cmake"
"/usr/share/cmake-3.17/Modules/CMakeTestCXXCompiler.cmake"
"/usr/share/cmake-3.17/Modules/CMakeTestCompilerCommon.cmake"
"/usr/share/cmake-3.17/Modules/CMakeUnixFindMake.cmake"
"/usr/share/cmake-3.17/Modules/Compiler/ADSP-DetermineCompiler.cmake"
"/usr/share/cmake-3.17/Modules/Compiler/ARMCC-DetermineCompiler.cmake"
"/usr/share/cmake-3.17/Modules/Compiler/ARMClang-DetermineCompiler.cmake"
"/usr/share/cmake-3.17/Modules/Compiler/AppleClang-DetermineCompiler.cmake"
"/usr/share/cmake-3.17/Modules/Compiler/Borland-DetermineCompiler.cmake"
"/usr/share/cmake-3.17/Modules/Compiler/CMakeCommonCompilerMacros.cmake"
"/usr/share/cmake-3.17/Modules/Compiler/Clang-DetermineCompiler.cmake"
"/usr/share/cmake-3.17/Modules/Compiler/Clang-DetermineCompilerInternal.cmake"
"/usr/share/cmake-3.17/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake"
"/usr/share/cmake-3.17/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake"
"/usr/share/cmake-3.17/Modules/Compiler/Cray-DetermineCompiler.cmake"
"/usr/share/cmake-3.17/Modules/Compiler/Embarcadero-DetermineCompiler.cmake"
"/usr/share/cmake-3.17/Modules/Compiler/Fujitsu-DetermineCompiler.cmake"
"/usr/share/cmake-3.17/Modules/Compiler/GHS-DetermineCompiler.cmake"
"/usr/share/cmake-3.17/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake"
"/usr/share/cmake-3.17/Modules/Compiler/GNU-CXX.cmake"
"/usr/share/cmake-3.17/Modules/Compiler/GNU-FindBinUtils.cmake"
"/usr/share/cmake-3.17/Modules/Compiler/GNU.cmake"
"/usr/share/cmake-3.17/Modules/Compiler/HP-CXX-DetermineCompiler.cmake"
"/usr/share/cmake-3.17/Modules/Compiler/IAR-DetermineCompiler.cmake"
"/usr/share/cmake-3.17/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake"
"/usr/share/cmake-3.17/Modules/Compiler/Intel-DetermineCompiler.cmake"
"/usr/share/cmake-3.17/Modules/Compiler/MSVC-DetermineCompiler.cmake"
"/usr/share/cmake-3.17/Modules/Compiler/NVIDIA-DetermineCompiler.cmake"
"/usr/share/cmake-3.17/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake"
"/usr/share/cmake-3.17/Modules/Compiler/PGI-DetermineCompiler.cmake"
"/usr/share/cmake-3.17/Modules/Compiler/PathScale-DetermineCompiler.cmake"
"/usr/share/cmake-3.17/Modules/Compiler/SCO-DetermineCompiler.cmake"
"/usr/share/cmake-3.17/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake"
"/usr/share/cmake-3.17/Modules/Compiler/TI-DetermineCompiler.cmake"
"/usr/share/cmake-3.17/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake"
"/usr/share/cmake-3.17/Modules/Compiler/Watcom-DetermineCompiler.cmake"
"/usr/share/cmake-3.17/Modules/Compiler/XL-CXX-DetermineCompiler.cmake"
"/usr/share/cmake-3.17/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake"
"/usr/share/cmake-3.17/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake"
"/usr/share/cmake-3.17/Modules/FetchContent.cmake"
"/usr/share/cmake-3.17/Modules/FindGit.cmake"
"/usr/share/cmake-3.17/Modules/FindPackageHandleStandardArgs.cmake"
"/usr/share/cmake-3.17/Modules/FindPackageMessage.cmake"
"/usr/share/cmake-3.17/Modules/Internal/CMakeCheckCompilerFlag.cmake"
"/usr/share/cmake-3.17/Modules/Internal/FeatureTesting.cmake"
"/usr/share/cmake-3.17/Modules/Platform/Linux-Determine-CXX.cmake"
"/usr/share/cmake-3.17/Modules/Platform/Linux-GNU-CXX.cmake"
"/usr/share/cmake-3.17/Modules/Platform/Linux-GNU.cmake"
"/usr/share/cmake-3.17/Modules/Platform/Linux.cmake"
"/usr/share/cmake-3.17/Modules/Platform/UnixPaths.cmake"
)
# The corresponding makefile is:
set(CMAKE_MAKEFILE_OUTPUTS
"Makefile"
"CMakeFiles/cmake.check_cache"
)
# Byproducts of CMake generate step:
set(CMAKE_MAKEFILE_PRODUCTS
"CMakeFiles/3.17.0/CMakeSystem.cmake"
"CMakeFiles/3.17.0/CMakeCXXCompiler.cmake"
"CMakeFiles/3.17.0/CMakeCXXCompiler.cmake"
"/home/owen/mac/dev/flucoma-core/script/FluidVersion.hpp"
"CMakeFiles/CMakeDirectoryInformation.cmake"
"_deps/flucoma-core-build/CMakeFiles/CMakeDirectoryInformation.cmake"
"_deps/flucoma-core-build/examples/CMakeFiles/CMakeDirectoryInformation.cmake"
"src/FluidAmpGate/CMakeFiles/CMakeDirectoryInformation.cmake"
"src/FluidAmpSlice/CMakeFiles/CMakeDirectoryInformation.cmake"
"src/FluidBufAmpGate/CMakeFiles/CMakeDirectoryInformation.cmake"
"src/FluidBufAmpSlice/CMakeFiles/CMakeDirectoryInformation.cmake"
"src/FluidBufCompose/CMakeFiles/CMakeDirectoryInformation.cmake"
"src/FluidBufFlatten/CMakeFiles/CMakeDirectoryInformation.cmake"
"src/FluidBufHPSS/CMakeFiles/CMakeDirectoryInformation.cmake"
"src/FluidBufLoudness/CMakeFiles/CMakeDirectoryInformation.cmake"
"src/FluidBufMFCC/CMakeFiles/CMakeDirectoryInformation.cmake"
"src/FluidBufMelBands/CMakeFiles/CMakeDirectoryInformation.cmake"
"src/FluidBufNMF/CMakeFiles/CMakeDirectoryInformation.cmake"
"src/FluidBufNoveltySlice/CMakeFiles/CMakeDirectoryInformation.cmake"
"src/FluidBufOnsetSlice/CMakeFiles/CMakeDirectoryInformation.cmake"
"src/FluidBufPitch/CMakeFiles/CMakeDirectoryInformation.cmake"
"src/FluidBufSines/CMakeFiles/CMakeDirectoryInformation.cmake"
"src/FluidBufSpectralShape/CMakeFiles/CMakeDirectoryInformation.cmake"
"src/FluidBufStats/CMakeFiles/CMakeDirectoryInformation.cmake"
"src/FluidBufThreadDemo/CMakeFiles/CMakeDirectoryInformation.cmake"
"src/FluidBufTransientSlice/CMakeFiles/CMakeDirectoryInformation.cmake"
"src/FluidBufTransients/CMakeFiles/CMakeDirectoryInformation.cmake"
"src/FluidGain/CMakeFiles/CMakeDirectoryInformation.cmake"
"src/FluidHPSS/CMakeFiles/CMakeDirectoryInformation.cmake"
"src/FluidLoudness/CMakeFiles/CMakeDirectoryInformation.cmake"
"src/FluidMFCC/CMakeFiles/CMakeDirectoryInformation.cmake"
"src/FluidManipulation/CMakeFiles/CMakeDirectoryInformation.cmake"
"src/FluidMelBands/CMakeFiles/CMakeDirectoryInformation.cmake"
"src/FluidMessageTest/CMakeFiles/CMakeDirectoryInformation.cmake"
"src/FluidNMFCross/CMakeFiles/CMakeDirectoryInformation.cmake"
"src/FluidNMFFilter/CMakeFiles/CMakeDirectoryInformation.cmake"
"src/FluidNMFMatch/CMakeFiles/CMakeDirectoryInformation.cmake"
"src/FluidNMFMorph/CMakeFiles/CMakeDirectoryInformation.cmake"
"src/FluidNoveltySlice/CMakeFiles/CMakeDirectoryInformation.cmake"
"src/FluidOnsetSlice/CMakeFiles/CMakeDirectoryInformation.cmake"
"src/FluidPitch/CMakeFiles/CMakeDirectoryInformation.cmake"
"src/FluidSTFTPass/CMakeFiles/CMakeDirectoryInformation.cmake"
"src/FluidSines/CMakeFiles/CMakeDirectoryInformation.cmake"
"src/FluidSpectralShape/CMakeFiles/CMakeDirectoryInformation.cmake"
"src/FluidSubscriberProviderTest/CMakeFiles/CMakeDirectoryInformation.cmake"
"src/FluidTransientSlice/CMakeFiles/CMakeDirectoryInformation.cmake"
"src/FluidTransients/CMakeFiles/CMakeDirectoryInformation.cmake"
)
# Dependency information for all targets:
set(CMAKE_DEPEND_INFO_FILES
"_deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/DependInfo.cmake"
"_deps/flucoma-core-build/CMakeFiles/HISSTools_FFT.dir/DependInfo.cmake"
"_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/DependInfo.cmake"
"src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/DependInfo.cmake"
"src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/DependInfo.cmake"
"src/FluidBufAmpGate/CMakeFiles/FluidBufAmpGate.dir/DependInfo.cmake"
"src/FluidBufAmpSlice/CMakeFiles/FluidBufAmpSlice.dir/DependInfo.cmake"
"src/FluidBufCompose/CMakeFiles/FluidBufCompose.dir/DependInfo.cmake"
"src/FluidBufFlatten/CMakeFiles/FluidBufFlatten.dir/DependInfo.cmake"
"src/FluidBufHPSS/CMakeFiles/FluidBufHPSS.dir/DependInfo.cmake"
"src/FluidBufLoudness/CMakeFiles/FluidBufLoudness.dir/DependInfo.cmake"
"src/FluidBufMFCC/CMakeFiles/FluidBufMFCC.dir/DependInfo.cmake"
"src/FluidBufMelBands/CMakeFiles/FluidBufMelBands.dir/DependInfo.cmake"
"src/FluidBufNMF/CMakeFiles/FluidBufNMF.dir/DependInfo.cmake"
"src/FluidBufNoveltySlice/CMakeFiles/FluidBufNoveltySlice.dir/DependInfo.cmake"
"src/FluidBufOnsetSlice/CMakeFiles/FluidBufOnsetSlice.dir/DependInfo.cmake"
"src/FluidBufPitch/CMakeFiles/FluidBufPitch.dir/DependInfo.cmake"
"src/FluidBufSines/CMakeFiles/FluidBufSines.dir/DependInfo.cmake"
"src/FluidBufSpectralShape/CMakeFiles/FluidBufSpectralShape.dir/DependInfo.cmake"
"src/FluidBufStats/CMakeFiles/FluidBufStats.dir/DependInfo.cmake"
"src/FluidBufThreadDemo/CMakeFiles/FluidBufThreadDemo.dir/DependInfo.cmake"
"src/FluidBufTransientSlice/CMakeFiles/FluidBufTransientSlice.dir/DependInfo.cmake"
"src/FluidBufTransients/CMakeFiles/FluidBufTransients.dir/DependInfo.cmake"
"src/FluidGain/CMakeFiles/FluidGain.dir/DependInfo.cmake"
"src/FluidHPSS/CMakeFiles/FluidHPSS.dir/DependInfo.cmake"
"src/FluidLoudness/CMakeFiles/FluidLoudness.dir/DependInfo.cmake"
"src/FluidMFCC/CMakeFiles/FluidMFCC.dir/DependInfo.cmake"
"src/FluidManipulation/CMakeFiles/FluidManipulation.dir/DependInfo.cmake"
"src/FluidMelBands/CMakeFiles/FluidMelBands.dir/DependInfo.cmake"
"src/FluidMessageTest/CMakeFiles/FluidMessageTest.dir/DependInfo.cmake"
"src/FluidNMFCross/CMakeFiles/FluidNMFCross.dir/DependInfo.cmake"
"src/FluidNMFFilter/CMakeFiles/FluidNMFFilter.dir/DependInfo.cmake"
"src/FluidNMFMatch/CMakeFiles/FluidNMFMatch.dir/DependInfo.cmake"
"src/FluidNMFMorph/CMakeFiles/FluidNMFMorph.dir/DependInfo.cmake"
"src/FluidNoveltySlice/CMakeFiles/FluidNoveltySlice.dir/DependInfo.cmake"
"src/FluidOnsetSlice/CMakeFiles/FluidOnsetSlice.dir/DependInfo.cmake"
"src/FluidPitch/CMakeFiles/FluidPitch.dir/DependInfo.cmake"
"src/FluidSTFTPass/CMakeFiles/FluidSTFTPass.dir/DependInfo.cmake"
"src/FluidSines/CMakeFiles/FluidSines.dir/DependInfo.cmake"
"src/FluidSpectralShape/CMakeFiles/FluidSpectralShape.dir/DependInfo.cmake"
"src/FluidSubscriberProviderTest/CMakeFiles/FluidSubscriberProviderTest.dir/DependInfo.cmake"
"src/FluidTransientSlice/CMakeFiles/FluidTransientSlice.dir/DependInfo.cmake"
"src/FluidTransients/CMakeFiles/FluidTransients.dir/DependInfo.cmake"
)

File diff suppressed because it is too large Load Diff

@ -1,301 +0,0 @@
/media/psf/Home/dev/flucoma-sc/linuxbuild/CMakeFiles/install/strip.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/CMakeFiles/edit_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/CMakeFiles/list_install_components.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/CMakeFiles/install/local.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/CMakeFiles/rebuild_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/CMakeFiles/install.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/_deps/flucoma-core-build/CMakeFiles/install/strip.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/_deps/flucoma-core-build/CMakeFiles/install/local.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/_deps/flucoma-core-build/CMakeFiles/install.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/_deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/_deps/flucoma-core-build/CMakeFiles/HISSTools_FFT.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/_deps/flucoma-core-build/CMakeFiles/edit_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/_deps/flucoma-core-build/CMakeFiles/rebuild_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/_deps/flucoma-core-build/CMakeFiles/list_install_components.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/_deps/flucoma-core-build/examples/CMakeFiles/install/strip.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/_deps/flucoma-core-build/examples/CMakeFiles/edit_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/_deps/flucoma-core-build/examples/CMakeFiles/describe.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/_deps/flucoma-core-build/examples/CMakeFiles/rebuild_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/_deps/flucoma-core-build/examples/CMakeFiles/list_install_components.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/_deps/flucoma-core-build/examples/CMakeFiles/install/local.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/_deps/flucoma-core-build/examples/CMakeFiles/install.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidAmpGate/CMakeFiles/install/strip.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidAmpGate/CMakeFiles/edit_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidAmpGate/CMakeFiles/rebuild_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidAmpGate/CMakeFiles/list_install_components.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidAmpGate/CMakeFiles/install/local.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidAmpGate/CMakeFiles/install.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidAmpSlice/CMakeFiles/install/strip.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidAmpSlice/CMakeFiles/edit_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidAmpSlice/CMakeFiles/install.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidAmpSlice/CMakeFiles/rebuild_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidAmpSlice/CMakeFiles/list_install_components.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidAmpSlice/CMakeFiles/install/local.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufAmpGate/CMakeFiles/install/strip.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufAmpGate/CMakeFiles/edit_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufAmpGate/CMakeFiles/FluidBufAmpGate.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufAmpGate/CMakeFiles/rebuild_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufAmpGate/CMakeFiles/list_install_components.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufAmpGate/CMakeFiles/install/local.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufAmpGate/CMakeFiles/install.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufAmpSlice/CMakeFiles/install/strip.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufAmpSlice/CMakeFiles/edit_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufAmpSlice/CMakeFiles/install.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufAmpSlice/CMakeFiles/rebuild_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufAmpSlice/CMakeFiles/FluidBufAmpSlice.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufAmpSlice/CMakeFiles/list_install_components.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufAmpSlice/CMakeFiles/install/local.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufCompose/CMakeFiles/install/strip.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufCompose/CMakeFiles/edit_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufCompose/CMakeFiles/FluidBufCompose.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufCompose/CMakeFiles/rebuild_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufCompose/CMakeFiles/list_install_components.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufCompose/CMakeFiles/install/local.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufCompose/CMakeFiles/install.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufFlatten/CMakeFiles/install/strip.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufFlatten/CMakeFiles/edit_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufFlatten/CMakeFiles/rebuild_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufFlatten/CMakeFiles/FluidBufFlatten.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufFlatten/CMakeFiles/list_install_components.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufFlatten/CMakeFiles/install/local.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufFlatten/CMakeFiles/install.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufHPSS/CMakeFiles/install/strip.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufHPSS/CMakeFiles/edit_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufHPSS/CMakeFiles/FluidBufHPSS.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufHPSS/CMakeFiles/rebuild_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufHPSS/CMakeFiles/list_install_components.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufHPSS/CMakeFiles/install/local.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufHPSS/CMakeFiles/install.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufLoudness/CMakeFiles/install/strip.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufLoudness/CMakeFiles/edit_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufLoudness/CMakeFiles/FluidBufLoudness.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufLoudness/CMakeFiles/rebuild_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufLoudness/CMakeFiles/list_install_components.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufLoudness/CMakeFiles/install/local.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufLoudness/CMakeFiles/install.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufMFCC/CMakeFiles/install/strip.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufMFCC/CMakeFiles/edit_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufMFCC/CMakeFiles/FluidBufMFCC.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufMFCC/CMakeFiles/install.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufMFCC/CMakeFiles/rebuild_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufMFCC/CMakeFiles/list_install_components.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufMFCC/CMakeFiles/install/local.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufMelBands/CMakeFiles/install/strip.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufMelBands/CMakeFiles/edit_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufMelBands/CMakeFiles/FluidBufMelBands.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufMelBands/CMakeFiles/list_install_components.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufMelBands/CMakeFiles/install/local.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufMelBands/CMakeFiles/rebuild_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufMelBands/CMakeFiles/install.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufNMF/CMakeFiles/install/strip.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufNMF/CMakeFiles/edit_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufNMF/CMakeFiles/FluidBufNMF.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufNMF/CMakeFiles/rebuild_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufNMF/CMakeFiles/list_install_components.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufNMF/CMakeFiles/install/local.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufNMF/CMakeFiles/install.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufNoveltySlice/CMakeFiles/install/strip.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufNoveltySlice/CMakeFiles/edit_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufNoveltySlice/CMakeFiles/FluidBufNoveltySlice.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufNoveltySlice/CMakeFiles/rebuild_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufNoveltySlice/CMakeFiles/list_install_components.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufNoveltySlice/CMakeFiles/install/local.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufNoveltySlice/CMakeFiles/install.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufOnsetSlice/CMakeFiles/install/strip.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufOnsetSlice/CMakeFiles/edit_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufOnsetSlice/CMakeFiles/FluidBufOnsetSlice.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufOnsetSlice/CMakeFiles/rebuild_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufOnsetSlice/CMakeFiles/list_install_components.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufOnsetSlice/CMakeFiles/install/local.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufOnsetSlice/CMakeFiles/install.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufPitch/CMakeFiles/install/strip.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufPitch/CMakeFiles/edit_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufPitch/CMakeFiles/FluidBufPitch.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufPitch/CMakeFiles/rebuild_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufPitch/CMakeFiles/list_install_components.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufPitch/CMakeFiles/install/local.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufPitch/CMakeFiles/install.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufSines/CMakeFiles/edit_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufSines/CMakeFiles/install/strip.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufSines/CMakeFiles/FluidBufSines.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufSines/CMakeFiles/rebuild_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufSines/CMakeFiles/list_install_components.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufSines/CMakeFiles/install/local.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufSines/CMakeFiles/install.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufSpectralShape/CMakeFiles/install/strip.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufSpectralShape/CMakeFiles/edit_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufSpectralShape/CMakeFiles/FluidBufSpectralShape.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufSpectralShape/CMakeFiles/rebuild_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufSpectralShape/CMakeFiles/list_install_components.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufSpectralShape/CMakeFiles/install/local.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufSpectralShape/CMakeFiles/install.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufStats/CMakeFiles/install/strip.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufStats/CMakeFiles/edit_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufStats/CMakeFiles/FluidBufStats.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufStats/CMakeFiles/rebuild_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufStats/CMakeFiles/list_install_components.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufStats/CMakeFiles/install/local.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufStats/CMakeFiles/install.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufThreadDemo/CMakeFiles/install/strip.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufThreadDemo/CMakeFiles/edit_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufThreadDemo/CMakeFiles/FluidBufThreadDemo.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufThreadDemo/CMakeFiles/rebuild_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufThreadDemo/CMakeFiles/list_install_components.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufThreadDemo/CMakeFiles/install/local.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufThreadDemo/CMakeFiles/install.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufTransientSlice/CMakeFiles/edit_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufTransientSlice/CMakeFiles/install/strip.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufTransientSlice/CMakeFiles/FluidBufTransientSlice.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufTransientSlice/CMakeFiles/rebuild_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufTransientSlice/CMakeFiles/list_install_components.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufTransientSlice/CMakeFiles/install/local.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufTransientSlice/CMakeFiles/install.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufTransients/CMakeFiles/install/strip.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufTransients/CMakeFiles/edit_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufTransients/CMakeFiles/FluidBufTransients.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufTransients/CMakeFiles/rebuild_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufTransients/CMakeFiles/list_install_components.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufTransients/CMakeFiles/install/local.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufTransients/CMakeFiles/install.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidGain/CMakeFiles/install/strip.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidGain/CMakeFiles/edit_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidGain/CMakeFiles/rebuild_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidGain/CMakeFiles/list_install_components.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidGain/CMakeFiles/FluidGain.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidGain/CMakeFiles/install/local.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidGain/CMakeFiles/install.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidHPSS/CMakeFiles/install/strip.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidHPSS/CMakeFiles/edit_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidHPSS/CMakeFiles/rebuild_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidHPSS/CMakeFiles/list_install_components.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidHPSS/CMakeFiles/install/local.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidHPSS/CMakeFiles/FluidHPSS.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidHPSS/CMakeFiles/install.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidLoudness/CMakeFiles/install/strip.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidLoudness/CMakeFiles/edit_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidLoudness/CMakeFiles/FluidLoudness.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidLoudness/CMakeFiles/rebuild_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidLoudness/CMakeFiles/list_install_components.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidLoudness/CMakeFiles/install/local.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidLoudness/CMakeFiles/install.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidMFCC/CMakeFiles/install/strip.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidMFCC/CMakeFiles/edit_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidMFCC/CMakeFiles/FluidMFCC.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidMFCC/CMakeFiles/install.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidMFCC/CMakeFiles/rebuild_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidMFCC/CMakeFiles/list_install_components.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidMFCC/CMakeFiles/install/local.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidManipulation/CMakeFiles/install/strip.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidManipulation/CMakeFiles/edit_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidManipulation/CMakeFiles/FluidManipulation.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidManipulation/CMakeFiles/rebuild_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidManipulation/CMakeFiles/list_install_components.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidManipulation/CMakeFiles/install/local.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidManipulation/CMakeFiles/install.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidMelBands/CMakeFiles/install/strip.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidMelBands/CMakeFiles/edit_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidMelBands/CMakeFiles/FluidMelBands.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidMelBands/CMakeFiles/rebuild_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidMelBands/CMakeFiles/list_install_components.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidMelBands/CMakeFiles/install/local.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidMelBands/CMakeFiles/install.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidMessageTest/CMakeFiles/install/strip.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidMessageTest/CMakeFiles/edit_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidMessageTest/CMakeFiles/FluidMessageTest.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidMessageTest/CMakeFiles/install.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidMessageTest/CMakeFiles/rebuild_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidMessageTest/CMakeFiles/list_install_components.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidMessageTest/CMakeFiles/install/local.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidNMFCross/CMakeFiles/install/strip.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidNMFCross/CMakeFiles/edit_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidNMFCross/CMakeFiles/FluidNMFCross.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidNMFCross/CMakeFiles/rebuild_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidNMFCross/CMakeFiles/list_install_components.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidNMFCross/CMakeFiles/install/local.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidNMFCross/CMakeFiles/install.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidNMFFilter/CMakeFiles/install/strip.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidNMFFilter/CMakeFiles/edit_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidNMFFilter/CMakeFiles/FluidNMFFilter.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidNMFFilter/CMakeFiles/rebuild_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidNMFFilter/CMakeFiles/list_install_components.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidNMFFilter/CMakeFiles/install/local.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidNMFFilter/CMakeFiles/install.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidNMFMatch/CMakeFiles/install/strip.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidNMFMatch/CMakeFiles/edit_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidNMFMatch/CMakeFiles/FluidNMFMatch.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidNMFMatch/CMakeFiles/rebuild_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidNMFMatch/CMakeFiles/list_install_components.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidNMFMatch/CMakeFiles/install/local.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidNMFMatch/CMakeFiles/install.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidNMFMorph/CMakeFiles/install/strip.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidNMFMorph/CMakeFiles/edit_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidNMFMorph/CMakeFiles/FluidNMFMorph.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidNMFMorph/CMakeFiles/rebuild_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidNMFMorph/CMakeFiles/list_install_components.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidNMFMorph/CMakeFiles/install/local.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidNMFMorph/CMakeFiles/install.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidNoveltySlice/CMakeFiles/edit_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidNoveltySlice/CMakeFiles/install/strip.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidNoveltySlice/CMakeFiles/FluidNoveltySlice.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidNoveltySlice/CMakeFiles/list_install_components.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidNoveltySlice/CMakeFiles/install/local.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidNoveltySlice/CMakeFiles/rebuild_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidNoveltySlice/CMakeFiles/install.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidOnsetSlice/CMakeFiles/install/strip.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidOnsetSlice/CMakeFiles/edit_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidOnsetSlice/CMakeFiles/FluidOnsetSlice.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidOnsetSlice/CMakeFiles/list_install_components.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidOnsetSlice/CMakeFiles/install/local.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidOnsetSlice/CMakeFiles/rebuild_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidOnsetSlice/CMakeFiles/install.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidPitch/CMakeFiles/install/strip.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidPitch/CMakeFiles/edit_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidPitch/CMakeFiles/FluidPitch.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidPitch/CMakeFiles/rebuild_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidPitch/CMakeFiles/list_install_components.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidPitch/CMakeFiles/install/local.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidPitch/CMakeFiles/install.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidSTFTPass/CMakeFiles/install/strip.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidSTFTPass/CMakeFiles/edit_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidSTFTPass/CMakeFiles/FluidSTFTPass.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidSTFTPass/CMakeFiles/rebuild_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidSTFTPass/CMakeFiles/list_install_components.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidSTFTPass/CMakeFiles/install/local.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidSTFTPass/CMakeFiles/install.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidSines/CMakeFiles/install/strip.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidSines/CMakeFiles/edit_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidSines/CMakeFiles/FluidSines.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidSines/CMakeFiles/rebuild_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidSines/CMakeFiles/list_install_components.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidSines/CMakeFiles/install/local.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidSines/CMakeFiles/install.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidSpectralShape/CMakeFiles/install/strip.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidSpectralShape/CMakeFiles/edit_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidSpectralShape/CMakeFiles/list_install_components.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidSpectralShape/CMakeFiles/FluidSpectralShape.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidSpectralShape/CMakeFiles/install/local.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidSpectralShape/CMakeFiles/rebuild_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidSpectralShape/CMakeFiles/install.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidSubscriberProviderTest/CMakeFiles/install/strip.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidSubscriberProviderTest/CMakeFiles/edit_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidSubscriberProviderTest/CMakeFiles/rebuild_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidSubscriberProviderTest/CMakeFiles/list_install_components.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidSubscriberProviderTest/CMakeFiles/install/local.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidSubscriberProviderTest/CMakeFiles/FluidSubscriberProviderTest.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidSubscriberProviderTest/CMakeFiles/install.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidTransientSlice/CMakeFiles/install/strip.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidTransientSlice/CMakeFiles/edit_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidTransientSlice/CMakeFiles/FluidTransientSlice.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidTransientSlice/CMakeFiles/list_install_components.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidTransientSlice/CMakeFiles/install/local.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidTransientSlice/CMakeFiles/rebuild_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidTransientSlice/CMakeFiles/install.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidTransients/CMakeFiles/install/strip.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidTransients/CMakeFiles/edit_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidTransients/CMakeFiles/FluidTransients.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidTransients/CMakeFiles/rebuild_cache.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidTransients/CMakeFiles/list_install_components.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidTransients/CMakeFiles/install/local.dir
/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidTransients/CMakeFiles/install.dir

@ -1,198 +0,0 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by CMake Version 3.17
cmake_policy(SET CMP0009 NEW)
# HEADERS at /home/owen/mac/dev/flucoma-core/CMakeLists.txt:37 (file)
file(GLOB_RECURSE NEW_GLOB LIST_DIRECTORIES false "/home/owen/mac/dev/flucoma-core/include/**/*.hpp")
set(OLD_GLOB
"/home/owen/mac/dev/flucoma-core/include/algorithms/public/CepstrumF0.hpp"
"/home/owen/mac/dev/flucoma-core/include/algorithms/public/DCT.hpp"
"/home/owen/mac/dev/flucoma-core/include/algorithms/public/EnvelopeGate.hpp"
"/home/owen/mac/dev/flucoma-core/include/algorithms/public/EnvelopeSegmentation.hpp"
"/home/owen/mac/dev/flucoma-core/include/algorithms/public/HPS.hpp"
"/home/owen/mac/dev/flucoma-core/include/algorithms/public/HPSS.hpp"
"/home/owen/mac/dev/flucoma-core/include/algorithms/public/Loudness.hpp"
"/home/owen/mac/dev/flucoma-core/include/algorithms/public/MelBands.hpp"
"/home/owen/mac/dev/flucoma-core/include/algorithms/public/NMF.hpp"
"/home/owen/mac/dev/flucoma-core/include/algorithms/public/NoveltySegmentation.hpp"
"/home/owen/mac/dev/flucoma-core/include/algorithms/public/OnsetSegmentation.hpp"
"/home/owen/mac/dev/flucoma-core/include/algorithms/public/RatioMask.hpp"
"/home/owen/mac/dev/flucoma-core/include/algorithms/public/STFT.hpp"
"/home/owen/mac/dev/flucoma-core/include/algorithms/public/SineExtraction.hpp"
"/home/owen/mac/dev/flucoma-core/include/algorithms/public/SpectralShape.hpp"
"/home/owen/mac/dev/flucoma-core/include/algorithms/public/Stats.hpp"
"/home/owen/mac/dev/flucoma-core/include/algorithms/public/TransientExtraction.hpp"
"/home/owen/mac/dev/flucoma-core/include/algorithms/public/TransientSegmentation.hpp"
"/home/owen/mac/dev/flucoma-core/include/algorithms/public/WindowFuncs.hpp"
"/home/owen/mac/dev/flucoma-core/include/algorithms/public/YINFFT.hpp"
"/home/owen/mac/dev/flucoma-core/include/algorithms/util/ARModel.hpp"
"/home/owen/mac/dev/flucoma-core/include/algorithms/util/AlgorithmUtils.hpp"
"/home/owen/mac/dev/flucoma-core/include/algorithms/util/ButterworthHPFilter.hpp"
"/home/owen/mac/dev/flucoma-core/include/algorithms/util/ConvolutionTools.hpp"
"/home/owen/mac/dev/flucoma-core/include/algorithms/util/FFT.hpp"
"/home/owen/mac/dev/flucoma-core/include/algorithms/util/FluidEigenMappings.hpp"
"/home/owen/mac/dev/flucoma-core/include/algorithms/util/KWeightingFilter.hpp"
"/home/owen/mac/dev/flucoma-core/include/algorithms/util/MedianFilter.hpp"
"/home/owen/mac/dev/flucoma-core/include/algorithms/util/Munkres.hpp"
"/home/owen/mac/dev/flucoma-core/include/algorithms/util/Novelty.hpp"
"/home/owen/mac/dev/flucoma-core/include/algorithms/util/OnsetDetectionFuncs.hpp"
"/home/owen/mac/dev/flucoma-core/include/algorithms/util/PartialTracking.hpp"
"/home/owen/mac/dev/flucoma-core/include/algorithms/util/PeakDetection.hpp"
"/home/owen/mac/dev/flucoma-core/include/algorithms/util/SlideUDFilter.hpp"
"/home/owen/mac/dev/flucoma-core/include/algorithms/util/Toeplitz.hpp"
"/home/owen/mac/dev/flucoma-core/include/algorithms/util/TruePeak.hpp"
"/home/owen/mac/dev/flucoma-core/include/clients/common/AudioClient.hpp"
"/home/owen/mac/dev/flucoma-core/include/clients/common/BufferAdaptor.hpp"
"/home/owen/mac/dev/flucoma-core/include/clients/common/BufferedProcess.hpp"
"/home/owen/mac/dev/flucoma-core/include/clients/common/FluidBaseClient.hpp"
"/home/owen/mac/dev/flucoma-core/include/clients/common/FluidContext.hpp"
"/home/owen/mac/dev/flucoma-core/include/clients/common/FluidNRTClientWrapper.hpp"
"/home/owen/mac/dev/flucoma-core/include/clients/common/FluidSink.hpp"
"/home/owen/mac/dev/flucoma-core/include/clients/common/FluidSource.hpp"
"/home/owen/mac/dev/flucoma-core/include/clients/common/FluidTask.hpp"
"/home/owen/mac/dev/flucoma-core/include/clients/common/MemoryBufferAdaptor.hpp"
"/home/owen/mac/dev/flucoma-core/include/clients/common/MessageSet.hpp"
"/home/owen/mac/dev/flucoma-core/include/clients/common/OfflineClient.hpp"
"/home/owen/mac/dev/flucoma-core/include/clients/common/ParameterConstraints.hpp"
"/home/owen/mac/dev/flucoma-core/include/clients/common/ParameterSet.hpp"
"/home/owen/mac/dev/flucoma-core/include/clients/common/ParameterTrackChanges.hpp"
"/home/owen/mac/dev/flucoma-core/include/clients/common/ParameterTypes.hpp"
"/home/owen/mac/dev/flucoma-core/include/clients/common/Result.hpp"
"/home/owen/mac/dev/flucoma-core/include/clients/common/SpikesToTimes.hpp"
"/home/owen/mac/dev/flucoma-core/include/clients/common/TupleUtilities.hpp"
"/home/owen/mac/dev/flucoma-core/include/clients/nrt/BufComposeClient.hpp"
"/home/owen/mac/dev/flucoma-core/include/clients/nrt/BufFlattenClient.hpp"
"/home/owen/mac/dev/flucoma-core/include/clients/nrt/BufSTFTClient.hpp"
"/home/owen/mac/dev/flucoma-core/include/clients/nrt/BufStatsClient.hpp"
"/home/owen/mac/dev/flucoma-core/include/clients/nrt/FluidThreadTestClient.hpp"
"/home/owen/mac/dev/flucoma-core/include/clients/nrt/MessageTest.hpp"
"/home/owen/mac/dev/flucoma-core/include/clients/nrt/NMFClient.hpp"
"/home/owen/mac/dev/flucoma-core/include/clients/nrt/NoveltyClient.hpp"
"/home/owen/mac/dev/flucoma-core/include/clients/rt/AmpGateClient.hpp"
"/home/owen/mac/dev/flucoma-core/include/clients/rt/AmpSliceClient.hpp"
"/home/owen/mac/dev/flucoma-core/include/clients/rt/BaseSTFTClient.hpp"
"/home/owen/mac/dev/flucoma-core/include/clients/rt/GainClient.hpp"
"/home/owen/mac/dev/flucoma-core/include/clients/rt/HPSSClient.hpp"
"/home/owen/mac/dev/flucoma-core/include/clients/rt/LoudnessClient.hpp"
"/home/owen/mac/dev/flucoma-core/include/clients/rt/MFCCClient.hpp"
"/home/owen/mac/dev/flucoma-core/include/clients/rt/MelBandsClient.hpp"
"/home/owen/mac/dev/flucoma-core/include/clients/rt/NMFFilterClient.hpp"
"/home/owen/mac/dev/flucoma-core/include/clients/rt/NMFMatchClient.hpp"
"/home/owen/mac/dev/flucoma-core/include/clients/rt/NoInputSTFTClient.hpp"
"/home/owen/mac/dev/flucoma-core/include/clients/rt/NoveltySliceClient.hpp"
"/home/owen/mac/dev/flucoma-core/include/clients/rt/OnsetSliceClient.hpp"
"/home/owen/mac/dev/flucoma-core/include/clients/rt/PitchClient.hpp"
"/home/owen/mac/dev/flucoma-core/include/clients/rt/SinesClient.hpp"
"/home/owen/mac/dev/flucoma-core/include/clients/rt/SpectralShapeClient.hpp"
"/home/owen/mac/dev/flucoma-core/include/clients/rt/TransientClient.hpp"
"/home/owen/mac/dev/flucoma-core/include/clients/rt/TransientSliceClient.hpp"
"/home/owen/mac/dev/flucoma-core/include/data/FluidIndex.hpp"
"/home/owen/mac/dev/flucoma-core/include/data/FluidMeta.hpp"
"/home/owen/mac/dev/flucoma-core/include/data/FluidTensor.hpp"
"/home/owen/mac/dev/flucoma-core/include/data/FluidTensor_Support.hpp"
"/home/owen/mac/dev/flucoma-core/include/data/TensorTypes.hpp"
)
if(NOT "${NEW_GLOB}" STREQUAL "${OLD_GLOB}")
message("-- GLOB mismatch!")
file(TOUCH_NOCREATE "/media/psf/Home/dev/flucoma-sc/linuxbuild/CMakeFiles/cmake.verify_globs")
endif()
# FLUID_MANIPULATION_HEADERS at scripts/target_post.cmake:60 (file)
# FLUID_MANIPULATION_HEADERS at scripts/target_post.cmake:60 (file)
# FLUID_MANIPULATION_HEADERS at scripts/target_post.cmake:60 (file)
# FLUID_MANIPULATION_HEADERS at scripts/target_post.cmake:60 (file)
# FLUID_MANIPULATION_HEADERS at scripts/target_post.cmake:60 (file)
# FLUID_MANIPULATION_HEADERS at scripts/target_post.cmake:60 (file)
# FLUID_MANIPULATION_HEADERS at scripts/target_post.cmake:60 (file)
# FLUID_MANIPULATION_HEADERS at scripts/target_post.cmake:60 (file)
# FLUID_MANIPULATION_HEADERS at scripts/target_post.cmake:60 (file)
# FLUID_MANIPULATION_HEADERS at scripts/target_post.cmake:60 (file)
# FLUID_MANIPULATION_HEADERS at scripts/target_post.cmake:60 (file)
# FLUID_MANIPULATION_HEADERS at scripts/target_post.cmake:60 (file)
# FLUID_MANIPULATION_HEADERS at scripts/target_post.cmake:60 (file)
# FLUID_MANIPULATION_HEADERS at scripts/target_post.cmake:60 (file)
# FLUID_MANIPULATION_HEADERS at scripts/target_post.cmake:60 (file)
# FLUID_MANIPULATION_HEADERS at scripts/target_post.cmake:60 (file)
# FLUID_MANIPULATION_HEADERS at scripts/target_post.cmake:60 (file)
# FLUID_MANIPULATION_HEADERS at scripts/target_post.cmake:60 (file)
# FLUID_MANIPULATION_HEADERS at scripts/target_post.cmake:60 (file)
# FLUID_MANIPULATION_HEADERS at scripts/target_post.cmake:60 (file)
# FLUID_MANIPULATION_HEADERS at scripts/target_post.cmake:60 (file)
# FLUID_MANIPULATION_HEADERS at scripts/target_post.cmake:60 (file)
# FLUID_MANIPULATION_HEADERS at scripts/target_post.cmake:60 (file)
# FLUID_MANIPULATION_HEADERS at scripts/target_post.cmake:60 (file)
# FLUID_MANIPULATION_HEADERS at scripts/target_post.cmake:60 (file)
# FLUID_MANIPULATION_HEADERS at scripts/target_post.cmake:60 (file)
# FLUID_MANIPULATION_HEADERS at scripts/target_post.cmake:60 (file)
# FLUID_MANIPULATION_HEADERS at scripts/target_post.cmake:60 (file)
# FLUID_MANIPULATION_HEADERS at scripts/target_post.cmake:60 (file)
# FLUID_MANIPULATION_HEADERS at scripts/target_post.cmake:60 (file)
# FLUID_MANIPULATION_HEADERS at scripts/target_post.cmake:60 (file)
# FLUID_MANIPULATION_HEADERS at scripts/target_post.cmake:60 (file)
# FLUID_MANIPULATION_HEADERS at scripts/target_post.cmake:60 (file)
# FLUID_MANIPULATION_HEADERS at scripts/target_post.cmake:60 (file)
# FLUID_MANIPULATION_HEADERS at scripts/target_post.cmake:60 (file)
# FLUID_MANIPULATION_HEADERS at scripts/target_post.cmake:60 (file)
# FLUID_MANIPULATION_HEADERS at scripts/target_post.cmake:60 (file)
# FLUID_MANIPULATION_HEADERS at scripts/target_post.cmake:60 (file)
# FLUID_MANIPULATION_HEADERS at scripts/target_post.cmake:60 (file)
# FLUID_MANIPULATION_HEADERS at scripts/target_post.cmake:60 (file)
file(GLOB_RECURSE NEW_GLOB LIST_DIRECTORIES false "/home/owen/mac/dev/fluid_manipulation/include/**/*.hpp")
set(OLD_GLOB
"/home/owen/mac/dev/fluid_manipulation/include/algorithms/AudioTransport.hpp"
"/home/owen/mac/dev/fluid_manipulation/include/algorithms/DataSetQuery.hpp"
"/home/owen/mac/dev/fluid_manipulation/include/algorithms/DistanceFuncs.hpp"
"/home/owen/mac/dev/fluid_manipulation/include/algorithms/GriffinLim.hpp"
"/home/owen/mac/dev/fluid_manipulation/include/algorithms/KDTree.hpp"
"/home/owen/mac/dev/fluid_manipulation/include/algorithms/KMeans.hpp"
"/home/owen/mac/dev/fluid_manipulation/include/algorithms/KNNClassifier.hpp"
"/home/owen/mac/dev/fluid_manipulation/include/algorithms/KNNRegressor.hpp"
"/home/owen/mac/dev/fluid_manipulation/include/algorithms/LabelSetEncoder.hpp"
"/home/owen/mac/dev/fluid_manipulation/include/algorithms/MDS.hpp"
"/home/owen/mac/dev/fluid_manipulation/include/algorithms/MLP.hpp"
"/home/owen/mac/dev/fluid_manipulation/include/algorithms/NMFCross.hpp"
"/home/owen/mac/dev/fluid_manipulation/include/algorithms/NMFMorph.hpp"
"/home/owen/mac/dev/fluid_manipulation/include/algorithms/NNDSVD.hpp"
"/home/owen/mac/dev/fluid_manipulation/include/algorithms/NNFuncs.hpp"
"/home/owen/mac/dev/fluid_manipulation/include/algorithms/NNLayer.hpp"
"/home/owen/mac/dev/fluid_manipulation/include/algorithms/Normalization.hpp"
"/home/owen/mac/dev/fluid_manipulation/include/algorithms/OptimalTransport.hpp"
"/home/owen/mac/dev/fluid_manipulation/include/algorithms/PCA.hpp"
"/home/owen/mac/dev/fluid_manipulation/include/algorithms/RTPGHI.hpp"
"/home/owen/mac/dev/fluid_manipulation/include/algorithms/SGD.hpp"
"/home/owen/mac/dev/fluid_manipulation/include/algorithms/Standardization.hpp"
"/home/owen/mac/dev/fluid_manipulation/include/clients/common/FluidInputTrigger.hpp"
"/home/owen/mac/dev/fluid_manipulation/include/clients/common/SharedClientUtils.hpp"
"/home/owen/mac/dev/fluid_manipulation/include/clients/nrt/ClientInputChecks.hpp"
"/home/owen/mac/dev/fluid_manipulation/include/clients/nrt/CommonResults.hpp"
"/home/owen/mac/dev/fluid_manipulation/include/clients/nrt/CorpusClient.hpp"
"/home/owen/mac/dev/fluid_manipulation/include/clients/nrt/DataClient.hpp"
"/home/owen/mac/dev/fluid_manipulation/include/clients/nrt/DataSetClient.hpp"
"/home/owen/mac/dev/fluid_manipulation/include/clients/nrt/DataSetQueryClient.hpp"
"/home/owen/mac/dev/fluid_manipulation/include/clients/nrt/FluidSharedInstanceAdaptor.hpp"
"/home/owen/mac/dev/fluid_manipulation/include/clients/nrt/KDTreeClient.hpp"
"/home/owen/mac/dev/fluid_manipulation/include/clients/nrt/KMeansClient.hpp"
"/home/owen/mac/dev/fluid_manipulation/include/clients/nrt/KNNClassifierClient.hpp"
"/home/owen/mac/dev/fluid_manipulation/include/clients/nrt/KNNRegressorClient.hpp"
"/home/owen/mac/dev/fluid_manipulation/include/clients/nrt/LabelSetClient.hpp"
"/home/owen/mac/dev/fluid_manipulation/include/clients/nrt/MDSClient.hpp"
"/home/owen/mac/dev/fluid_manipulation/include/clients/nrt/MLPClassifierClient.hpp"
"/home/owen/mac/dev/fluid_manipulation/include/clients/nrt/MLPRegressorClient.hpp"
"/home/owen/mac/dev/fluid_manipulation/include/clients/nrt/NMFCrossClient.hpp"
"/home/owen/mac/dev/fluid_manipulation/include/clients/nrt/NNDSVDClient.hpp"
"/home/owen/mac/dev/fluid_manipulation/include/clients/nrt/NRTClient.hpp"
"/home/owen/mac/dev/fluid_manipulation/include/clients/nrt/NormalizeClient.hpp"
"/home/owen/mac/dev/fluid_manipulation/include/clients/nrt/PCAClient.hpp"
"/home/owen/mac/dev/fluid_manipulation/include/clients/nrt/ProviderTest.hpp"
"/home/owen/mac/dev/fluid_manipulation/include/clients/nrt/StandardizeClient.hpp"
"/home/owen/mac/dev/fluid_manipulation/include/clients/nrt/SubscriberTest.hpp"
"/home/owen/mac/dev/fluid_manipulation/include/clients/rt/AudioTransportClient.hpp"
"/home/owen/mac/dev/fluid_manipulation/include/clients/rt/NMFMorphClient.hpp"
"/home/owen/mac/dev/fluid_manipulation/include/data/FluidDataSet.hpp"
"/home/owen/mac/dev/fluid_manipulation/include/data/FluidFile.hpp"
"/home/owen/mac/dev/fluid_manipulation/include/data/FluidJSON.hpp"
)
if(NOT "${NEW_GLOB}" STREQUAL "${OLD_GLOB}")
message("-- GLOB mismatch!")
file(TOUCH_NOCREATE "/media/psf/Home/dev/flucoma-sc/linuxbuild/CMakeFiles/cmake.verify_globs")
endif()

@ -1 +0,0 @@
# This file is generated by cmake for dependency checking of the CMakeCache.txt file

@ -1 +0,0 @@
# This file is generated by CMake for checking of the VerifyGlobs.cmake file

@ -1,805 +0,0 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.17
# Default target executed when no arguments are given to make.
default_target: all
.PHONY : default_target
# Allow only one "make -f Makefile2" at a time, but pass parallelism.
.NOTPARALLEL:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Disable VCS-based implicit rules.
% : %,v
# Disable VCS-based implicit rules.
% : RCS/%
# Disable VCS-based implicit rules.
% : RCS/%,v
# Disable VCS-based implicit rules.
% : SCCS/s.%
# Disable VCS-based implicit rules.
% : s.%
.SUFFIXES: .hpux_make_needs_suffix_list
# Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
# The shell in which to execute make rules.
SHELL = /bin/sh
# The CMake executable.
CMAKE_COMMAND = /usr/bin/cmake
# The command to remove a file.
RM = /usr/bin/cmake -E rm -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /media/psf/Home/dev/flucoma-sc
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /media/psf/Home/dev/flucoma-sc/linuxbuild
#=============================================================================
# Targets provided globally by CMake.
# Special rule for the target install/strip
install/strip: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..."
/usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
.PHONY : install/strip
# Special rule for the target install/strip
install/strip/fast: preinstall/fast
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..."
/usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
.PHONY : install/strip/fast
# Special rule for the target edit_cache
edit_cache:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake cache editor..."
/usr/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
.PHONY : edit_cache
# Special rule for the target edit_cache
edit_cache/fast: edit_cache
.PHONY : edit_cache/fast
# Special rule for the target list_install_components
list_install_components:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\""
.PHONY : list_install_components
# Special rule for the target list_install_components
list_install_components/fast: list_install_components
.PHONY : list_install_components/fast
# Special rule for the target install/local
install/local: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..."
/usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
.PHONY : install/local
# Special rule for the target install/local
install/local/fast: preinstall/fast
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..."
/usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
.PHONY : install/local/fast
# Special rule for the target rebuild_cache
rebuild_cache:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..."
/usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
.PHONY : rebuild_cache
# Special rule for the target rebuild_cache
rebuild_cache/fast: rebuild_cache
.PHONY : rebuild_cache/fast
# Special rule for the target install
install: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..."
/usr/bin/cmake -P cmake_install.cmake
.PHONY : install
# Special rule for the target install
install/fast: preinstall/fast
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..."
/usr/bin/cmake -P cmake_install.cmake
.PHONY : install/fast
# The main all target
all: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /media/psf/Home/dev/flucoma-sc/linuxbuild/CMakeFiles /media/psf/Home/dev/flucoma-sc/linuxbuild/CMakeFiles/progress.marks
$(MAKE) -f CMakeFiles/Makefile2 all
$(CMAKE_COMMAND) -E cmake_progress_start /media/psf/Home/dev/flucoma-sc/linuxbuild/CMakeFiles 0
.PHONY : all
# The main clean target
clean:
$(MAKE) -f CMakeFiles/Makefile2 clean
.PHONY : clean
# The main clean target
clean/fast: clean
.PHONY : clean/fast
# Prepare targets for installation.
preinstall: all
$(MAKE) -f CMakeFiles/Makefile2 preinstall
.PHONY : preinstall
# Prepare targets for installation.
preinstall/fast:
$(MAKE) -f CMakeFiles/Makefile2 preinstall
.PHONY : preinstall/fast
# clear depends
depend:
$(CMAKE_COMMAND) -P /media/psf/Home/dev/flucoma-sc/linuxbuild/CMakeFiles/VerifyGlobs.cmake
$(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
.PHONY : depend
#=============================================================================
# Target rules for targets named HISSTools_AudioFile
# Build rule for target.
HISSTools_AudioFile: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 HISSTools_AudioFile
.PHONY : HISSTools_AudioFile
# fast build rule for target.
HISSTools_AudioFile/fast:
$(MAKE) -f _deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/build.make _deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/build
.PHONY : HISSTools_AudioFile/fast
#=============================================================================
# Target rules for targets named HISSTools_FFT
# Build rule for target.
HISSTools_FFT: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 HISSTools_FFT
.PHONY : HISSTools_FFT
# fast build rule for target.
HISSTools_FFT/fast:
$(MAKE) -f _deps/flucoma-core-build/CMakeFiles/HISSTools_FFT.dir/build.make _deps/flucoma-core-build/CMakeFiles/HISSTools_FFT.dir/build
.PHONY : HISSTools_FFT/fast
#=============================================================================
# Target rules for targets named describe
# Build rule for target.
describe: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 describe
.PHONY : describe
# fast build rule for target.
describe/fast:
$(MAKE) -f _deps/flucoma-core-build/examples/CMakeFiles/describe.dir/build.make _deps/flucoma-core-build/examples/CMakeFiles/describe.dir/build
.PHONY : describe/fast
#=============================================================================
# Target rules for targets named FluidAmpGate
# Build rule for target.
FluidAmpGate: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 FluidAmpGate
.PHONY : FluidAmpGate
# fast build rule for target.
FluidAmpGate/fast:
$(MAKE) -f src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/build.make src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/build
.PHONY : FluidAmpGate/fast
#=============================================================================
# Target rules for targets named FluidAmpSlice
# Build rule for target.
FluidAmpSlice: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 FluidAmpSlice
.PHONY : FluidAmpSlice
# fast build rule for target.
FluidAmpSlice/fast:
$(MAKE) -f src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/build.make src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/build
.PHONY : FluidAmpSlice/fast
#=============================================================================
# Target rules for targets named FluidBufAmpGate
# Build rule for target.
FluidBufAmpGate: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 FluidBufAmpGate
.PHONY : FluidBufAmpGate
# fast build rule for target.
FluidBufAmpGate/fast:
$(MAKE) -f src/FluidBufAmpGate/CMakeFiles/FluidBufAmpGate.dir/build.make src/FluidBufAmpGate/CMakeFiles/FluidBufAmpGate.dir/build
.PHONY : FluidBufAmpGate/fast
#=============================================================================
# Target rules for targets named FluidBufAmpSlice
# Build rule for target.
FluidBufAmpSlice: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 FluidBufAmpSlice
.PHONY : FluidBufAmpSlice
# fast build rule for target.
FluidBufAmpSlice/fast:
$(MAKE) -f src/FluidBufAmpSlice/CMakeFiles/FluidBufAmpSlice.dir/build.make src/FluidBufAmpSlice/CMakeFiles/FluidBufAmpSlice.dir/build
.PHONY : FluidBufAmpSlice/fast
#=============================================================================
# Target rules for targets named FluidBufCompose
# Build rule for target.
FluidBufCompose: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 FluidBufCompose
.PHONY : FluidBufCompose
# fast build rule for target.
FluidBufCompose/fast:
$(MAKE) -f src/FluidBufCompose/CMakeFiles/FluidBufCompose.dir/build.make src/FluidBufCompose/CMakeFiles/FluidBufCompose.dir/build
.PHONY : FluidBufCompose/fast
#=============================================================================
# Target rules for targets named FluidBufFlatten
# Build rule for target.
FluidBufFlatten: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 FluidBufFlatten
.PHONY : FluidBufFlatten
# fast build rule for target.
FluidBufFlatten/fast:
$(MAKE) -f src/FluidBufFlatten/CMakeFiles/FluidBufFlatten.dir/build.make src/FluidBufFlatten/CMakeFiles/FluidBufFlatten.dir/build
.PHONY : FluidBufFlatten/fast
#=============================================================================
# Target rules for targets named FluidBufHPSS
# Build rule for target.
FluidBufHPSS: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 FluidBufHPSS
.PHONY : FluidBufHPSS
# fast build rule for target.
FluidBufHPSS/fast:
$(MAKE) -f src/FluidBufHPSS/CMakeFiles/FluidBufHPSS.dir/build.make src/FluidBufHPSS/CMakeFiles/FluidBufHPSS.dir/build
.PHONY : FluidBufHPSS/fast
#=============================================================================
# Target rules for targets named FluidBufLoudness
# Build rule for target.
FluidBufLoudness: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 FluidBufLoudness
.PHONY : FluidBufLoudness
# fast build rule for target.
FluidBufLoudness/fast:
$(MAKE) -f src/FluidBufLoudness/CMakeFiles/FluidBufLoudness.dir/build.make src/FluidBufLoudness/CMakeFiles/FluidBufLoudness.dir/build
.PHONY : FluidBufLoudness/fast
#=============================================================================
# Target rules for targets named FluidBufMFCC
# Build rule for target.
FluidBufMFCC: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 FluidBufMFCC
.PHONY : FluidBufMFCC
# fast build rule for target.
FluidBufMFCC/fast:
$(MAKE) -f src/FluidBufMFCC/CMakeFiles/FluidBufMFCC.dir/build.make src/FluidBufMFCC/CMakeFiles/FluidBufMFCC.dir/build
.PHONY : FluidBufMFCC/fast
#=============================================================================
# Target rules for targets named FluidBufMelBands
# Build rule for target.
FluidBufMelBands: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 FluidBufMelBands
.PHONY : FluidBufMelBands
# fast build rule for target.
FluidBufMelBands/fast:
$(MAKE) -f src/FluidBufMelBands/CMakeFiles/FluidBufMelBands.dir/build.make src/FluidBufMelBands/CMakeFiles/FluidBufMelBands.dir/build
.PHONY : FluidBufMelBands/fast
#=============================================================================
# Target rules for targets named FluidBufNMF
# Build rule for target.
FluidBufNMF: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 FluidBufNMF
.PHONY : FluidBufNMF
# fast build rule for target.
FluidBufNMF/fast:
$(MAKE) -f src/FluidBufNMF/CMakeFiles/FluidBufNMF.dir/build.make src/FluidBufNMF/CMakeFiles/FluidBufNMF.dir/build
.PHONY : FluidBufNMF/fast
#=============================================================================
# Target rules for targets named FluidBufNoveltySlice
# Build rule for target.
FluidBufNoveltySlice: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 FluidBufNoveltySlice
.PHONY : FluidBufNoveltySlice
# fast build rule for target.
FluidBufNoveltySlice/fast:
$(MAKE) -f src/FluidBufNoveltySlice/CMakeFiles/FluidBufNoveltySlice.dir/build.make src/FluidBufNoveltySlice/CMakeFiles/FluidBufNoveltySlice.dir/build
.PHONY : FluidBufNoveltySlice/fast
#=============================================================================
# Target rules for targets named FluidBufOnsetSlice
# Build rule for target.
FluidBufOnsetSlice: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 FluidBufOnsetSlice
.PHONY : FluidBufOnsetSlice
# fast build rule for target.
FluidBufOnsetSlice/fast:
$(MAKE) -f src/FluidBufOnsetSlice/CMakeFiles/FluidBufOnsetSlice.dir/build.make src/FluidBufOnsetSlice/CMakeFiles/FluidBufOnsetSlice.dir/build
.PHONY : FluidBufOnsetSlice/fast
#=============================================================================
# Target rules for targets named FluidBufPitch
# Build rule for target.
FluidBufPitch: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 FluidBufPitch
.PHONY : FluidBufPitch
# fast build rule for target.
FluidBufPitch/fast:
$(MAKE) -f src/FluidBufPitch/CMakeFiles/FluidBufPitch.dir/build.make src/FluidBufPitch/CMakeFiles/FluidBufPitch.dir/build
.PHONY : FluidBufPitch/fast
#=============================================================================
# Target rules for targets named FluidBufSines
# Build rule for target.
FluidBufSines: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 FluidBufSines
.PHONY : FluidBufSines
# fast build rule for target.
FluidBufSines/fast:
$(MAKE) -f src/FluidBufSines/CMakeFiles/FluidBufSines.dir/build.make src/FluidBufSines/CMakeFiles/FluidBufSines.dir/build
.PHONY : FluidBufSines/fast
#=============================================================================
# Target rules for targets named FluidBufSpectralShape
# Build rule for target.
FluidBufSpectralShape: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 FluidBufSpectralShape
.PHONY : FluidBufSpectralShape
# fast build rule for target.
FluidBufSpectralShape/fast:
$(MAKE) -f src/FluidBufSpectralShape/CMakeFiles/FluidBufSpectralShape.dir/build.make src/FluidBufSpectralShape/CMakeFiles/FluidBufSpectralShape.dir/build
.PHONY : FluidBufSpectralShape/fast
#=============================================================================
# Target rules for targets named FluidBufStats
# Build rule for target.
FluidBufStats: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 FluidBufStats
.PHONY : FluidBufStats
# fast build rule for target.
FluidBufStats/fast:
$(MAKE) -f src/FluidBufStats/CMakeFiles/FluidBufStats.dir/build.make src/FluidBufStats/CMakeFiles/FluidBufStats.dir/build
.PHONY : FluidBufStats/fast
#=============================================================================
# Target rules for targets named FluidBufThreadDemo
# Build rule for target.
FluidBufThreadDemo: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 FluidBufThreadDemo
.PHONY : FluidBufThreadDemo
# fast build rule for target.
FluidBufThreadDemo/fast:
$(MAKE) -f src/FluidBufThreadDemo/CMakeFiles/FluidBufThreadDemo.dir/build.make src/FluidBufThreadDemo/CMakeFiles/FluidBufThreadDemo.dir/build
.PHONY : FluidBufThreadDemo/fast
#=============================================================================
# Target rules for targets named FluidBufTransientSlice
# Build rule for target.
FluidBufTransientSlice: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 FluidBufTransientSlice
.PHONY : FluidBufTransientSlice
# fast build rule for target.
FluidBufTransientSlice/fast:
$(MAKE) -f src/FluidBufTransientSlice/CMakeFiles/FluidBufTransientSlice.dir/build.make src/FluidBufTransientSlice/CMakeFiles/FluidBufTransientSlice.dir/build
.PHONY : FluidBufTransientSlice/fast
#=============================================================================
# Target rules for targets named FluidBufTransients
# Build rule for target.
FluidBufTransients: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 FluidBufTransients
.PHONY : FluidBufTransients
# fast build rule for target.
FluidBufTransients/fast:
$(MAKE) -f src/FluidBufTransients/CMakeFiles/FluidBufTransients.dir/build.make src/FluidBufTransients/CMakeFiles/FluidBufTransients.dir/build
.PHONY : FluidBufTransients/fast
#=============================================================================
# Target rules for targets named FluidGain
# Build rule for target.
FluidGain: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 FluidGain
.PHONY : FluidGain
# fast build rule for target.
FluidGain/fast:
$(MAKE) -f src/FluidGain/CMakeFiles/FluidGain.dir/build.make src/FluidGain/CMakeFiles/FluidGain.dir/build
.PHONY : FluidGain/fast
#=============================================================================
# Target rules for targets named FluidHPSS
# Build rule for target.
FluidHPSS: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 FluidHPSS
.PHONY : FluidHPSS
# fast build rule for target.
FluidHPSS/fast:
$(MAKE) -f src/FluidHPSS/CMakeFiles/FluidHPSS.dir/build.make src/FluidHPSS/CMakeFiles/FluidHPSS.dir/build
.PHONY : FluidHPSS/fast
#=============================================================================
# Target rules for targets named FluidLoudness
# Build rule for target.
FluidLoudness: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 FluidLoudness
.PHONY : FluidLoudness
# fast build rule for target.
FluidLoudness/fast:
$(MAKE) -f src/FluidLoudness/CMakeFiles/FluidLoudness.dir/build.make src/FluidLoudness/CMakeFiles/FluidLoudness.dir/build
.PHONY : FluidLoudness/fast
#=============================================================================
# Target rules for targets named FluidMFCC
# Build rule for target.
FluidMFCC: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 FluidMFCC
.PHONY : FluidMFCC
# fast build rule for target.
FluidMFCC/fast:
$(MAKE) -f src/FluidMFCC/CMakeFiles/FluidMFCC.dir/build.make src/FluidMFCC/CMakeFiles/FluidMFCC.dir/build
.PHONY : FluidMFCC/fast
#=============================================================================
# Target rules for targets named FluidManipulation
# Build rule for target.
FluidManipulation: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 FluidManipulation
.PHONY : FluidManipulation
# fast build rule for target.
FluidManipulation/fast:
$(MAKE) -f src/FluidManipulation/CMakeFiles/FluidManipulation.dir/build.make src/FluidManipulation/CMakeFiles/FluidManipulation.dir/build
.PHONY : FluidManipulation/fast
#=============================================================================
# Target rules for targets named FluidMelBands
# Build rule for target.
FluidMelBands: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 FluidMelBands
.PHONY : FluidMelBands
# fast build rule for target.
FluidMelBands/fast:
$(MAKE) -f src/FluidMelBands/CMakeFiles/FluidMelBands.dir/build.make src/FluidMelBands/CMakeFiles/FluidMelBands.dir/build
.PHONY : FluidMelBands/fast
#=============================================================================
# Target rules for targets named FluidMessageTest
# Build rule for target.
FluidMessageTest: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 FluidMessageTest
.PHONY : FluidMessageTest
# fast build rule for target.
FluidMessageTest/fast:
$(MAKE) -f src/FluidMessageTest/CMakeFiles/FluidMessageTest.dir/build.make src/FluidMessageTest/CMakeFiles/FluidMessageTest.dir/build
.PHONY : FluidMessageTest/fast
#=============================================================================
# Target rules for targets named FluidNMFCross
# Build rule for target.
FluidNMFCross: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 FluidNMFCross
.PHONY : FluidNMFCross
# fast build rule for target.
FluidNMFCross/fast:
$(MAKE) -f src/FluidNMFCross/CMakeFiles/FluidNMFCross.dir/build.make src/FluidNMFCross/CMakeFiles/FluidNMFCross.dir/build
.PHONY : FluidNMFCross/fast
#=============================================================================
# Target rules for targets named FluidNMFFilter
# Build rule for target.
FluidNMFFilter: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 FluidNMFFilter
.PHONY : FluidNMFFilter
# fast build rule for target.
FluidNMFFilter/fast:
$(MAKE) -f src/FluidNMFFilter/CMakeFiles/FluidNMFFilter.dir/build.make src/FluidNMFFilter/CMakeFiles/FluidNMFFilter.dir/build
.PHONY : FluidNMFFilter/fast
#=============================================================================
# Target rules for targets named FluidNMFMatch
# Build rule for target.
FluidNMFMatch: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 FluidNMFMatch
.PHONY : FluidNMFMatch
# fast build rule for target.
FluidNMFMatch/fast:
$(MAKE) -f src/FluidNMFMatch/CMakeFiles/FluidNMFMatch.dir/build.make src/FluidNMFMatch/CMakeFiles/FluidNMFMatch.dir/build
.PHONY : FluidNMFMatch/fast
#=============================================================================
# Target rules for targets named FluidNMFMorph
# Build rule for target.
FluidNMFMorph: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 FluidNMFMorph
.PHONY : FluidNMFMorph
# fast build rule for target.
FluidNMFMorph/fast:
$(MAKE) -f src/FluidNMFMorph/CMakeFiles/FluidNMFMorph.dir/build.make src/FluidNMFMorph/CMakeFiles/FluidNMFMorph.dir/build
.PHONY : FluidNMFMorph/fast
#=============================================================================
# Target rules for targets named FluidNoveltySlice
# Build rule for target.
FluidNoveltySlice: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 FluidNoveltySlice
.PHONY : FluidNoveltySlice
# fast build rule for target.
FluidNoveltySlice/fast:
$(MAKE) -f src/FluidNoveltySlice/CMakeFiles/FluidNoveltySlice.dir/build.make src/FluidNoveltySlice/CMakeFiles/FluidNoveltySlice.dir/build
.PHONY : FluidNoveltySlice/fast
#=============================================================================
# Target rules for targets named FluidOnsetSlice
# Build rule for target.
FluidOnsetSlice: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 FluidOnsetSlice
.PHONY : FluidOnsetSlice
# fast build rule for target.
FluidOnsetSlice/fast:
$(MAKE) -f src/FluidOnsetSlice/CMakeFiles/FluidOnsetSlice.dir/build.make src/FluidOnsetSlice/CMakeFiles/FluidOnsetSlice.dir/build
.PHONY : FluidOnsetSlice/fast
#=============================================================================
# Target rules for targets named FluidPitch
# Build rule for target.
FluidPitch: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 FluidPitch
.PHONY : FluidPitch
# fast build rule for target.
FluidPitch/fast:
$(MAKE) -f src/FluidPitch/CMakeFiles/FluidPitch.dir/build.make src/FluidPitch/CMakeFiles/FluidPitch.dir/build
.PHONY : FluidPitch/fast
#=============================================================================
# Target rules for targets named FluidSTFTPass
# Build rule for target.
FluidSTFTPass: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 FluidSTFTPass
.PHONY : FluidSTFTPass
# fast build rule for target.
FluidSTFTPass/fast:
$(MAKE) -f src/FluidSTFTPass/CMakeFiles/FluidSTFTPass.dir/build.make src/FluidSTFTPass/CMakeFiles/FluidSTFTPass.dir/build
.PHONY : FluidSTFTPass/fast
#=============================================================================
# Target rules for targets named FluidSines
# Build rule for target.
FluidSines: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 FluidSines
.PHONY : FluidSines
# fast build rule for target.
FluidSines/fast:
$(MAKE) -f src/FluidSines/CMakeFiles/FluidSines.dir/build.make src/FluidSines/CMakeFiles/FluidSines.dir/build
.PHONY : FluidSines/fast
#=============================================================================
# Target rules for targets named FluidSpectralShape
# Build rule for target.
FluidSpectralShape: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 FluidSpectralShape
.PHONY : FluidSpectralShape
# fast build rule for target.
FluidSpectralShape/fast:
$(MAKE) -f src/FluidSpectralShape/CMakeFiles/FluidSpectralShape.dir/build.make src/FluidSpectralShape/CMakeFiles/FluidSpectralShape.dir/build
.PHONY : FluidSpectralShape/fast
#=============================================================================
# Target rules for targets named FluidSubscriberProviderTest
# Build rule for target.
FluidSubscriberProviderTest: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 FluidSubscriberProviderTest
.PHONY : FluidSubscriberProviderTest
# fast build rule for target.
FluidSubscriberProviderTest/fast:
$(MAKE) -f src/FluidSubscriberProviderTest/CMakeFiles/FluidSubscriberProviderTest.dir/build.make src/FluidSubscriberProviderTest/CMakeFiles/FluidSubscriberProviderTest.dir/build
.PHONY : FluidSubscriberProviderTest/fast
#=============================================================================
# Target rules for targets named FluidTransientSlice
# Build rule for target.
FluidTransientSlice: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 FluidTransientSlice
.PHONY : FluidTransientSlice
# fast build rule for target.
FluidTransientSlice/fast:
$(MAKE) -f src/FluidTransientSlice/CMakeFiles/FluidTransientSlice.dir/build.make src/FluidTransientSlice/CMakeFiles/FluidTransientSlice.dir/build
.PHONY : FluidTransientSlice/fast
#=============================================================================
# Target rules for targets named FluidTransients
# Build rule for target.
FluidTransients: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 FluidTransients
.PHONY : FluidTransients
# fast build rule for target.
FluidTransients/fast:
$(MAKE) -f src/FluidTransients/CMakeFiles/FluidTransients.dir/build.make src/FluidTransients/CMakeFiles/FluidTransients.dir/build
.PHONY : FluidTransients/fast
# Help Target
help:
@echo "The following are some of the valid targets for this Makefile:"
@echo "... all (the default if no target is provided)"
@echo "... clean"
@echo "... depend"
@echo "... edit_cache"
@echo "... install"
@echo "... install/local"
@echo "... install/strip"
@echo "... list_install_components"
@echo "... rebuild_cache"
@echo "... FluidAmpGate"
@echo "... FluidAmpSlice"
@echo "... FluidBufAmpGate"
@echo "... FluidBufAmpSlice"
@echo "... FluidBufCompose"
@echo "... FluidBufFlatten"
@echo "... FluidBufHPSS"
@echo "... FluidBufLoudness"
@echo "... FluidBufMFCC"
@echo "... FluidBufMelBands"
@echo "... FluidBufNMF"
@echo "... FluidBufNoveltySlice"
@echo "... FluidBufOnsetSlice"
@echo "... FluidBufPitch"
@echo "... FluidBufSines"
@echo "... FluidBufSpectralShape"
@echo "... FluidBufStats"
@echo "... FluidBufThreadDemo"
@echo "... FluidBufTransientSlice"
@echo "... FluidBufTransients"
@echo "... FluidGain"
@echo "... FluidHPSS"
@echo "... FluidLoudness"
@echo "... FluidMFCC"
@echo "... FluidManipulation"
@echo "... FluidMelBands"
@echo "... FluidMessageTest"
@echo "... FluidNMFCross"
@echo "... FluidNMFFilter"
@echo "... FluidNMFMatch"
@echo "... FluidNMFMorph"
@echo "... FluidNoveltySlice"
@echo "... FluidOnsetSlice"
@echo "... FluidPitch"
@echo "... FluidSTFTPass"
@echo "... FluidSines"
@echo "... FluidSpectralShape"
@echo "... FluidSubscriberProviderTest"
@echo "... FluidTransientSlice"
@echo "... FluidTransients"
@echo "... HISSTools_AudioFile"
@echo "... HISSTools_FFT"
@echo "... describe"
.PHONY : help
#=============================================================================
# Special targets to cleanup operation of make.
# Special rule to run CMake to check the build system integrity.
# No rule that depends on this can have commands that come from listfiles
# because they might be regenerated.
cmake_check_build_system:
$(CMAKE_COMMAND) -P /media/psf/Home/dev/flucoma-sc/linuxbuild/CMakeFiles/VerifyGlobs.cmake
$(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
.PHONY : cmake_check_build_system

@ -1,16 +0,0 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.17
# Relative path conversion top directories.
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/owen/mac/dev/flucoma-core")
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/media/psf/Home/dev/flucoma-sc/linuxbuild")
# Force unix paths in dependencies.
set(CMAKE_FORCE_UNIX_PATHS 1)
# The C and CXX include file regular expressions for this directory.
set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$")
set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$")
set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN})
set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN})

@ -1,60 +0,0 @@
#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">])
#IncludeRegexScan: ^.*$
#IncludeRegexComplain: ^$
#IncludeRegexTransform:
/home/owen/mac/dev/HISSTools_Library/AudioFile/BaseAudioFile.cpp
BaseAudioFile.h
/home/owen/mac/dev/HISSTools_Library/AudioFile/BaseAudioFile.h
/home/owen/mac/dev/HISSTools_Library/AudioFile/BaseAudioFile.h
cstdint
-
fstream
-
string
-
vector
-
/home/owen/mac/dev/HISSTools_Library/AudioFile/IAudioFile.cpp
IAudioFile.h
/home/owen/mac/dev/HISSTools_Library/AudioFile/IAudioFile.h
cmath
-
cassert
-
cstring
-
vector
-
algorithm
-
/home/owen/mac/dev/HISSTools_Library/AudioFile/IAudioFile.h
BaseAudioFile.h
/home/owen/mac/dev/HISSTools_Library/AudioFile/BaseAudioFile.h
fstream
-
/home/owen/mac/dev/HISSTools_Library/AudioFile/OAudioFile.cpp
OAudioFile.h
/home/owen/mac/dev/HISSTools_Library/AudioFile/OAudioFile.h
algorithm
-
cmath
-
cstring
-
vector
-
/home/owen/mac/dev/HISSTools_Library/AudioFile/OAudioFile.h
BaseAudioFile.h
/home/owen/mac/dev/HISSTools_Library/AudioFile/BaseAudioFile.h
fstream
-

@ -1,22 +0,0 @@
# The set of languages for which implicit dependencies are needed:
set(CMAKE_DEPENDS_LANGUAGES
"CXX"
)
# The set of files for implicit dependencies of each language:
set(CMAKE_DEPENDS_CHECK_CXX
"/home/owen/mac/dev/HISSTools_Library/AudioFile/BaseAudioFile.cpp" "/media/psf/Home/dev/flucoma-sc/linuxbuild/_deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/home/owen/mac/dev/HISSTools_Library/AudioFile/BaseAudioFile.cpp.o"
"/home/owen/mac/dev/HISSTools_Library/AudioFile/IAudioFile.cpp" "/media/psf/Home/dev/flucoma-sc/linuxbuild/_deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/home/owen/mac/dev/HISSTools_Library/AudioFile/IAudioFile.cpp.o"
"/home/owen/mac/dev/HISSTools_Library/AudioFile/OAudioFile.cpp" "/media/psf/Home/dev/flucoma-sc/linuxbuild/_deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/home/owen/mac/dev/HISSTools_Library/AudioFile/OAudioFile.cpp.o"
)
set(CMAKE_CXX_COMPILER_ID "GNU")
# The include file search paths:
set(CMAKE_CXX_TARGET_INCLUDE_PATH
)
# Targets to which this target links.
set(CMAKE_TARGET_LINKED_INFO_FILES
)
# Fortran module output directory.
set(CMAKE_Fortran_TARGET_MODULE_DIR "")

@ -1,146 +0,0 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.17
# Delete rule output on recipe failure.
.DELETE_ON_ERROR:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Disable VCS-based implicit rules.
% : %,v
# Disable VCS-based implicit rules.
% : RCS/%
# Disable VCS-based implicit rules.
% : RCS/%,v
# Disable VCS-based implicit rules.
% : SCCS/s.%
# Disable VCS-based implicit rules.
% : s.%
.SUFFIXES: .hpux_make_needs_suffix_list
# Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
# The shell in which to execute make rules.
SHELL = /bin/sh
# The CMake executable.
CMAKE_COMMAND = /usr/bin/cmake
# The command to remove a file.
RM = /usr/bin/cmake -E rm -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /media/psf/Home/dev/flucoma-sc
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /media/psf/Home/dev/flucoma-sc/linuxbuild
# Include any dependencies generated for this target.
include _deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/depend.make
# Include the progress variables for this target.
include _deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/progress.make
# Include the compile flags for this target's objects.
include _deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/flags.make
_deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/home/owen/mac/dev/HISSTools_Library/AudioFile/BaseAudioFile.cpp.o: _deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/flags.make
_deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/home/owen/mac/dev/HISSTools_Library/AudioFile/BaseAudioFile.cpp.o: /home/owen/mac/dev/HISSTools_Library/AudioFile/BaseAudioFile.cpp
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/Home/dev/flucoma-sc/linuxbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object _deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/home/owen/mac/dev/HISSTools_Library/AudioFile/BaseAudioFile.cpp.o"
cd /media/psf/Home/dev/flucoma-sc/linuxbuild/_deps/flucoma-core-build && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/HISSTools_AudioFile.dir/home/owen/mac/dev/HISSTools_Library/AudioFile/BaseAudioFile.cpp.o -c /home/owen/mac/dev/HISSTools_Library/AudioFile/BaseAudioFile.cpp
_deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/home/owen/mac/dev/HISSTools_Library/AudioFile/BaseAudioFile.cpp.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/HISSTools_AudioFile.dir/home/owen/mac/dev/HISSTools_Library/AudioFile/BaseAudioFile.cpp.i"
cd /media/psf/Home/dev/flucoma-sc/linuxbuild/_deps/flucoma-core-build && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/owen/mac/dev/HISSTools_Library/AudioFile/BaseAudioFile.cpp > CMakeFiles/HISSTools_AudioFile.dir/home/owen/mac/dev/HISSTools_Library/AudioFile/BaseAudioFile.cpp.i
_deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/home/owen/mac/dev/HISSTools_Library/AudioFile/BaseAudioFile.cpp.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/HISSTools_AudioFile.dir/home/owen/mac/dev/HISSTools_Library/AudioFile/BaseAudioFile.cpp.s"
cd /media/psf/Home/dev/flucoma-sc/linuxbuild/_deps/flucoma-core-build && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/owen/mac/dev/HISSTools_Library/AudioFile/BaseAudioFile.cpp -o CMakeFiles/HISSTools_AudioFile.dir/home/owen/mac/dev/HISSTools_Library/AudioFile/BaseAudioFile.cpp.s
_deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/home/owen/mac/dev/HISSTools_Library/AudioFile/IAudioFile.cpp.o: _deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/flags.make
_deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/home/owen/mac/dev/HISSTools_Library/AudioFile/IAudioFile.cpp.o: /home/owen/mac/dev/HISSTools_Library/AudioFile/IAudioFile.cpp
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/Home/dev/flucoma-sc/linuxbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object _deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/home/owen/mac/dev/HISSTools_Library/AudioFile/IAudioFile.cpp.o"
cd /media/psf/Home/dev/flucoma-sc/linuxbuild/_deps/flucoma-core-build && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/HISSTools_AudioFile.dir/home/owen/mac/dev/HISSTools_Library/AudioFile/IAudioFile.cpp.o -c /home/owen/mac/dev/HISSTools_Library/AudioFile/IAudioFile.cpp
_deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/home/owen/mac/dev/HISSTools_Library/AudioFile/IAudioFile.cpp.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/HISSTools_AudioFile.dir/home/owen/mac/dev/HISSTools_Library/AudioFile/IAudioFile.cpp.i"
cd /media/psf/Home/dev/flucoma-sc/linuxbuild/_deps/flucoma-core-build && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/owen/mac/dev/HISSTools_Library/AudioFile/IAudioFile.cpp > CMakeFiles/HISSTools_AudioFile.dir/home/owen/mac/dev/HISSTools_Library/AudioFile/IAudioFile.cpp.i
_deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/home/owen/mac/dev/HISSTools_Library/AudioFile/IAudioFile.cpp.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/HISSTools_AudioFile.dir/home/owen/mac/dev/HISSTools_Library/AudioFile/IAudioFile.cpp.s"
cd /media/psf/Home/dev/flucoma-sc/linuxbuild/_deps/flucoma-core-build && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/owen/mac/dev/HISSTools_Library/AudioFile/IAudioFile.cpp -o CMakeFiles/HISSTools_AudioFile.dir/home/owen/mac/dev/HISSTools_Library/AudioFile/IAudioFile.cpp.s
_deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/home/owen/mac/dev/HISSTools_Library/AudioFile/OAudioFile.cpp.o: _deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/flags.make
_deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/home/owen/mac/dev/HISSTools_Library/AudioFile/OAudioFile.cpp.o: /home/owen/mac/dev/HISSTools_Library/AudioFile/OAudioFile.cpp
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/Home/dev/flucoma-sc/linuxbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building CXX object _deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/home/owen/mac/dev/HISSTools_Library/AudioFile/OAudioFile.cpp.o"
cd /media/psf/Home/dev/flucoma-sc/linuxbuild/_deps/flucoma-core-build && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/HISSTools_AudioFile.dir/home/owen/mac/dev/HISSTools_Library/AudioFile/OAudioFile.cpp.o -c /home/owen/mac/dev/HISSTools_Library/AudioFile/OAudioFile.cpp
_deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/home/owen/mac/dev/HISSTools_Library/AudioFile/OAudioFile.cpp.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/HISSTools_AudioFile.dir/home/owen/mac/dev/HISSTools_Library/AudioFile/OAudioFile.cpp.i"
cd /media/psf/Home/dev/flucoma-sc/linuxbuild/_deps/flucoma-core-build && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/owen/mac/dev/HISSTools_Library/AudioFile/OAudioFile.cpp > CMakeFiles/HISSTools_AudioFile.dir/home/owen/mac/dev/HISSTools_Library/AudioFile/OAudioFile.cpp.i
_deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/home/owen/mac/dev/HISSTools_Library/AudioFile/OAudioFile.cpp.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/HISSTools_AudioFile.dir/home/owen/mac/dev/HISSTools_Library/AudioFile/OAudioFile.cpp.s"
cd /media/psf/Home/dev/flucoma-sc/linuxbuild/_deps/flucoma-core-build && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/owen/mac/dev/HISSTools_Library/AudioFile/OAudioFile.cpp -o CMakeFiles/HISSTools_AudioFile.dir/home/owen/mac/dev/HISSTools_Library/AudioFile/OAudioFile.cpp.s
# Object files for target HISSTools_AudioFile
HISSTools_AudioFile_OBJECTS = \
"CMakeFiles/HISSTools_AudioFile.dir/home/owen/mac/dev/HISSTools_Library/AudioFile/BaseAudioFile.cpp.o" \
"CMakeFiles/HISSTools_AudioFile.dir/home/owen/mac/dev/HISSTools_Library/AudioFile/IAudioFile.cpp.o" \
"CMakeFiles/HISSTools_AudioFile.dir/home/owen/mac/dev/HISSTools_Library/AudioFile/OAudioFile.cpp.o"
# External object files for target HISSTools_AudioFile
HISSTools_AudioFile_EXTERNAL_OBJECTS =
_deps/flucoma-core-build/libHISSTools_AudioFile.a: _deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/home/owen/mac/dev/HISSTools_Library/AudioFile/BaseAudioFile.cpp.o
_deps/flucoma-core-build/libHISSTools_AudioFile.a: _deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/home/owen/mac/dev/HISSTools_Library/AudioFile/IAudioFile.cpp.o
_deps/flucoma-core-build/libHISSTools_AudioFile.a: _deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/home/owen/mac/dev/HISSTools_Library/AudioFile/OAudioFile.cpp.o
_deps/flucoma-core-build/libHISSTools_AudioFile.a: _deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/build.make
_deps/flucoma-core-build/libHISSTools_AudioFile.a: _deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/link.txt
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/media/psf/Home/dev/flucoma-sc/linuxbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Linking CXX static library libHISSTools_AudioFile.a"
cd /media/psf/Home/dev/flucoma-sc/linuxbuild/_deps/flucoma-core-build && $(CMAKE_COMMAND) -P CMakeFiles/HISSTools_AudioFile.dir/cmake_clean_target.cmake
cd /media/psf/Home/dev/flucoma-sc/linuxbuild/_deps/flucoma-core-build && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/HISSTools_AudioFile.dir/link.txt --verbose=$(VERBOSE)
# Rule to build all files generated by this target.
_deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/build: _deps/flucoma-core-build/libHISSTools_AudioFile.a
.PHONY : _deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/build
_deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/clean:
cd /media/psf/Home/dev/flucoma-sc/linuxbuild/_deps/flucoma-core-build && $(CMAKE_COMMAND) -P CMakeFiles/HISSTools_AudioFile.dir/cmake_clean.cmake
.PHONY : _deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/clean
_deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/depend:
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /media/psf/Home/dev/flucoma-sc /home/owen/mac/dev/flucoma-core /media/psf/Home/dev/flucoma-sc/linuxbuild /media/psf/Home/dev/flucoma-sc/linuxbuild/_deps/flucoma-core-build /media/psf/Home/dev/flucoma-sc/linuxbuild/_deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/DependInfo.cmake --color=$(COLOR)
.PHONY : _deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/depend

@ -1,12 +0,0 @@
file(REMOVE_RECURSE
"CMakeFiles/HISSTools_AudioFile.dir/home/owen/mac/dev/HISSTools_Library/AudioFile/BaseAudioFile.cpp.o"
"CMakeFiles/HISSTools_AudioFile.dir/home/owen/mac/dev/HISSTools_Library/AudioFile/IAudioFile.cpp.o"
"CMakeFiles/HISSTools_AudioFile.dir/home/owen/mac/dev/HISSTools_Library/AudioFile/OAudioFile.cpp.o"
"libHISSTools_AudioFile.a"
"libHISSTools_AudioFile.pdb"
)
# Per-language clean rules from dependency scanning.
foreach(lang CXX)
include(CMakeFiles/HISSTools_AudioFile.dir/cmake_clean_${lang}.cmake OPTIONAL)
endforeach()

@ -1,14 +0,0 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.17
_deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/home/owen/mac/dev/HISSTools_Library/AudioFile/BaseAudioFile.cpp.o
/home/owen/mac/dev/HISSTools_Library/AudioFile/BaseAudioFile.cpp
/home/owen/mac/dev/HISSTools_Library/AudioFile/BaseAudioFile.h
_deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/home/owen/mac/dev/HISSTools_Library/AudioFile/IAudioFile.cpp.o
/home/owen/mac/dev/HISSTools_Library/AudioFile/BaseAudioFile.h
/home/owen/mac/dev/HISSTools_Library/AudioFile/IAudioFile.cpp
/home/owen/mac/dev/HISSTools_Library/AudioFile/IAudioFile.h
_deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/home/owen/mac/dev/HISSTools_Library/AudioFile/OAudioFile.cpp.o
/home/owen/mac/dev/HISSTools_Library/AudioFile/BaseAudioFile.h
/home/owen/mac/dev/HISSTools_Library/AudioFile/OAudioFile.cpp
/home/owen/mac/dev/HISSTools_Library/AudioFile/OAudioFile.h

@ -1,14 +0,0 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.17
_deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/home/owen/mac/dev/HISSTools_Library/AudioFile/BaseAudioFile.cpp.o: /home/owen/mac/dev/HISSTools_Library/AudioFile/BaseAudioFile.cpp
_deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/home/owen/mac/dev/HISSTools_Library/AudioFile/BaseAudioFile.cpp.o: /home/owen/mac/dev/HISSTools_Library/AudioFile/BaseAudioFile.h
_deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/home/owen/mac/dev/HISSTools_Library/AudioFile/IAudioFile.cpp.o: /home/owen/mac/dev/HISSTools_Library/AudioFile/BaseAudioFile.h
_deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/home/owen/mac/dev/HISSTools_Library/AudioFile/IAudioFile.cpp.o: /home/owen/mac/dev/HISSTools_Library/AudioFile/IAudioFile.cpp
_deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/home/owen/mac/dev/HISSTools_Library/AudioFile/IAudioFile.cpp.o: /home/owen/mac/dev/HISSTools_Library/AudioFile/IAudioFile.h
_deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/home/owen/mac/dev/HISSTools_Library/AudioFile/OAudioFile.cpp.o: /home/owen/mac/dev/HISSTools_Library/AudioFile/BaseAudioFile.h
_deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/home/owen/mac/dev/HISSTools_Library/AudioFile/OAudioFile.cpp.o: /home/owen/mac/dev/HISSTools_Library/AudioFile/OAudioFile.cpp
_deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/home/owen/mac/dev/HISSTools_Library/AudioFile/OAudioFile.cpp.o: /home/owen/mac/dev/HISSTools_Library/AudioFile/OAudioFile.h

@ -1,10 +0,0 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.17
# compile CXX with /usr/bin/c++
CXX_FLAGS = -O3 -DNDEBUG -mavx -std=c++14
CXX_DEFINES =
CXX_INCLUDES =

@ -1,2 +0,0 @@
/usr/bin/ar qc libHISSTools_AudioFile.a CMakeFiles/HISSTools_AudioFile.dir/home/owen/mac/dev/HISSTools_Library/AudioFile/BaseAudioFile.cpp.o CMakeFiles/HISSTools_AudioFile.dir/home/owen/mac/dev/HISSTools_Library/AudioFile/IAudioFile.cpp.o CMakeFiles/HISSTools_AudioFile.dir/home/owen/mac/dev/HISSTools_Library/AudioFile/OAudioFile.cpp.o
/usr/bin/ranlib libHISSTools_AudioFile.a

@ -1,5 +0,0 @@
CMAKE_PROGRESS_1 = 81
CMAKE_PROGRESS_2 = 82
CMAKE_PROGRESS_3 = 83
CMAKE_PROGRESS_4 = 84

@ -1,44 +0,0 @@
#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">])
#IncludeRegexScan: ^.*$
#IncludeRegexComplain: ^$
#IncludeRegexTransform:
/home/owen/mac/dev/HISSTools_Library/HISSTools_FFT/HISSTools_FFT.cpp
HISSTools_FFT.h
/home/owen/mac/dev/HISSTools_Library/HISSTools_FFT/HISSTools_FFT.h
HISSTools_FFT_Core.h
/home/owen/mac/dev/HISSTools_Library/HISSTools_FFT/HISSTools_FFT_Core.h
/home/owen/mac/dev/HISSTools_Library/HISSTools_FFT/HISSTools_FFT.h
stdint.h
-
Accelerate/Accelerate.h
-
/home/owen/mac/dev/HISSTools_Library/HISSTools_FFT/HISSTools_FFT_Core.h
cmath
-
cstring
-
cstdlib
-
algorithm
-
functional
-
arm_neon.h
-
memory.h
-
malloc.h
-
intrin.h
-
emmintrin.h
-
immintrin.h
-

@ -1,21 +0,0 @@
# The set of languages for which implicit dependencies are needed:
set(CMAKE_DEPENDS_LANGUAGES
"CXX"
)
# The set of files for implicit dependencies of each language:
set(CMAKE_DEPENDS_CHECK_CXX
"/home/owen/mac/dev/HISSTools_Library/HISSTools_FFT/HISSTools_FFT.cpp" "/media/psf/Home/dev/flucoma-sc/linuxbuild/_deps/flucoma-core-build/CMakeFiles/HISSTools_FFT.dir/home/owen/mac/dev/HISSTools_Library/HISSTools_FFT/HISSTools_FFT.cpp.o"
)
set(CMAKE_CXX_COMPILER_ID "GNU")
# The include file search paths:
set(CMAKE_CXX_TARGET_INCLUDE_PATH
"/home/owen/mac/dev/HISSTools_Library"
)
# Targets to which this target links.
set(CMAKE_TARGET_LINKED_INFO_FILES
)
# Fortran module output directory.
set(CMAKE_Fortran_TARGET_MODULE_DIR "")

@ -1,116 +0,0 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.17
# Delete rule output on recipe failure.
.DELETE_ON_ERROR:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Disable VCS-based implicit rules.
% : %,v
# Disable VCS-based implicit rules.
% : RCS/%
# Disable VCS-based implicit rules.
% : RCS/%,v
# Disable VCS-based implicit rules.
% : SCCS/s.%
# Disable VCS-based implicit rules.
% : s.%
.SUFFIXES: .hpux_make_needs_suffix_list
# Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
# The shell in which to execute make rules.
SHELL = /bin/sh
# The CMake executable.
CMAKE_COMMAND = /usr/bin/cmake
# The command to remove a file.
RM = /usr/bin/cmake -E rm -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /media/psf/Home/dev/flucoma-sc
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /media/psf/Home/dev/flucoma-sc/linuxbuild
# Include any dependencies generated for this target.
include _deps/flucoma-core-build/CMakeFiles/HISSTools_FFT.dir/depend.make
# Include the progress variables for this target.
include _deps/flucoma-core-build/CMakeFiles/HISSTools_FFT.dir/progress.make
# Include the compile flags for this target's objects.
include _deps/flucoma-core-build/CMakeFiles/HISSTools_FFT.dir/flags.make
_deps/flucoma-core-build/CMakeFiles/HISSTools_FFT.dir/home/owen/mac/dev/HISSTools_Library/HISSTools_FFT/HISSTools_FFT.cpp.o: _deps/flucoma-core-build/CMakeFiles/HISSTools_FFT.dir/flags.make
_deps/flucoma-core-build/CMakeFiles/HISSTools_FFT.dir/home/owen/mac/dev/HISSTools_Library/HISSTools_FFT/HISSTools_FFT.cpp.o: /home/owen/mac/dev/HISSTools_Library/HISSTools_FFT/HISSTools_FFT.cpp
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/Home/dev/flucoma-sc/linuxbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object _deps/flucoma-core-build/CMakeFiles/HISSTools_FFT.dir/home/owen/mac/dev/HISSTools_Library/HISSTools_FFT/HISSTools_FFT.cpp.o"
cd /media/psf/Home/dev/flucoma-sc/linuxbuild/_deps/flucoma-core-build && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/HISSTools_FFT.dir/home/owen/mac/dev/HISSTools_Library/HISSTools_FFT/HISSTools_FFT.cpp.o -c /home/owen/mac/dev/HISSTools_Library/HISSTools_FFT/HISSTools_FFT.cpp
_deps/flucoma-core-build/CMakeFiles/HISSTools_FFT.dir/home/owen/mac/dev/HISSTools_Library/HISSTools_FFT/HISSTools_FFT.cpp.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/HISSTools_FFT.dir/home/owen/mac/dev/HISSTools_Library/HISSTools_FFT/HISSTools_FFT.cpp.i"
cd /media/psf/Home/dev/flucoma-sc/linuxbuild/_deps/flucoma-core-build && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/owen/mac/dev/HISSTools_Library/HISSTools_FFT/HISSTools_FFT.cpp > CMakeFiles/HISSTools_FFT.dir/home/owen/mac/dev/HISSTools_Library/HISSTools_FFT/HISSTools_FFT.cpp.i
_deps/flucoma-core-build/CMakeFiles/HISSTools_FFT.dir/home/owen/mac/dev/HISSTools_Library/HISSTools_FFT/HISSTools_FFT.cpp.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/HISSTools_FFT.dir/home/owen/mac/dev/HISSTools_Library/HISSTools_FFT/HISSTools_FFT.cpp.s"
cd /media/psf/Home/dev/flucoma-sc/linuxbuild/_deps/flucoma-core-build && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/owen/mac/dev/HISSTools_Library/HISSTools_FFT/HISSTools_FFT.cpp -o CMakeFiles/HISSTools_FFT.dir/home/owen/mac/dev/HISSTools_Library/HISSTools_FFT/HISSTools_FFT.cpp.s
# Object files for target HISSTools_FFT
HISSTools_FFT_OBJECTS = \
"CMakeFiles/HISSTools_FFT.dir/home/owen/mac/dev/HISSTools_Library/HISSTools_FFT/HISSTools_FFT.cpp.o"
# External object files for target HISSTools_FFT
HISSTools_FFT_EXTERNAL_OBJECTS =
_deps/flucoma-core-build/libHISSTools_FFT.a: _deps/flucoma-core-build/CMakeFiles/HISSTools_FFT.dir/home/owen/mac/dev/HISSTools_Library/HISSTools_FFT/HISSTools_FFT.cpp.o
_deps/flucoma-core-build/libHISSTools_FFT.a: _deps/flucoma-core-build/CMakeFiles/HISSTools_FFT.dir/build.make
_deps/flucoma-core-build/libHISSTools_FFT.a: _deps/flucoma-core-build/CMakeFiles/HISSTools_FFT.dir/link.txt
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/media/psf/Home/dev/flucoma-sc/linuxbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX static library libHISSTools_FFT.a"
cd /media/psf/Home/dev/flucoma-sc/linuxbuild/_deps/flucoma-core-build && $(CMAKE_COMMAND) -P CMakeFiles/HISSTools_FFT.dir/cmake_clean_target.cmake
cd /media/psf/Home/dev/flucoma-sc/linuxbuild/_deps/flucoma-core-build && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/HISSTools_FFT.dir/link.txt --verbose=$(VERBOSE)
# Rule to build all files generated by this target.
_deps/flucoma-core-build/CMakeFiles/HISSTools_FFT.dir/build: _deps/flucoma-core-build/libHISSTools_FFT.a
.PHONY : _deps/flucoma-core-build/CMakeFiles/HISSTools_FFT.dir/build
_deps/flucoma-core-build/CMakeFiles/HISSTools_FFT.dir/clean:
cd /media/psf/Home/dev/flucoma-sc/linuxbuild/_deps/flucoma-core-build && $(CMAKE_COMMAND) -P CMakeFiles/HISSTools_FFT.dir/cmake_clean.cmake
.PHONY : _deps/flucoma-core-build/CMakeFiles/HISSTools_FFT.dir/clean
_deps/flucoma-core-build/CMakeFiles/HISSTools_FFT.dir/depend:
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /media/psf/Home/dev/flucoma-sc /home/owen/mac/dev/flucoma-core /media/psf/Home/dev/flucoma-sc/linuxbuild /media/psf/Home/dev/flucoma-sc/linuxbuild/_deps/flucoma-core-build /media/psf/Home/dev/flucoma-sc/linuxbuild/_deps/flucoma-core-build/CMakeFiles/HISSTools_FFT.dir/DependInfo.cmake --color=$(COLOR)
.PHONY : _deps/flucoma-core-build/CMakeFiles/HISSTools_FFT.dir/depend

@ -1,10 +0,0 @@
file(REMOVE_RECURSE
"CMakeFiles/HISSTools_FFT.dir/home/owen/mac/dev/HISSTools_Library/HISSTools_FFT/HISSTools_FFT.cpp.o"
"libHISSTools_FFT.a"
"libHISSTools_FFT.pdb"
)
# Per-language clean rules from dependency scanning.
foreach(lang CXX)
include(CMakeFiles/HISSTools_FFT.dir/cmake_clean_${lang}.cmake OPTIONAL)
endforeach()

@ -1,7 +0,0 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.17
_deps/flucoma-core-build/CMakeFiles/HISSTools_FFT.dir/home/owen/mac/dev/HISSTools_Library/HISSTools_FFT/HISSTools_FFT.cpp.o
/home/owen/mac/dev/HISSTools_Library/HISSTools_FFT/HISSTools_FFT.cpp
/home/owen/mac/dev/HISSTools_Library/HISSTools_FFT/HISSTools_FFT.h
/home/owen/mac/dev/HISSTools_Library/HISSTools_FFT/HISSTools_FFT_Core.h

@ -1,7 +0,0 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.17
_deps/flucoma-core-build/CMakeFiles/HISSTools_FFT.dir/home/owen/mac/dev/HISSTools_Library/HISSTools_FFT/HISSTools_FFT.cpp.o: /home/owen/mac/dev/HISSTools_Library/HISSTools_FFT/HISSTools_FFT.cpp
_deps/flucoma-core-build/CMakeFiles/HISSTools_FFT.dir/home/owen/mac/dev/HISSTools_Library/HISSTools_FFT/HISSTools_FFT.cpp.o: /home/owen/mac/dev/HISSTools_Library/HISSTools_FFT/HISSTools_FFT.h
_deps/flucoma-core-build/CMakeFiles/HISSTools_FFT.dir/home/owen/mac/dev/HISSTools_Library/HISSTools_FFT/HISSTools_FFT.cpp.o: /home/owen/mac/dev/HISSTools_Library/HISSTools_FFT/HISSTools_FFT_Core.h

@ -1,10 +0,0 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.17
# compile CXX with /usr/bin/c++
CXX_FLAGS = -O3 -DNDEBUG -fPIC -mavx -fPIC -std=c++14
CXX_DEFINES =
CXX_INCLUDES = -I/home/owen/mac/dev/HISSTools_Library

@ -1,2 +0,0 @@
/usr/bin/ar qc libHISSTools_FFT.a CMakeFiles/HISSTools_FFT.dir/home/owen/mac/dev/HISSTools_Library/HISSTools_FFT/HISSTools_FFT.cpp.o
/usr/bin/ranlib libHISSTools_FFT.a

@ -1,355 +0,0 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.17
# Default target executed when no arguments are given to make.
default_target: all
.PHONY : default_target
# Allow only one "make -f Makefile2" at a time, but pass parallelism.
.NOTPARALLEL:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Disable VCS-based implicit rules.
% : %,v
# Disable VCS-based implicit rules.
% : RCS/%
# Disable VCS-based implicit rules.
% : RCS/%,v
# Disable VCS-based implicit rules.
% : SCCS/s.%
# Disable VCS-based implicit rules.
% : s.%
.SUFFIXES: .hpux_make_needs_suffix_list
# Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
# The shell in which to execute make rules.
SHELL = /bin/sh
# The CMake executable.
CMAKE_COMMAND = /usr/bin/cmake
# The command to remove a file.
RM = /usr/bin/cmake -E rm -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /media/psf/Home/dev/flucoma-sc
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /media/psf/Home/dev/flucoma-sc/linuxbuild
#=============================================================================
# Targets provided globally by CMake.
# Special rule for the target install/strip
install/strip: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..."
/usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
.PHONY : install/strip
# Special rule for the target install/strip
install/strip/fast: preinstall/fast
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..."
/usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
.PHONY : install/strip/fast
# Special rule for the target install/local
install/local: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..."
/usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
.PHONY : install/local
# Special rule for the target install/local
install/local/fast: preinstall/fast
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..."
/usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
.PHONY : install/local/fast
# Special rule for the target install
install: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..."
/usr/bin/cmake -P cmake_install.cmake
.PHONY : install
# Special rule for the target install
install/fast: preinstall/fast
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..."
/usr/bin/cmake -P cmake_install.cmake
.PHONY : install/fast
# Special rule for the target edit_cache
edit_cache:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake cache editor..."
/usr/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
.PHONY : edit_cache
# Special rule for the target edit_cache
edit_cache/fast: edit_cache
.PHONY : edit_cache/fast
# Special rule for the target rebuild_cache
rebuild_cache:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..."
/usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
.PHONY : rebuild_cache
# Special rule for the target rebuild_cache
rebuild_cache/fast: rebuild_cache
.PHONY : rebuild_cache/fast
# Special rule for the target list_install_components
list_install_components:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\""
.PHONY : list_install_components
# Special rule for the target list_install_components
list_install_components/fast: list_install_components
.PHONY : list_install_components/fast
# The main all target
all: cmake_check_build_system
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(CMAKE_COMMAND) -E cmake_progress_start /media/psf/Home/dev/flucoma-sc/linuxbuild/CMakeFiles /media/psf/Home/dev/flucoma-sc/linuxbuild/_deps/flucoma-core-build/CMakeFiles/progress.marks
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(MAKE) -f CMakeFiles/Makefile2 _deps/flucoma-core-build/all
$(CMAKE_COMMAND) -E cmake_progress_start /media/psf/Home/dev/flucoma-sc/linuxbuild/CMakeFiles 0
.PHONY : all
# The main clean target
clean:
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(MAKE) -f CMakeFiles/Makefile2 _deps/flucoma-core-build/clean
.PHONY : clean
# The main clean target
clean/fast: clean
.PHONY : clean/fast
# Prepare targets for installation.
preinstall: all
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(MAKE) -f CMakeFiles/Makefile2 _deps/flucoma-core-build/preinstall
.PHONY : preinstall
# Prepare targets for installation.
preinstall/fast:
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(MAKE) -f CMakeFiles/Makefile2 _deps/flucoma-core-build/preinstall
.PHONY : preinstall/fast
# clear depends
depend:
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(CMAKE_COMMAND) -P /media/psf/Home/dev/flucoma-sc/linuxbuild/CMakeFiles/VerifyGlobs.cmake
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
.PHONY : depend
# Convenience name for target.
_deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/rule:
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(MAKE) -f CMakeFiles/Makefile2 _deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/rule
.PHONY : _deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/rule
# Convenience name for target.
HISSTools_AudioFile: _deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/rule
.PHONY : HISSTools_AudioFile
# fast build rule for target.
HISSTools_AudioFile/fast:
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(MAKE) -f _deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/build.make _deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/build
.PHONY : HISSTools_AudioFile/fast
# Convenience name for target.
_deps/flucoma-core-build/CMakeFiles/HISSTools_FFT.dir/rule:
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(MAKE) -f CMakeFiles/Makefile2 _deps/flucoma-core-build/CMakeFiles/HISSTools_FFT.dir/rule
.PHONY : _deps/flucoma-core-build/CMakeFiles/HISSTools_FFT.dir/rule
# Convenience name for target.
HISSTools_FFT: _deps/flucoma-core-build/CMakeFiles/HISSTools_FFT.dir/rule
.PHONY : HISSTools_FFT
# fast build rule for target.
HISSTools_FFT/fast:
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(MAKE) -f _deps/flucoma-core-build/CMakeFiles/HISSTools_FFT.dir/build.make _deps/flucoma-core-build/CMakeFiles/HISSTools_FFT.dir/build
.PHONY : HISSTools_FFT/fast
home/owen/mac/dev/HISSTools_Library/AudioFile/BaseAudioFile.o: home/owen/mac/dev/HISSTools_Library/AudioFile/BaseAudioFile.cpp.o
.PHONY : home/owen/mac/dev/HISSTools_Library/AudioFile/BaseAudioFile.o
# target to build an object file
home/owen/mac/dev/HISSTools_Library/AudioFile/BaseAudioFile.cpp.o:
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(MAKE) -f _deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/build.make _deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/home/owen/mac/dev/HISSTools_Library/AudioFile/BaseAudioFile.cpp.o
.PHONY : home/owen/mac/dev/HISSTools_Library/AudioFile/BaseAudioFile.cpp.o
home/owen/mac/dev/HISSTools_Library/AudioFile/BaseAudioFile.i: home/owen/mac/dev/HISSTools_Library/AudioFile/BaseAudioFile.cpp.i
.PHONY : home/owen/mac/dev/HISSTools_Library/AudioFile/BaseAudioFile.i
# target to preprocess a source file
home/owen/mac/dev/HISSTools_Library/AudioFile/BaseAudioFile.cpp.i:
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(MAKE) -f _deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/build.make _deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/home/owen/mac/dev/HISSTools_Library/AudioFile/BaseAudioFile.cpp.i
.PHONY : home/owen/mac/dev/HISSTools_Library/AudioFile/BaseAudioFile.cpp.i
home/owen/mac/dev/HISSTools_Library/AudioFile/BaseAudioFile.s: home/owen/mac/dev/HISSTools_Library/AudioFile/BaseAudioFile.cpp.s
.PHONY : home/owen/mac/dev/HISSTools_Library/AudioFile/BaseAudioFile.s
# target to generate assembly for a file
home/owen/mac/dev/HISSTools_Library/AudioFile/BaseAudioFile.cpp.s:
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(MAKE) -f _deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/build.make _deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/home/owen/mac/dev/HISSTools_Library/AudioFile/BaseAudioFile.cpp.s
.PHONY : home/owen/mac/dev/HISSTools_Library/AudioFile/BaseAudioFile.cpp.s
home/owen/mac/dev/HISSTools_Library/AudioFile/IAudioFile.o: home/owen/mac/dev/HISSTools_Library/AudioFile/IAudioFile.cpp.o
.PHONY : home/owen/mac/dev/HISSTools_Library/AudioFile/IAudioFile.o
# target to build an object file
home/owen/mac/dev/HISSTools_Library/AudioFile/IAudioFile.cpp.o:
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(MAKE) -f _deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/build.make _deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/home/owen/mac/dev/HISSTools_Library/AudioFile/IAudioFile.cpp.o
.PHONY : home/owen/mac/dev/HISSTools_Library/AudioFile/IAudioFile.cpp.o
home/owen/mac/dev/HISSTools_Library/AudioFile/IAudioFile.i: home/owen/mac/dev/HISSTools_Library/AudioFile/IAudioFile.cpp.i
.PHONY : home/owen/mac/dev/HISSTools_Library/AudioFile/IAudioFile.i
# target to preprocess a source file
home/owen/mac/dev/HISSTools_Library/AudioFile/IAudioFile.cpp.i:
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(MAKE) -f _deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/build.make _deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/home/owen/mac/dev/HISSTools_Library/AudioFile/IAudioFile.cpp.i
.PHONY : home/owen/mac/dev/HISSTools_Library/AudioFile/IAudioFile.cpp.i
home/owen/mac/dev/HISSTools_Library/AudioFile/IAudioFile.s: home/owen/mac/dev/HISSTools_Library/AudioFile/IAudioFile.cpp.s
.PHONY : home/owen/mac/dev/HISSTools_Library/AudioFile/IAudioFile.s
# target to generate assembly for a file
home/owen/mac/dev/HISSTools_Library/AudioFile/IAudioFile.cpp.s:
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(MAKE) -f _deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/build.make _deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/home/owen/mac/dev/HISSTools_Library/AudioFile/IAudioFile.cpp.s
.PHONY : home/owen/mac/dev/HISSTools_Library/AudioFile/IAudioFile.cpp.s
home/owen/mac/dev/HISSTools_Library/AudioFile/OAudioFile.o: home/owen/mac/dev/HISSTools_Library/AudioFile/OAudioFile.cpp.o
.PHONY : home/owen/mac/dev/HISSTools_Library/AudioFile/OAudioFile.o
# target to build an object file
home/owen/mac/dev/HISSTools_Library/AudioFile/OAudioFile.cpp.o:
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(MAKE) -f _deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/build.make _deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/home/owen/mac/dev/HISSTools_Library/AudioFile/OAudioFile.cpp.o
.PHONY : home/owen/mac/dev/HISSTools_Library/AudioFile/OAudioFile.cpp.o
home/owen/mac/dev/HISSTools_Library/AudioFile/OAudioFile.i: home/owen/mac/dev/HISSTools_Library/AudioFile/OAudioFile.cpp.i
.PHONY : home/owen/mac/dev/HISSTools_Library/AudioFile/OAudioFile.i
# target to preprocess a source file
home/owen/mac/dev/HISSTools_Library/AudioFile/OAudioFile.cpp.i:
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(MAKE) -f _deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/build.make _deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/home/owen/mac/dev/HISSTools_Library/AudioFile/OAudioFile.cpp.i
.PHONY : home/owen/mac/dev/HISSTools_Library/AudioFile/OAudioFile.cpp.i
home/owen/mac/dev/HISSTools_Library/AudioFile/OAudioFile.s: home/owen/mac/dev/HISSTools_Library/AudioFile/OAudioFile.cpp.s
.PHONY : home/owen/mac/dev/HISSTools_Library/AudioFile/OAudioFile.s
# target to generate assembly for a file
home/owen/mac/dev/HISSTools_Library/AudioFile/OAudioFile.cpp.s:
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(MAKE) -f _deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/build.make _deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/home/owen/mac/dev/HISSTools_Library/AudioFile/OAudioFile.cpp.s
.PHONY : home/owen/mac/dev/HISSTools_Library/AudioFile/OAudioFile.cpp.s
home/owen/mac/dev/HISSTools_Library/HISSTools_FFT/HISSTools_FFT.o: home/owen/mac/dev/HISSTools_Library/HISSTools_FFT/HISSTools_FFT.cpp.o
.PHONY : home/owen/mac/dev/HISSTools_Library/HISSTools_FFT/HISSTools_FFT.o
# target to build an object file
home/owen/mac/dev/HISSTools_Library/HISSTools_FFT/HISSTools_FFT.cpp.o:
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(MAKE) -f _deps/flucoma-core-build/CMakeFiles/HISSTools_FFT.dir/build.make _deps/flucoma-core-build/CMakeFiles/HISSTools_FFT.dir/home/owen/mac/dev/HISSTools_Library/HISSTools_FFT/HISSTools_FFT.cpp.o
.PHONY : home/owen/mac/dev/HISSTools_Library/HISSTools_FFT/HISSTools_FFT.cpp.o
home/owen/mac/dev/HISSTools_Library/HISSTools_FFT/HISSTools_FFT.i: home/owen/mac/dev/HISSTools_Library/HISSTools_FFT/HISSTools_FFT.cpp.i
.PHONY : home/owen/mac/dev/HISSTools_Library/HISSTools_FFT/HISSTools_FFT.i
# target to preprocess a source file
home/owen/mac/dev/HISSTools_Library/HISSTools_FFT/HISSTools_FFT.cpp.i:
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(MAKE) -f _deps/flucoma-core-build/CMakeFiles/HISSTools_FFT.dir/build.make _deps/flucoma-core-build/CMakeFiles/HISSTools_FFT.dir/home/owen/mac/dev/HISSTools_Library/HISSTools_FFT/HISSTools_FFT.cpp.i
.PHONY : home/owen/mac/dev/HISSTools_Library/HISSTools_FFT/HISSTools_FFT.cpp.i
home/owen/mac/dev/HISSTools_Library/HISSTools_FFT/HISSTools_FFT.s: home/owen/mac/dev/HISSTools_Library/HISSTools_FFT/HISSTools_FFT.cpp.s
.PHONY : home/owen/mac/dev/HISSTools_Library/HISSTools_FFT/HISSTools_FFT.s
# target to generate assembly for a file
home/owen/mac/dev/HISSTools_Library/HISSTools_FFT/HISSTools_FFT.cpp.s:
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(MAKE) -f _deps/flucoma-core-build/CMakeFiles/HISSTools_FFT.dir/build.make _deps/flucoma-core-build/CMakeFiles/HISSTools_FFT.dir/home/owen/mac/dev/HISSTools_Library/HISSTools_FFT/HISSTools_FFT.cpp.s
.PHONY : home/owen/mac/dev/HISSTools_Library/HISSTools_FFT/HISSTools_FFT.cpp.s
# Help Target
help:
@echo "The following are some of the valid targets for this Makefile:"
@echo "... all (the default if no target is provided)"
@echo "... clean"
@echo "... depend"
@echo "... edit_cache"
@echo "... install"
@echo "... install/local"
@echo "... install/strip"
@echo "... list_install_components"
@echo "... rebuild_cache"
@echo "... HISSTools_AudioFile"
@echo "... HISSTools_FFT"
@echo "... home/owen/mac/dev/HISSTools_Library/AudioFile/BaseAudioFile.o"
@echo "... home/owen/mac/dev/HISSTools_Library/AudioFile/BaseAudioFile.i"
@echo "... home/owen/mac/dev/HISSTools_Library/AudioFile/BaseAudioFile.s"
@echo "... home/owen/mac/dev/HISSTools_Library/AudioFile/IAudioFile.o"
@echo "... home/owen/mac/dev/HISSTools_Library/AudioFile/IAudioFile.i"
@echo "... home/owen/mac/dev/HISSTools_Library/AudioFile/IAudioFile.s"
@echo "... home/owen/mac/dev/HISSTools_Library/AudioFile/OAudioFile.o"
@echo "... home/owen/mac/dev/HISSTools_Library/AudioFile/OAudioFile.i"
@echo "... home/owen/mac/dev/HISSTools_Library/AudioFile/OAudioFile.s"
@echo "... home/owen/mac/dev/HISSTools_Library/HISSTools_FFT/HISSTools_FFT.o"
@echo "... home/owen/mac/dev/HISSTools_Library/HISSTools_FFT/HISSTools_FFT.i"
@echo "... home/owen/mac/dev/HISSTools_Library/HISSTools_FFT/HISSTools_FFT.s"
.PHONY : help
#=============================================================================
# Special targets to cleanup operation of make.
# Special rule to run CMake to check the build system integrity.
# No rule that depends on this can have commands that come from listfiles
# because they might be regenerated.
cmake_check_build_system:
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(CMAKE_COMMAND) -P /media/psf/Home/dev/flucoma-sc/linuxbuild/CMakeFiles/VerifyGlobs.cmake
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
.PHONY : cmake_check_build_system

@ -1,45 +0,0 @@
# Install script for directory: /home/owen/mac/dev/flucoma-core
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/media/psf/Home/dev/flucoma-sc/install")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "Release")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Install shared libraries without execute permission?
if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE)
set(CMAKE_INSTALL_SO_NO_EXE "1")
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "FALSE")
endif()
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
# Include the install script for each subdirectory.
include("/media/psf/Home/dev/flucoma-sc/linuxbuild/_deps/flucoma-core-build/examples/cmake_install.cmake")
endif()

@ -1,16 +0,0 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.17
# Relative path conversion top directories.
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/owen/mac/dev/flucoma-core")
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/media/psf/Home/dev/flucoma-sc/linuxbuild")
# Force unix paths in dependencies.
set(CMAKE_FORCE_UNIX_PATHS 1)
# The C and CXX include file regular expressions for this directory.
set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$")
set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$")
set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN})
set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN})

@ -1,30 +0,0 @@
# The set of languages for which implicit dependencies are needed:
set(CMAKE_DEPENDS_LANGUAGES
"CXX"
)
# The set of files for implicit dependencies of each language:
set(CMAKE_DEPENDS_CHECK_CXX
"/home/owen/mac/dev/flucoma-core/examples/describe.cpp" "/media/psf/Home/dev/flucoma-sc/linuxbuild/_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o"
)
set(CMAKE_CXX_COMPILER_ID "GNU")
# Preprocessor definitions for this target.
set(CMAKE_TARGET_DEFINITIONS_CXX
"EIGEN_MPL2_ONLY=1"
)
# The include file search paths:
set(CMAKE_CXX_TARGET_INCLUDE_PATH
"/home/owen/mac/dev/flucoma-core/include"
"/home/owen/mac/dev/eigen"
"/home/owen/mac/dev/HISSTools_Library"
)
# Targets to which this target links.
set(CMAKE_TARGET_LINKED_INFO_FILES
"/media/psf/Home/dev/flucoma-sc/linuxbuild/_deps/flucoma-core-build/CMakeFiles/HISSTools_AudioFile.dir/DependInfo.cmake"
"/media/psf/Home/dev/flucoma-sc/linuxbuild/_deps/flucoma-core-build/CMakeFiles/HISSTools_FFT.dir/DependInfo.cmake"
)
# Fortran module output directory.
set(CMAKE_Fortran_TARGET_MODULE_DIR "")

@ -1,117 +0,0 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.17
# Delete rule output on recipe failure.
.DELETE_ON_ERROR:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Disable VCS-based implicit rules.
% : %,v
# Disable VCS-based implicit rules.
% : RCS/%
# Disable VCS-based implicit rules.
% : RCS/%,v
# Disable VCS-based implicit rules.
% : SCCS/s.%
# Disable VCS-based implicit rules.
% : s.%
.SUFFIXES: .hpux_make_needs_suffix_list
# Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
# The shell in which to execute make rules.
SHELL = /bin/sh
# The CMake executable.
CMAKE_COMMAND = /usr/bin/cmake
# The command to remove a file.
RM = /usr/bin/cmake -E rm -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /media/psf/Home/dev/flucoma-sc
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /media/psf/Home/dev/flucoma-sc/linuxbuild
# Include any dependencies generated for this target.
include _deps/flucoma-core-build/examples/CMakeFiles/describe.dir/depend.make
# Include the progress variables for this target.
include _deps/flucoma-core-build/examples/CMakeFiles/describe.dir/progress.make
# Include the compile flags for this target's objects.
include _deps/flucoma-core-build/examples/CMakeFiles/describe.dir/flags.make
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: _deps/flucoma-core-build/examples/CMakeFiles/describe.dir/flags.make
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/flucoma-core/examples/describe.cpp
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/Home/dev/flucoma-sc/linuxbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object _deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o"
cd /media/psf/Home/dev/flucoma-sc/linuxbuild/_deps/flucoma-core-build/examples && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/describe.dir/describe.cpp.o -c /home/owen/mac/dev/flucoma-core/examples/describe.cpp
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/describe.dir/describe.cpp.i"
cd /media/psf/Home/dev/flucoma-sc/linuxbuild/_deps/flucoma-core-build/examples && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/owen/mac/dev/flucoma-core/examples/describe.cpp > CMakeFiles/describe.dir/describe.cpp.i
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/describe.dir/describe.cpp.s"
cd /media/psf/Home/dev/flucoma-sc/linuxbuild/_deps/flucoma-core-build/examples && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/owen/mac/dev/flucoma-core/examples/describe.cpp -o CMakeFiles/describe.dir/describe.cpp.s
# Object files for target describe
describe_OBJECTS = \
"CMakeFiles/describe.dir/describe.cpp.o"
# External object files for target describe
describe_EXTERNAL_OBJECTS =
_deps/flucoma-core-build/examples/describe: _deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o
_deps/flucoma-core-build/examples/describe: _deps/flucoma-core-build/examples/CMakeFiles/describe.dir/build.make
_deps/flucoma-core-build/examples/describe: _deps/flucoma-core-build/libHISSTools_AudioFile.a
_deps/flucoma-core-build/examples/describe: _deps/flucoma-core-build/libHISSTools_FFT.a
_deps/flucoma-core-build/examples/describe: _deps/flucoma-core-build/examples/CMakeFiles/describe.dir/link.txt
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/media/psf/Home/dev/flucoma-sc/linuxbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable describe"
cd /media/psf/Home/dev/flucoma-sc/linuxbuild/_deps/flucoma-core-build/examples && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/describe.dir/link.txt --verbose=$(VERBOSE)
# Rule to build all files generated by this target.
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/build: _deps/flucoma-core-build/examples/describe
.PHONY : _deps/flucoma-core-build/examples/CMakeFiles/describe.dir/build
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/clean:
cd /media/psf/Home/dev/flucoma-sc/linuxbuild/_deps/flucoma-core-build/examples && $(CMAKE_COMMAND) -P CMakeFiles/describe.dir/cmake_clean.cmake
.PHONY : _deps/flucoma-core-build/examples/CMakeFiles/describe.dir/clean
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/depend:
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /media/psf/Home/dev/flucoma-sc /home/owen/mac/dev/flucoma-core/examples /media/psf/Home/dev/flucoma-sc/linuxbuild /media/psf/Home/dev/flucoma-sc/linuxbuild/_deps/flucoma-core-build/examples /media/psf/Home/dev/flucoma-sc/linuxbuild/_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/DependInfo.cmake --color=$(COLOR)
.PHONY : _deps/flucoma-core-build/examples/CMakeFiles/describe.dir/depend

@ -1,10 +0,0 @@
file(REMOVE_RECURSE
"CMakeFiles/describe.dir/describe.cpp.o"
"describe"
"describe.pdb"
)
# Per-language clean rules from dependency scanning.
foreach(lang CXX)
include(CMakeFiles/describe.dir/cmake_clean_${lang}.cmake OPTIONAL)
endforeach()

@ -1,304 +0,0 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.17
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o
/home/owen/mac/dev/HISSTools_Library/AudioFile/BaseAudioFile.h
/home/owen/mac/dev/HISSTools_Library/AudioFile/IAudioFile.h
/home/owen/mac/dev/HISSTools_Library/HISSTools_FFT/HISSTools_FFT.h
/home/owen/mac/dev/eigen/Eigen/Cholesky
/home/owen/mac/dev/eigen/Eigen/Core
/home/owen/mac/dev/eigen/Eigen/Dense
/home/owen/mac/dev/eigen/Eigen/Eigen
/home/owen/mac/dev/eigen/Eigen/Eigenvalues
/home/owen/mac/dev/eigen/Eigen/Geometry
/home/owen/mac/dev/eigen/Eigen/Householder
/home/owen/mac/dev/eigen/Eigen/IterativeLinearSolvers
/home/owen/mac/dev/eigen/Eigen/Jacobi
/home/owen/mac/dev/eigen/Eigen/LU
/home/owen/mac/dev/eigen/Eigen/OrderingMethods
/home/owen/mac/dev/eigen/Eigen/QR
/home/owen/mac/dev/eigen/Eigen/SVD
/home/owen/mac/dev/eigen/Eigen/Sparse
/home/owen/mac/dev/eigen/Eigen/SparseCholesky
/home/owen/mac/dev/eigen/Eigen/SparseCore
/home/owen/mac/dev/eigen/Eigen/SparseLU
/home/owen/mac/dev/eigen/Eigen/SparseQR
/home/owen/mac/dev/eigen/Eigen/src/Cholesky/LDLT.h
/home/owen/mac/dev/eigen/Eigen/src/Cholesky/LLT.h
/home/owen/mac/dev/eigen/Eigen/src/Cholesky/LLT_LAPACKE.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Array.h
/home/owen/mac/dev/eigen/Eigen/src/Core/ArrayBase.h
/home/owen/mac/dev/eigen/Eigen/src/Core/ArrayWrapper.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Assign.h
/home/owen/mac/dev/eigen/Eigen/src/Core/AssignEvaluator.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Assign_MKL.h
/home/owen/mac/dev/eigen/Eigen/src/Core/BandMatrix.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Block.h
/home/owen/mac/dev/eigen/Eigen/src/Core/BooleanRedux.h
/home/owen/mac/dev/eigen/Eigen/src/Core/CommaInitializer.h
/home/owen/mac/dev/eigen/Eigen/src/Core/ConditionEstimator.h
/home/owen/mac/dev/eigen/Eigen/src/Core/CoreEvaluators.h
/home/owen/mac/dev/eigen/Eigen/src/Core/CoreIterators.h
/home/owen/mac/dev/eigen/Eigen/src/Core/CwiseBinaryOp.h
/home/owen/mac/dev/eigen/Eigen/src/Core/CwiseNullaryOp.h
/home/owen/mac/dev/eigen/Eigen/src/Core/CwiseTernaryOp.h
/home/owen/mac/dev/eigen/Eigen/src/Core/CwiseUnaryOp.h
/home/owen/mac/dev/eigen/Eigen/src/Core/CwiseUnaryView.h
/home/owen/mac/dev/eigen/Eigen/src/Core/DenseBase.h
/home/owen/mac/dev/eigen/Eigen/src/Core/DenseCoeffsBase.h
/home/owen/mac/dev/eigen/Eigen/src/Core/DenseStorage.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Diagonal.h
/home/owen/mac/dev/eigen/Eigen/src/Core/DiagonalMatrix.h
/home/owen/mac/dev/eigen/Eigen/src/Core/DiagonalProduct.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Dot.h
/home/owen/mac/dev/eigen/Eigen/src/Core/EigenBase.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Fuzzy.h
/home/owen/mac/dev/eigen/Eigen/src/Core/GeneralProduct.h
/home/owen/mac/dev/eigen/Eigen/src/Core/GenericPacketMath.h
/home/owen/mac/dev/eigen/Eigen/src/Core/GlobalFunctions.h
/home/owen/mac/dev/eigen/Eigen/src/Core/IO.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Inverse.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Map.h
/home/owen/mac/dev/eigen/Eigen/src/Core/MapBase.h
/home/owen/mac/dev/eigen/Eigen/src/Core/MathFunctions.h
/home/owen/mac/dev/eigen/Eigen/src/Core/MathFunctionsImpl.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Matrix.h
/home/owen/mac/dev/eigen/Eigen/src/Core/MatrixBase.h
/home/owen/mac/dev/eigen/Eigen/src/Core/NestByValue.h
/home/owen/mac/dev/eigen/Eigen/src/Core/NoAlias.h
/home/owen/mac/dev/eigen/Eigen/src/Core/NumTraits.h
/home/owen/mac/dev/eigen/Eigen/src/Core/PermutationMatrix.h
/home/owen/mac/dev/eigen/Eigen/src/Core/PlainObjectBase.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Product.h
/home/owen/mac/dev/eigen/Eigen/src/Core/ProductEvaluators.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Random.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Redux.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Ref.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Replicate.h
/home/owen/mac/dev/eigen/Eigen/src/Core/ReturnByValue.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Reverse.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Select.h
/home/owen/mac/dev/eigen/Eigen/src/Core/SelfAdjointView.h
/home/owen/mac/dev/eigen/Eigen/src/Core/SelfCwiseBinaryOp.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Solve.h
/home/owen/mac/dev/eigen/Eigen/src/Core/SolveTriangular.h
/home/owen/mac/dev/eigen/Eigen/src/Core/SolverBase.h
/home/owen/mac/dev/eigen/Eigen/src/Core/StableNorm.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Stride.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Swap.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Transpose.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Transpositions.h
/home/owen/mac/dev/eigen/Eigen/src/Core/TriangularMatrix.h
/home/owen/mac/dev/eigen/Eigen/src/Core/VectorBlock.h
/home/owen/mac/dev/eigen/Eigen/src/Core/VectorwiseOp.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Visitor.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/AVX/Complex.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/AVX/MathFunctions.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/AVX/PacketMath.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/AVX/TypeCasting.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/AVX512/MathFunctions.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/AVX512/PacketMath.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/AltiVec/Complex.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/AltiVec/MathFunctions.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/AltiVec/PacketMath.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/CUDA/Complex.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/CUDA/Half.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/CUDA/MathFunctions.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/CUDA/PacketMath.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/CUDA/PacketMathHalf.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/CUDA/TypeCasting.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/Default/ConjHelper.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/Default/Settings.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/NEON/Complex.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/NEON/MathFunctions.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/NEON/PacketMath.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/SSE/Complex.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/SSE/MathFunctions.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/SSE/PacketMath.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/SSE/TypeCasting.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/ZVector/Complex.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/ZVector/MathFunctions.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/ZVector/PacketMath.h
/home/owen/mac/dev/eigen/Eigen/src/Core/functors/AssignmentFunctors.h
/home/owen/mac/dev/eigen/Eigen/src/Core/functors/BinaryFunctors.h
/home/owen/mac/dev/eigen/Eigen/src/Core/functors/NullaryFunctors.h
/home/owen/mac/dev/eigen/Eigen/src/Core/functors/StlFunctors.h
/home/owen/mac/dev/eigen/Eigen/src/Core/functors/TernaryFunctors.h
/home/owen/mac/dev/eigen/Eigen/src/Core/functors/UnaryFunctors.h
/home/owen/mac/dev/eigen/Eigen/src/Core/products/GeneralBlockPanelKernel.h
/home/owen/mac/dev/eigen/Eigen/src/Core/products/GeneralMatrixMatrix.h
/home/owen/mac/dev/eigen/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h
/home/owen/mac/dev/eigen/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h
/home/owen/mac/dev/eigen/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h
/home/owen/mac/dev/eigen/Eigen/src/Core/products/GeneralMatrixVector.h
/home/owen/mac/dev/eigen/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h
/home/owen/mac/dev/eigen/Eigen/src/Core/products/Parallelizer.h
/home/owen/mac/dev/eigen/Eigen/src/Core/products/SelfadjointMatrixMatrix.h
/home/owen/mac/dev/eigen/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h
/home/owen/mac/dev/eigen/Eigen/src/Core/products/SelfadjointMatrixVector.h
/home/owen/mac/dev/eigen/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h
/home/owen/mac/dev/eigen/Eigen/src/Core/products/SelfadjointProduct.h
/home/owen/mac/dev/eigen/Eigen/src/Core/products/SelfadjointRank2Update.h
/home/owen/mac/dev/eigen/Eigen/src/Core/products/TriangularMatrixMatrix.h
/home/owen/mac/dev/eigen/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h
/home/owen/mac/dev/eigen/Eigen/src/Core/products/TriangularMatrixVector.h
/home/owen/mac/dev/eigen/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h
/home/owen/mac/dev/eigen/Eigen/src/Core/products/TriangularSolverMatrix.h
/home/owen/mac/dev/eigen/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h
/home/owen/mac/dev/eigen/Eigen/src/Core/products/TriangularSolverVector.h
/home/owen/mac/dev/eigen/Eigen/src/Core/util/BlasUtil.h
/home/owen/mac/dev/eigen/Eigen/src/Core/util/Constants.h
/home/owen/mac/dev/eigen/Eigen/src/Core/util/DisableStupidWarnings.h
/home/owen/mac/dev/eigen/Eigen/src/Core/util/ForwardDeclarations.h
/home/owen/mac/dev/eigen/Eigen/src/Core/util/MKL_support.h
/home/owen/mac/dev/eigen/Eigen/src/Core/util/Macros.h
/home/owen/mac/dev/eigen/Eigen/src/Core/util/Memory.h
/home/owen/mac/dev/eigen/Eigen/src/Core/util/Meta.h
/home/owen/mac/dev/eigen/Eigen/src/Core/util/NonMPL2.h
/home/owen/mac/dev/eigen/Eigen/src/Core/util/ReenableStupidWarnings.h
/home/owen/mac/dev/eigen/Eigen/src/Core/util/StaticAssert.h
/home/owen/mac/dev/eigen/Eigen/src/Core/util/XprHelper.h
/home/owen/mac/dev/eigen/Eigen/src/Eigenvalues/ComplexEigenSolver.h
/home/owen/mac/dev/eigen/Eigen/src/Eigenvalues/ComplexSchur.h
/home/owen/mac/dev/eigen/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h
/home/owen/mac/dev/eigen/Eigen/src/Eigenvalues/EigenSolver.h
/home/owen/mac/dev/eigen/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h
/home/owen/mac/dev/eigen/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h
/home/owen/mac/dev/eigen/Eigen/src/Eigenvalues/HessenbergDecomposition.h
/home/owen/mac/dev/eigen/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h
/home/owen/mac/dev/eigen/Eigen/src/Eigenvalues/RealQZ.h
/home/owen/mac/dev/eigen/Eigen/src/Eigenvalues/RealSchur.h
/home/owen/mac/dev/eigen/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h
/home/owen/mac/dev/eigen/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h
/home/owen/mac/dev/eigen/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_LAPACKE.h
/home/owen/mac/dev/eigen/Eigen/src/Eigenvalues/Tridiagonalization.h
/home/owen/mac/dev/eigen/Eigen/src/Geometry/AlignedBox.h
/home/owen/mac/dev/eigen/Eigen/src/Geometry/AngleAxis.h
/home/owen/mac/dev/eigen/Eigen/src/Geometry/EulerAngles.h
/home/owen/mac/dev/eigen/Eigen/src/Geometry/Homogeneous.h
/home/owen/mac/dev/eigen/Eigen/src/Geometry/Hyperplane.h
/home/owen/mac/dev/eigen/Eigen/src/Geometry/OrthoMethods.h
/home/owen/mac/dev/eigen/Eigen/src/Geometry/ParametrizedLine.h
/home/owen/mac/dev/eigen/Eigen/src/Geometry/Quaternion.h
/home/owen/mac/dev/eigen/Eigen/src/Geometry/Rotation2D.h
/home/owen/mac/dev/eigen/Eigen/src/Geometry/RotationBase.h
/home/owen/mac/dev/eigen/Eigen/src/Geometry/Scaling.h
/home/owen/mac/dev/eigen/Eigen/src/Geometry/Transform.h
/home/owen/mac/dev/eigen/Eigen/src/Geometry/Translation.h
/home/owen/mac/dev/eigen/Eigen/src/Geometry/Umeyama.h
/home/owen/mac/dev/eigen/Eigen/src/Geometry/arch/Geometry_SSE.h
/home/owen/mac/dev/eigen/Eigen/src/Householder/BlockHouseholder.h
/home/owen/mac/dev/eigen/Eigen/src/Householder/Householder.h
/home/owen/mac/dev/eigen/Eigen/src/Householder/HouseholderSequence.h
/home/owen/mac/dev/eigen/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h
/home/owen/mac/dev/eigen/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h
/home/owen/mac/dev/eigen/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h
/home/owen/mac/dev/eigen/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h
/home/owen/mac/dev/eigen/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h
/home/owen/mac/dev/eigen/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h
/home/owen/mac/dev/eigen/Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h
/home/owen/mac/dev/eigen/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h
/home/owen/mac/dev/eigen/Eigen/src/Jacobi/Jacobi.h
/home/owen/mac/dev/eigen/Eigen/src/LU/Determinant.h
/home/owen/mac/dev/eigen/Eigen/src/LU/FullPivLU.h
/home/owen/mac/dev/eigen/Eigen/src/LU/InverseImpl.h
/home/owen/mac/dev/eigen/Eigen/src/LU/PartialPivLU.h
/home/owen/mac/dev/eigen/Eigen/src/LU/PartialPivLU_LAPACKE.h
/home/owen/mac/dev/eigen/Eigen/src/LU/arch/Inverse_SSE.h
/home/owen/mac/dev/eigen/Eigen/src/OrderingMethods/Amd.h
/home/owen/mac/dev/eigen/Eigen/src/OrderingMethods/Eigen_Colamd.h
/home/owen/mac/dev/eigen/Eigen/src/OrderingMethods/Ordering.h
/home/owen/mac/dev/eigen/Eigen/src/QR/ColPivHouseholderQR.h
/home/owen/mac/dev/eigen/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h
/home/owen/mac/dev/eigen/Eigen/src/QR/CompleteOrthogonalDecomposition.h
/home/owen/mac/dev/eigen/Eigen/src/QR/FullPivHouseholderQR.h
/home/owen/mac/dev/eigen/Eigen/src/QR/HouseholderQR.h
/home/owen/mac/dev/eigen/Eigen/src/QR/HouseholderQR_LAPACKE.h
/home/owen/mac/dev/eigen/Eigen/src/SVD/BDCSVD.h
/home/owen/mac/dev/eigen/Eigen/src/SVD/JacobiSVD.h
/home/owen/mac/dev/eigen/Eigen/src/SVD/JacobiSVD_LAPACKE.h
/home/owen/mac/dev/eigen/Eigen/src/SVD/SVDBase.h
/home/owen/mac/dev/eigen/Eigen/src/SVD/UpperBidiagonalization.h
/home/owen/mac/dev/eigen/Eigen/src/SparseCholesky/SimplicialCholesky.h
/home/owen/mac/dev/eigen/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h
/home/owen/mac/dev/eigen/Eigen/src/SparseCore/AmbiVector.h
/home/owen/mac/dev/eigen/Eigen/src/SparseCore/CompressedStorage.h
/home/owen/mac/dev/eigen/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h
/home/owen/mac/dev/eigen/Eigen/src/SparseCore/MappedSparseMatrix.h
/home/owen/mac/dev/eigen/Eigen/src/SparseCore/SparseAssign.h
/home/owen/mac/dev/eigen/Eigen/src/SparseCore/SparseBlock.h
/home/owen/mac/dev/eigen/Eigen/src/SparseCore/SparseColEtree.h
/home/owen/mac/dev/eigen/Eigen/src/SparseCore/SparseCompressedBase.h
/home/owen/mac/dev/eigen/Eigen/src/SparseCore/SparseCwiseBinaryOp.h
/home/owen/mac/dev/eigen/Eigen/src/SparseCore/SparseCwiseUnaryOp.h
/home/owen/mac/dev/eigen/Eigen/src/SparseCore/SparseDenseProduct.h
/home/owen/mac/dev/eigen/Eigen/src/SparseCore/SparseDiagonalProduct.h
/home/owen/mac/dev/eigen/Eigen/src/SparseCore/SparseDot.h
/home/owen/mac/dev/eigen/Eigen/src/SparseCore/SparseFuzzy.h
/home/owen/mac/dev/eigen/Eigen/src/SparseCore/SparseMap.h
/home/owen/mac/dev/eigen/Eigen/src/SparseCore/SparseMatrix.h
/home/owen/mac/dev/eigen/Eigen/src/SparseCore/SparseMatrixBase.h
/home/owen/mac/dev/eigen/Eigen/src/SparseCore/SparsePermutation.h
/home/owen/mac/dev/eigen/Eigen/src/SparseCore/SparseProduct.h
/home/owen/mac/dev/eigen/Eigen/src/SparseCore/SparseRedux.h
/home/owen/mac/dev/eigen/Eigen/src/SparseCore/SparseRef.h
/home/owen/mac/dev/eigen/Eigen/src/SparseCore/SparseSelfAdjointView.h
/home/owen/mac/dev/eigen/Eigen/src/SparseCore/SparseSolverBase.h
/home/owen/mac/dev/eigen/Eigen/src/SparseCore/SparseSparseProductWithPruning.h
/home/owen/mac/dev/eigen/Eigen/src/SparseCore/SparseTranspose.h
/home/owen/mac/dev/eigen/Eigen/src/SparseCore/SparseTriangularView.h
/home/owen/mac/dev/eigen/Eigen/src/SparseCore/SparseUtil.h
/home/owen/mac/dev/eigen/Eigen/src/SparseCore/SparseVector.h
/home/owen/mac/dev/eigen/Eigen/src/SparseCore/SparseView.h
/home/owen/mac/dev/eigen/Eigen/src/SparseCore/TriangularSolver.h
/home/owen/mac/dev/eigen/Eigen/src/SparseLU/SparseLU.h
/home/owen/mac/dev/eigen/Eigen/src/SparseLU/SparseLUImpl.h
/home/owen/mac/dev/eigen/Eigen/src/SparseLU/SparseLU_Memory.h
/home/owen/mac/dev/eigen/Eigen/src/SparseLU/SparseLU_Structs.h
/home/owen/mac/dev/eigen/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h
/home/owen/mac/dev/eigen/Eigen/src/SparseLU/SparseLU_Utils.h
/home/owen/mac/dev/eigen/Eigen/src/SparseLU/SparseLU_column_bmod.h
/home/owen/mac/dev/eigen/Eigen/src/SparseLU/SparseLU_column_dfs.h
/home/owen/mac/dev/eigen/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h
/home/owen/mac/dev/eigen/Eigen/src/SparseLU/SparseLU_gemm_kernel.h
/home/owen/mac/dev/eigen/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h
/home/owen/mac/dev/eigen/Eigen/src/SparseLU/SparseLU_kernel_bmod.h
/home/owen/mac/dev/eigen/Eigen/src/SparseLU/SparseLU_panel_bmod.h
/home/owen/mac/dev/eigen/Eigen/src/SparseLU/SparseLU_panel_dfs.h
/home/owen/mac/dev/eigen/Eigen/src/SparseLU/SparseLU_pivotL.h
/home/owen/mac/dev/eigen/Eigen/src/SparseLU/SparseLU_pruneL.h
/home/owen/mac/dev/eigen/Eigen/src/SparseLU/SparseLU_relax_snode.h
/home/owen/mac/dev/eigen/Eigen/src/SparseQR/SparseQR.h
/home/owen/mac/dev/eigen/Eigen/src/misc/Image.h
/home/owen/mac/dev/eigen/Eigen/src/misc/Kernel.h
/home/owen/mac/dev/eigen/Eigen/src/misc/RealSvd2x2.h
/home/owen/mac/dev/eigen/Eigen/src/misc/blas.h
/home/owen/mac/dev/eigen/Eigen/src/misc/lapacke.h
/home/owen/mac/dev/eigen/Eigen/src/misc/lapacke_mangling.h
/home/owen/mac/dev/eigen/Eigen/src/plugins/ArrayCwiseBinaryOps.h
/home/owen/mac/dev/eigen/Eigen/src/plugins/ArrayCwiseUnaryOps.h
/home/owen/mac/dev/eigen/Eigen/src/plugins/BlockMethods.h
/home/owen/mac/dev/eigen/Eigen/src/plugins/CommonCwiseBinaryOps.h
/home/owen/mac/dev/eigen/Eigen/src/plugins/CommonCwiseUnaryOps.h
/home/owen/mac/dev/eigen/Eigen/src/plugins/MatrixCwiseBinaryOps.h
/home/owen/mac/dev/eigen/Eigen/src/plugins/MatrixCwiseUnaryOps.h
/home/owen/mac/dev/flucoma-core/examples/describe.cpp
/home/owen/mac/dev/flucoma-core/include/algorithms/public/DCT.hpp
/home/owen/mac/dev/flucoma-core/include/algorithms/public/Loudness.hpp
/home/owen/mac/dev/flucoma-core/include/algorithms/public/MelBands.hpp
/home/owen/mac/dev/flucoma-core/include/algorithms/public/STFT.hpp
/home/owen/mac/dev/flucoma-core/include/algorithms/public/SpectralShape.hpp
/home/owen/mac/dev/flucoma-core/include/algorithms/public/Stats.hpp
/home/owen/mac/dev/flucoma-core/include/algorithms/public/WindowFuncs.hpp
/home/owen/mac/dev/flucoma-core/include/algorithms/public/YINFFT.hpp
/home/owen/mac/dev/flucoma-core/include/algorithms/util/AlgorithmUtils.hpp
/home/owen/mac/dev/flucoma-core/include/algorithms/util/FFT.hpp
/home/owen/mac/dev/flucoma-core/include/algorithms/util/FluidEigenMappings.hpp
/home/owen/mac/dev/flucoma-core/include/algorithms/util/KWeightingFilter.hpp
/home/owen/mac/dev/flucoma-core/include/algorithms/util/PeakDetection.hpp
/home/owen/mac/dev/flucoma-core/include/algorithms/util/TruePeak.hpp
/home/owen/mac/dev/flucoma-core/include/data/FluidIndex.hpp
/home/owen/mac/dev/flucoma-core/include/data/FluidMeta.hpp
/home/owen/mac/dev/flucoma-core/include/data/FluidTensor.hpp
/home/owen/mac/dev/flucoma-core/include/data/FluidTensor_Support.hpp
/home/owen/mac/dev/flucoma-core/include/data/TensorTypes.hpp

@ -1,304 +0,0 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.17
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/HISSTools_Library/AudioFile/BaseAudioFile.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/HISSTools_Library/AudioFile/IAudioFile.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/HISSTools_Library/HISSTools_FFT/HISSTools_FFT.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/Cholesky
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/Core
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/Dense
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/Eigen
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/Eigenvalues
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/Geometry
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/Householder
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/IterativeLinearSolvers
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/Jacobi
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/LU
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/OrderingMethods
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/QR
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/SVD
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/Sparse
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/SparseCholesky
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/SparseCore
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/SparseLU
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/SparseQR
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Cholesky/LDLT.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Cholesky/LLT.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Cholesky/LLT_LAPACKE.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Array.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/ArrayBase.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/ArrayWrapper.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Assign.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/AssignEvaluator.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Assign_MKL.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/BandMatrix.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Block.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/BooleanRedux.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/CommaInitializer.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/ConditionEstimator.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/CoreEvaluators.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/CoreIterators.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/CwiseBinaryOp.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/CwiseNullaryOp.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/CwiseTernaryOp.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/CwiseUnaryOp.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/CwiseUnaryView.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/DenseBase.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/DenseCoeffsBase.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/DenseStorage.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Diagonal.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/DiagonalMatrix.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/DiagonalProduct.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Dot.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/EigenBase.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Fuzzy.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/GeneralProduct.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/GenericPacketMath.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/GlobalFunctions.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/IO.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Inverse.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Map.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/MapBase.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/MathFunctions.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/MathFunctionsImpl.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Matrix.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/MatrixBase.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/NestByValue.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/NoAlias.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/NumTraits.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/PermutationMatrix.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/PlainObjectBase.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Product.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/ProductEvaluators.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Random.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Redux.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Ref.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Replicate.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/ReturnByValue.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Reverse.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Select.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/SelfAdjointView.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/SelfCwiseBinaryOp.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Solve.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/SolveTriangular.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/SolverBase.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/StableNorm.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Stride.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Swap.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Transpose.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Transpositions.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/TriangularMatrix.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/VectorBlock.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/VectorwiseOp.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Visitor.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/AVX/Complex.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/AVX/MathFunctions.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/AVX/PacketMath.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/AVX/TypeCasting.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/AVX512/MathFunctions.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/AVX512/PacketMath.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/AltiVec/Complex.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/AltiVec/MathFunctions.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/AltiVec/PacketMath.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/CUDA/Complex.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/CUDA/Half.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/CUDA/MathFunctions.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/CUDA/PacketMath.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/CUDA/PacketMathHalf.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/CUDA/TypeCasting.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/Default/ConjHelper.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/Default/Settings.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/NEON/Complex.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/NEON/MathFunctions.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/NEON/PacketMath.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/SSE/Complex.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/SSE/MathFunctions.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/SSE/PacketMath.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/SSE/TypeCasting.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/ZVector/Complex.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/ZVector/MathFunctions.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/ZVector/PacketMath.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/functors/AssignmentFunctors.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/functors/BinaryFunctors.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/functors/NullaryFunctors.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/functors/StlFunctors.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/functors/TernaryFunctors.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/functors/UnaryFunctors.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/products/GeneralBlockPanelKernel.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/products/GeneralMatrixMatrix.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/products/GeneralMatrixVector.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/products/Parallelizer.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/products/SelfadjointMatrixMatrix.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/products/SelfadjointMatrixVector.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/products/SelfadjointProduct.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/products/SelfadjointRank2Update.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/products/TriangularMatrixMatrix.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/products/TriangularMatrixVector.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/products/TriangularSolverMatrix.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/products/TriangularSolverVector.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/util/BlasUtil.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/util/Constants.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/util/DisableStupidWarnings.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/util/ForwardDeclarations.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/util/MKL_support.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/util/Macros.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/util/Memory.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/util/Meta.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/util/NonMPL2.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/util/ReenableStupidWarnings.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/util/StaticAssert.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/util/XprHelper.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Eigenvalues/ComplexEigenSolver.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Eigenvalues/ComplexSchur.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Eigenvalues/EigenSolver.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Eigenvalues/HessenbergDecomposition.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Eigenvalues/RealQZ.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Eigenvalues/RealSchur.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_LAPACKE.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Eigenvalues/Tridiagonalization.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Geometry/AlignedBox.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Geometry/AngleAxis.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Geometry/EulerAngles.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Geometry/Homogeneous.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Geometry/Hyperplane.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Geometry/OrthoMethods.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Geometry/ParametrizedLine.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Geometry/Quaternion.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Geometry/Rotation2D.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Geometry/RotationBase.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Geometry/Scaling.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Geometry/Transform.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Geometry/Translation.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Geometry/Umeyama.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Geometry/arch/Geometry_SSE.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Householder/BlockHouseholder.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Householder/Householder.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Householder/HouseholderSequence.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Jacobi/Jacobi.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/LU/Determinant.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/LU/FullPivLU.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/LU/InverseImpl.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/LU/PartialPivLU.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/LU/PartialPivLU_LAPACKE.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/LU/arch/Inverse_SSE.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/OrderingMethods/Amd.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/OrderingMethods/Eigen_Colamd.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/OrderingMethods/Ordering.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/QR/ColPivHouseholderQR.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/QR/CompleteOrthogonalDecomposition.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/QR/FullPivHouseholderQR.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/QR/HouseholderQR.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/QR/HouseholderQR_LAPACKE.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/SVD/BDCSVD.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/SVD/JacobiSVD.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/SVD/JacobiSVD_LAPACKE.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/SVD/SVDBase.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/SVD/UpperBidiagonalization.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/SparseCholesky/SimplicialCholesky.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/SparseCore/AmbiVector.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/SparseCore/CompressedStorage.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/SparseCore/MappedSparseMatrix.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/SparseCore/SparseAssign.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/SparseCore/SparseBlock.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/SparseCore/SparseColEtree.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/SparseCore/SparseCompressedBase.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/SparseCore/SparseCwiseBinaryOp.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/SparseCore/SparseCwiseUnaryOp.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/SparseCore/SparseDenseProduct.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/SparseCore/SparseDiagonalProduct.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/SparseCore/SparseDot.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/SparseCore/SparseFuzzy.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/SparseCore/SparseMap.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/SparseCore/SparseMatrix.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/SparseCore/SparseMatrixBase.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/SparseCore/SparsePermutation.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/SparseCore/SparseProduct.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/SparseCore/SparseRedux.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/SparseCore/SparseRef.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/SparseCore/SparseSelfAdjointView.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/SparseCore/SparseSolverBase.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/SparseCore/SparseSparseProductWithPruning.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/SparseCore/SparseTranspose.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/SparseCore/SparseTriangularView.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/SparseCore/SparseUtil.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/SparseCore/SparseVector.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/SparseCore/SparseView.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/SparseCore/TriangularSolver.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/SparseLU/SparseLU.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/SparseLU/SparseLUImpl.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/SparseLU/SparseLU_Memory.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/SparseLU/SparseLU_Structs.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/SparseLU/SparseLU_Utils.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/SparseLU/SparseLU_column_bmod.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/SparseLU/SparseLU_column_dfs.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/SparseLU/SparseLU_gemm_kernel.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/SparseLU/SparseLU_kernel_bmod.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/SparseLU/SparseLU_panel_bmod.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/SparseLU/SparseLU_panel_dfs.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/SparseLU/SparseLU_pivotL.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/SparseLU/SparseLU_pruneL.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/SparseLU/SparseLU_relax_snode.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/SparseQR/SparseQR.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/misc/Image.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/misc/Kernel.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/misc/RealSvd2x2.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/misc/blas.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/misc/lapacke.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/misc/lapacke_mangling.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/plugins/ArrayCwiseBinaryOps.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/plugins/ArrayCwiseUnaryOps.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/plugins/BlockMethods.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/plugins/CommonCwiseBinaryOps.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/plugins/CommonCwiseUnaryOps.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/plugins/MatrixCwiseBinaryOps.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/plugins/MatrixCwiseUnaryOps.h
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/flucoma-core/examples/describe.cpp
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/flucoma-core/include/algorithms/public/DCT.hpp
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/flucoma-core/include/algorithms/public/Loudness.hpp
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/flucoma-core/include/algorithms/public/MelBands.hpp
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/flucoma-core/include/algorithms/public/STFT.hpp
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/flucoma-core/include/algorithms/public/SpectralShape.hpp
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/flucoma-core/include/algorithms/public/Stats.hpp
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/flucoma-core/include/algorithms/public/WindowFuncs.hpp
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/flucoma-core/include/algorithms/public/YINFFT.hpp
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/flucoma-core/include/algorithms/util/AlgorithmUtils.hpp
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/flucoma-core/include/algorithms/util/FFT.hpp
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/flucoma-core/include/algorithms/util/FluidEigenMappings.hpp
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/flucoma-core/include/algorithms/util/KWeightingFilter.hpp
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/flucoma-core/include/algorithms/util/PeakDetection.hpp
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/flucoma-core/include/algorithms/util/TruePeak.hpp
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/flucoma-core/include/data/FluidIndex.hpp
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/flucoma-core/include/data/FluidMeta.hpp
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/flucoma-core/include/data/FluidTensor.hpp
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/flucoma-core/include/data/FluidTensor_Support.hpp
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o: /home/owen/mac/dev/flucoma-core/include/data/TensorTypes.hpp

@ -1,10 +0,0 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.17
# compile CXX with /usr/bin/c++
CXX_FLAGS = -O3 -DNDEBUG -mavx -fpermissive -fPIC -std=c++14
CXX_DEFINES = -DEIGEN_MPL2_ONLY=1
CXX_INCLUDES = -I/home/owen/mac/dev/flucoma-core/include -isystem /home/owen/mac/dev/eigen -isystem /home/owen/mac/dev/HISSTools_Library

@ -1 +0,0 @@
/usr/bin/c++ -O3 -DNDEBUG CMakeFiles/describe.dir/describe.cpp.o -o describe ../libHISSTools_AudioFile.a ../libHISSTools_FFT.a

@ -1,249 +0,0 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.17
# Default target executed when no arguments are given to make.
default_target: all
.PHONY : default_target
# Allow only one "make -f Makefile2" at a time, but pass parallelism.
.NOTPARALLEL:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Disable VCS-based implicit rules.
% : %,v
# Disable VCS-based implicit rules.
% : RCS/%
# Disable VCS-based implicit rules.
% : RCS/%,v
# Disable VCS-based implicit rules.
% : SCCS/s.%
# Disable VCS-based implicit rules.
% : s.%
.SUFFIXES: .hpux_make_needs_suffix_list
# Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
# The shell in which to execute make rules.
SHELL = /bin/sh
# The CMake executable.
CMAKE_COMMAND = /usr/bin/cmake
# The command to remove a file.
RM = /usr/bin/cmake -E rm -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /media/psf/Home/dev/flucoma-sc
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /media/psf/Home/dev/flucoma-sc/linuxbuild
#=============================================================================
# Targets provided globally by CMake.
# Special rule for the target install/strip
install/strip: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..."
/usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
.PHONY : install/strip
# Special rule for the target install/strip
install/strip/fast: preinstall/fast
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..."
/usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
.PHONY : install/strip/fast
# Special rule for the target edit_cache
edit_cache:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake cache editor..."
/usr/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
.PHONY : edit_cache
# Special rule for the target edit_cache
edit_cache/fast: edit_cache
.PHONY : edit_cache/fast
# Special rule for the target rebuild_cache
rebuild_cache:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..."
/usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
.PHONY : rebuild_cache
# Special rule for the target rebuild_cache
rebuild_cache/fast: rebuild_cache
.PHONY : rebuild_cache/fast
# Special rule for the target list_install_components
list_install_components:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\""
.PHONY : list_install_components
# Special rule for the target list_install_components
list_install_components/fast: list_install_components
.PHONY : list_install_components/fast
# Special rule for the target install/local
install/local: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..."
/usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
.PHONY : install/local
# Special rule for the target install/local
install/local/fast: preinstall/fast
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..."
/usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
.PHONY : install/local/fast
# Special rule for the target install
install: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..."
/usr/bin/cmake -P cmake_install.cmake
.PHONY : install
# Special rule for the target install
install/fast: preinstall/fast
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..."
/usr/bin/cmake -P cmake_install.cmake
.PHONY : install/fast
# The main all target
all: cmake_check_build_system
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(CMAKE_COMMAND) -E cmake_progress_start /media/psf/Home/dev/flucoma-sc/linuxbuild/CMakeFiles /media/psf/Home/dev/flucoma-sc/linuxbuild/_deps/flucoma-core-build/examples/CMakeFiles/progress.marks
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(MAKE) -f CMakeFiles/Makefile2 _deps/flucoma-core-build/examples/all
$(CMAKE_COMMAND) -E cmake_progress_start /media/psf/Home/dev/flucoma-sc/linuxbuild/CMakeFiles 0
.PHONY : all
# The main clean target
clean:
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(MAKE) -f CMakeFiles/Makefile2 _deps/flucoma-core-build/examples/clean
.PHONY : clean
# The main clean target
clean/fast: clean
.PHONY : clean/fast
# Prepare targets for installation.
preinstall: all
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(MAKE) -f CMakeFiles/Makefile2 _deps/flucoma-core-build/examples/preinstall
.PHONY : preinstall
# Prepare targets for installation.
preinstall/fast:
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(MAKE) -f CMakeFiles/Makefile2 _deps/flucoma-core-build/examples/preinstall
.PHONY : preinstall/fast
# clear depends
depend:
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(CMAKE_COMMAND) -P /media/psf/Home/dev/flucoma-sc/linuxbuild/CMakeFiles/VerifyGlobs.cmake
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
.PHONY : depend
# Convenience name for target.
_deps/flucoma-core-build/examples/CMakeFiles/describe.dir/rule:
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(MAKE) -f CMakeFiles/Makefile2 _deps/flucoma-core-build/examples/CMakeFiles/describe.dir/rule
.PHONY : _deps/flucoma-core-build/examples/CMakeFiles/describe.dir/rule
# Convenience name for target.
describe: _deps/flucoma-core-build/examples/CMakeFiles/describe.dir/rule
.PHONY : describe
# fast build rule for target.
describe/fast:
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(MAKE) -f _deps/flucoma-core-build/examples/CMakeFiles/describe.dir/build.make _deps/flucoma-core-build/examples/CMakeFiles/describe.dir/build
.PHONY : describe/fast
describe.o: describe.cpp.o
.PHONY : describe.o
# target to build an object file
describe.cpp.o:
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(MAKE) -f _deps/flucoma-core-build/examples/CMakeFiles/describe.dir/build.make _deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.o
.PHONY : describe.cpp.o
describe.i: describe.cpp.i
.PHONY : describe.i
# target to preprocess a source file
describe.cpp.i:
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(MAKE) -f _deps/flucoma-core-build/examples/CMakeFiles/describe.dir/build.make _deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.i
.PHONY : describe.cpp.i
describe.s: describe.cpp.s
.PHONY : describe.s
# target to generate assembly for a file
describe.cpp.s:
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(MAKE) -f _deps/flucoma-core-build/examples/CMakeFiles/describe.dir/build.make _deps/flucoma-core-build/examples/CMakeFiles/describe.dir/describe.cpp.s
.PHONY : describe.cpp.s
# Help Target
help:
@echo "The following are some of the valid targets for this Makefile:"
@echo "... all (the default if no target is provided)"
@echo "... clean"
@echo "... depend"
@echo "... edit_cache"
@echo "... install"
@echo "... install/local"
@echo "... install/strip"
@echo "... list_install_components"
@echo "... rebuild_cache"
@echo "... describe"
@echo "... describe.o"
@echo "... describe.i"
@echo "... describe.s"
.PHONY : help
#=============================================================================
# Special targets to cleanup operation of make.
# Special rule to run CMake to check the build system integrity.
# No rule that depends on this can have commands that come from listfiles
# because they might be regenerated.
cmake_check_build_system:
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(CMAKE_COMMAND) -P /media/psf/Home/dev/flucoma-sc/linuxbuild/CMakeFiles/VerifyGlobs.cmake
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
.PHONY : cmake_check_build_system

@ -1,39 +0,0 @@
# Install script for directory: /home/owen/mac/dev/flucoma-core/examples
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/media/psf/Home/dev/flucoma-sc/install")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "Release")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Install shared libraries without execute permission?
if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE)
set(CMAKE_INSTALL_SO_NO_EXE "1")
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "FALSE")
endif()

@ -1,123 +0,0 @@
# Install script for directory: /media/psf/Home/dev/flucoma-sc
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/media/psf/Home/dev/flucoma-sc/install")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "Release")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Install shared libraries without execute permission?
if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE)
set(CMAKE_INSTALL_SO_NO_EXE "1")
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "FALSE")
endif()
if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT)
file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/./FluidCorpusManipulation" TYPE DIRECTORY FILES "/media/psf/Home/dev/flucoma-sc/release-packaging/Classes")
endif()
if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT)
file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/./FluidCorpusManipulation" TYPE DIRECTORY FILES "/media/psf/Home/dev/flucoma-sc/release-packaging/HelpSource")
endif()
if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT)
file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/./FluidCorpusManipulation" TYPE DIRECTORY FILES "/media/psf/Home/dev/flucoma-sc/release-packaging/Examples")
endif()
if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT)
file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/./FluidCorpusManipulation/plugins" TYPE DIRECTORY FILES "/media/psf/Home/dev/flucoma-sc/release-packaging/plugins/" REGEX "/[^/]*\\.ilk$" EXCLUDE REGEX "/[^/]*\\.PDB$" EXCLUDE)
endif()
if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT)
file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/./FluidCorpusManipulation" TYPE DIRECTORY FILES "/home/owen/mac/dev/flucoma-core/AudioFiles")
endif()
if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT)
file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/./FluidCorpusManipulation" TYPE FILE FILES "/media/psf/Home/dev/flucoma-sc/QuickStart.md")
endif()
if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT)
file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/./FluidCorpusManipulation" TYPE FILE RENAME "LICENSE.md" FILES "/home/owen/mac/dev/flucoma-core/distribution.lic")
endif()
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
# Include the install script for each subdirectory.
include("/media/psf/Home/dev/flucoma-sc/linuxbuild/_deps/flucoma-core-build/cmake_install.cmake")
include("/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidAmpGate/cmake_install.cmake")
include("/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidAmpSlice/cmake_install.cmake")
include("/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufAmpGate/cmake_install.cmake")
include("/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufAmpSlice/cmake_install.cmake")
include("/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufCompose/cmake_install.cmake")
include("/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufFlatten/cmake_install.cmake")
include("/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufHPSS/cmake_install.cmake")
include("/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufLoudness/cmake_install.cmake")
include("/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufMFCC/cmake_install.cmake")
include("/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufMelBands/cmake_install.cmake")
include("/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufNMF/cmake_install.cmake")
include("/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufNoveltySlice/cmake_install.cmake")
include("/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufOnsetSlice/cmake_install.cmake")
include("/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufPitch/cmake_install.cmake")
include("/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufSines/cmake_install.cmake")
include("/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufSpectralShape/cmake_install.cmake")
include("/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufStats/cmake_install.cmake")
include("/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufThreadDemo/cmake_install.cmake")
include("/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufTransientSlice/cmake_install.cmake")
include("/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufTransients/cmake_install.cmake")
include("/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidGain/cmake_install.cmake")
include("/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidHPSS/cmake_install.cmake")
include("/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidLoudness/cmake_install.cmake")
include("/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidMFCC/cmake_install.cmake")
include("/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidManipulation/cmake_install.cmake")
include("/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidMelBands/cmake_install.cmake")
include("/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidMessageTest/cmake_install.cmake")
include("/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidNMFCross/cmake_install.cmake")
include("/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidNMFFilter/cmake_install.cmake")
include("/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidNMFMatch/cmake_install.cmake")
include("/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidNMFMorph/cmake_install.cmake")
include("/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidNoveltySlice/cmake_install.cmake")
include("/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidOnsetSlice/cmake_install.cmake")
include("/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidPitch/cmake_install.cmake")
include("/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidSTFTPass/cmake_install.cmake")
include("/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidSines/cmake_install.cmake")
include("/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidSpectralShape/cmake_install.cmake")
include("/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidSubscriberProviderTest/cmake_install.cmake")
include("/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidTransientSlice/cmake_install.cmake")
include("/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidTransients/cmake_install.cmake")
endif()
if(CMAKE_INSTALL_COMPONENT)
set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt")
else()
set(CMAKE_INSTALL_MANIFEST "install_manifest.txt")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
file(WRITE "/media/psf/Home/dev/flucoma-sc/linuxbuild/${CMAKE_INSTALL_MANIFEST}"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")

@ -1,254 +0,0 @@
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Classes/FluidAmpGate.sc
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Classes/FluidAmpSlice.sc
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Classes/FluidAudioTransport.sc
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Classes/FluidBufAmpGate.sc
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Classes/FluidBufAmpSlice.sc
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Classes/FluidBufAudioTransport.sc
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Classes/FluidBufCompose.sc
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Classes/FluidBufFlatten.sc
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Classes/FluidBufHPSS.sc
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Classes/FluidBufLoudness.sc
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Classes/FluidBufMelBands.sc
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Classes/FluidBufMFCC.sc
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Classes/FluidBufNMF.sc
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Classes/FluidBufNMFCross.sc
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Classes/FluidBufNoveltySlice.sc
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Classes/FluidBufOnsetSlice.sc
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Classes/FluidBufPitch.sc
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Classes/FluidBufSines.sc
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Classes/FluidBufSpectralShape.sc
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Classes/FluidBufStats.sc
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Classes/FluidBufThreadDemo.sc
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Classes/FluidBufTransients.sc
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Classes/FluidBufTransientSlice.sc
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Classes/FluidCorpusBuilders.sc
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Classes/FluidDataSet.sc
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Classes/FluidDataSetQuery.sc
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Classes/FluidDataSetWr.sc
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Classes/FluidGain.sc
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Classes/FluidHPSS.sc
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Classes/FluidKDTree.sc
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Classes/FluidKMeans.sc
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Classes/FluidKNNClassifier.sc
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Classes/FluidKNNRegressor.sc
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Classes/FluidLabelSet.sc
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Classes/FluidLoudness.sc
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Classes/FluidManipulationClient.sc
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Classes/FluidManipulationJSON.sc
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Classes/FluidMDS.sc
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Classes/FluidMelBands.sc
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Classes/FluidMessageResponse.sc
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Classes/FluidMessageTest.sc
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Classes/FluidMFCC.sc
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Classes/FluidMLP.sc
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Classes/FluidNMFFilter.sc
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Classes/FluidNMFMatch.sc
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Classes/FluidNMFMorph.sc
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Classes/FluidNormalize.sc
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Classes/FluidNoveltySlice.sc
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Classes/FluidNRTProcess.sc
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Classes/FluidOnsetSlice.sc
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Classes/FluidPCA.sc
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Classes/FluidPitch.sc
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Classes/FluidProviderTest.sc
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Classes/FluidSines.sc
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Classes/FluidSpectralShape.sc
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Classes/FluidStandardize.sc
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Classes/FluidSTFTPass.sc
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Classes/FluidSubscriberTest.sc
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Classes/FluidTransients.sc
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Classes/FluidTransientSlice.sc
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/HelpSource/.DS_Store
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/HelpSource/Classes/FluidAmpGate.schelp
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/HelpSource/Classes/FluidAmpSlice.schelp
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/HelpSource/Classes/FluidAudioTransport.schelp
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/HelpSource/Classes/FluidBufAmpGate.schelp
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/HelpSource/Classes/FluidBufAmpSlice.schelp
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/HelpSource/Classes/FluidBufAudioTransport.schelp
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/HelpSource/Classes/FluidBufCompose.schelp
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/HelpSource/Classes/FluidBufFlatten.schelp
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/HelpSource/Classes/FluidBufHPSS.schelp
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/HelpSource/Classes/FluidBufLoudness.schelp
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/HelpSource/Classes/FluidBufMelBands.schelp
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/HelpSource/Classes/FluidBufMFCC.schelp
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/HelpSource/Classes/FluidBufNMF.schelp
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/HelpSource/Classes/FluidBufNMFCross.schelp
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/HelpSource/Classes/FluidBufNoveltySlice.schelp
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/HelpSource/Classes/FluidBufOnsetSlice.schelp
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/HelpSource/Classes/FluidBufPitch.schelp
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/HelpSource/Classes/FluidBufSines.schelp
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/HelpSource/Classes/FluidBufSpectralShape.schelp
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/HelpSource/Classes/FluidBufStats.schelp
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/HelpSource/Classes/FluidBufThreadDemo.schelp
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/HelpSource/Classes/FluidBufTransients.schelp
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/HelpSource/Classes/FluidBufTransientSlice.schelp
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/HelpSource/Classes/FluidDataSet.schelp
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/HelpSource/Classes/FluidDataSetQuery.schelp
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/HelpSource/Classes/FluidDataSetWr.schelp
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/HelpSource/Classes/FluidGain.schelp
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/HelpSource/Classes/FluidHPSS.schelp
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/HelpSource/Classes/FluidKDTree.schelp
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/HelpSource/Classes/FluidKMeans.schelp
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/HelpSource/Classes/FluidKNNClassifier.schelp
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/HelpSource/Classes/FluidKNNRegressor.schelp
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/HelpSource/Classes/FluidLabelSet.schelp
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/HelpSource/Classes/FluidLoadFolder.schelp
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/HelpSource/Classes/FluidLoudness.schelp
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/HelpSource/Classes/FluidManipulationClient.schelp
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/HelpSource/Classes/FluidMDS.schelp
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/HelpSource/Classes/FluidMelBands.schelp
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/HelpSource/Classes/FluidMFCC.schelp
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/HelpSource/Classes/FluidMLPClassifier.schelp
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/HelpSource/Classes/FluidMLPRegressor.schelp
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/HelpSource/Classes/FluidNMFFilter.schelp
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/HelpSource/Classes/FluidNMFMatch.schelp
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/HelpSource/Classes/FluidNMFMorph.schelp
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/HelpSource/Classes/FluidNormalize.schelp
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/HelpSource/Classes/FluidNoveltySlice.schelp
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/HelpSource/Classes/FluidOnsetSlice.schelp
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/HelpSource/Classes/FluidPCA.schelp
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/HelpSource/Classes/FluidPitch.schelp
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/HelpSource/Classes/FluidProcessSlices.schelp
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/HelpSource/Classes/FluidSines.schelp
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/HelpSource/Classes/FluidSliceCorpus.schelp
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/HelpSource/Classes/FluidSpectralShape.schelp
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/HelpSource/Classes/FluidStandardize.schelp
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/HelpSource/Classes/FluidSTFTPass.schelp
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/HelpSource/Classes/FluidTransients.schelp
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/HelpSource/Classes/FluidTransientSlice.schelp
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/HelpSource/Classes/QuickStart.md
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/HelpSource/Guides/FluCoMa.schelp
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/HelpSource/Guides/FluidBufMultiThreading.schelp
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/HelpSource/Guides/FluidDataTools.schelp
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/HelpSource/Guides/FluidDecomposition.schelp
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Examples/.DS_Store
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Examples/buffer_compositing/bufcompose-MS-FIR.scd
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Examples/buffer_compositing/bufcomposemacros.scd
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Examples/buffer_compositing/fileiterator-2passes.scd
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Examples/buffer_compositing/fileiterator.scd
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Examples/dataset/demo-dataset-maker-utilities.scd
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Examples/dataset/MLP-synth-control.scd
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Examples/dataset/MLP-toy-example.scd
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Examples/dataset/super-simple-1D-example.scd
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Examples/dataset/super-simple-1D-example2.scd
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Examples/dataset/super-simple-classifier-example.scd
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Examples/dataset/super-simple-dictionary-json-example.scd
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Examples/dataset/super-simple-normalization-standardization-example.scd
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Examples/dataset/super-simple-regressor-example.scd
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Examples/GUI_examples/HPSS.scd
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Examples/GUI_examples/NMF4.scd
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Examples/GUI_examples/NoveltySegmentation.scd
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Examples/GUI_examples/SineExtraction.scd
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Examples/GUI_examples/TransientExtraction.scd
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Examples/GUI_examples/TransientSegmentation.scd
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Examples/nb_of_slices.scd
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Examples/nmf/JiT-NMF-classifier.scd
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Examples/nmf/JiT-NMF.scd
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Examples/nmf/nmfmatch-object-finding.scd
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Examples/nmf/nmfmatch-pretrained-piano.scd
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/Examples/segmenting/nb_of_slices.scd
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidAmpGate.scx
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidAmpGate.so
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidAmpSlice.scx
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidAmpSlice.so
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidBufAmpGate.scx
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidBufAmpGate.so
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidBufAmpSlice.scx
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidBufAmpSlice.so
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidBufCompose.scx
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidBufCompose.so
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidBufFlatten.scx
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidBufFlatten.so
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidBufHPSS.scx
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidBufHPSS.so
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidBufLoudness.scx
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidBufLoudness.so
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidBufMelBands.scx
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidBufMelBands.so
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidBufMFCC.scx
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidBufMFCC.so
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidBufNMF.scx
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidBufNMF.so
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidBufNoveltySlice.scx
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidBufNoveltySlice.so
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidBufOnsetSlice.scx
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidBufOnsetSlice.so
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidBufPitch.scx
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidBufPitch.so
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidBufSines.scx
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidBufSines.so
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidBufSpectralShape.scx
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidBufSpectralShape.so
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidBufStats.scx
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidBufStats.so
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidBufThreadDemo.scx
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidBufThreadDemo.so
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidBufTransients.scx
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidBufTransients.so
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidBufTransientSlice.scx
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidBufTransientSlice.so
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidGain.scx
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidGain.so
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidHPSS.scx
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidHPSS.so
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidLoudness.scx
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidLoudness.so
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidManipulation.scx
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidManipulation.so
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidMelBands.scx
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidMelBands.so
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidMessageTest.scx
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidMessageTest.so
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidMFCC.scx
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidMFCC.so
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidNMFCross.scx
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidNMFCross.so
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidNMFFilter.scx
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidNMFFilter.so
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidNMFMatch.scx
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidNMFMatch.so
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidNMFMorph.scx
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidNMFMorph.so
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidNoveltySlice.scx
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidNoveltySlice.so
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidOnsetSlice.scx
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidOnsetSlice.so
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidPitch.scx
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidPitch.so
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidSines.scx
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidSines.so
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidSpectralShape.scx
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidSpectralShape.so
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidSTFTPass.scx
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidSTFTPass.so
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidSubscriberProviderTest.scx
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidSubscriberProviderTest.so
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidTransients.scx
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidTransients.so
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidTransientSlice.scx
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/plugins/FluidTransientSlice.so
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/AudioFiles/-credits.txt
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/AudioFiles/filters/piano-dicts.wav
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/AudioFiles/Green-Box639.wav
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/AudioFiles/Green-Box641.wav
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/AudioFiles/Nicol-LoopE-M.wav
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/AudioFiles/Nicol-LoopE-M.wav.asd
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/AudioFiles/Tremblay-AaS-AcBassGuit-Melo-M.wav
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/AudioFiles/Tremblay-AaS-AcousticStrums-M.wav
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/AudioFiles/Tremblay-AaS-SynthTwoVoices-M.wav
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/AudioFiles/Tremblay-AaS-VoiceQC-B2K.wav
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/AudioFiles/Tremblay-ASWINE-ScratchySynth-M.wav
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/AudioFiles/Tremblay-BaB-HumDC-M.wav
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/AudioFiles/Tremblay-BaB-SoundscapeGolcarWithDog.wav
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/AudioFiles/Tremblay-beatRemember.wav
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/AudioFiles/Tremblay-CEL-GlitchyMusicBoxMelo.wav
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/AudioFiles/Tremblay-CF-ChurchBells.wav
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/AudioFiles/Tremblay-FMTri-M.wav
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/AudioFiles/Tremblay-FMTriDist-M.wav
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/AudioFiles/Tremblay-Iterative-M.wav
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/AudioFiles/Tremblay-SA-UprightPianoPedalWide.wav
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/AudioFiles/Tremblay-SlideChoirAdd-M.wav
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/AudioFiles/Tremblay-SlideChoirSin-M.wav
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/AudioFiles/Tremblay-UW-ComplexDescent-M.wav
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/QuickStart.md
/media/psf/Home/dev/flucoma-sc/install/./FluidCorpusManipulation/LICENSE.md

@ -1,16 +0,0 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.17
# Relative path conversion top directories.
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/media/psf/Home/dev/flucoma-sc")
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/media/psf/Home/dev/flucoma-sc/linuxbuild")
# Force unix paths in dependencies.
set(CMAKE_FORCE_UNIX_PATHS 1)
# The C and CXX include file regular expressions for this directory.
set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$")
set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$")
set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN})
set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN})

@ -1,39 +0,0 @@
# The set of languages for which implicit dependencies are needed:
set(CMAKE_DEPENDS_LANGUAGES
"CXX"
)
# The set of files for implicit dependencies of each language:
set(CMAKE_DEPENDS_CHECK_CXX
"/media/psf/Home/dev/flucoma-sc/src/FluidAmpGate/FluidAmpGate.cpp" "/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o"
)
set(CMAKE_CXX_COMPILER_ID "GNU")
# Preprocessor definitions for this target.
set(CMAKE_TARGET_DEFINITIONS_CXX
"EIGEN_MPL2_ONLY=1"
"FluidAmpGate_EXPORTS"
)
# The include file search paths:
set(CMAKE_CXX_TARGET_INCLUDE_PATH
"../src/FluidAmpGate"
"/home/owen/mac/dev/flucoma-core/script"
"/home/owen/mac/dev/fluid_manipulation/include"
"/home/owen/mac/dev/fluid_manipulation/thirdparty"
"/home/owen/mac/dev/flucoma-core/include"
"../include"
"/home/owen/mac/dev/supercollider/include/plugin_interface"
"/home/owen/mac/dev/supercollider/include/common"
"/home/owen/mac/dev/supercollider/common"
"/home/owen/mac/dev/supercollider/external_libraries/boost"
"/home/owen/mac/dev/eigen"
"/home/owen/mac/dev/HISSTools_Library"
)
# Targets to which this target links.
set(CMAKE_TARGET_LINKED_INFO_FILES
"/media/psf/Home/dev/flucoma-sc/linuxbuild/_deps/flucoma-core-build/CMakeFiles/HISSTools_FFT.dir/DependInfo.cmake"
)
# Fortran module output directory.
set(CMAKE_Fortran_TARGET_MODULE_DIR "")

@ -1,116 +0,0 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.17
# Delete rule output on recipe failure.
.DELETE_ON_ERROR:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Disable VCS-based implicit rules.
% : %,v
# Disable VCS-based implicit rules.
% : RCS/%
# Disable VCS-based implicit rules.
% : RCS/%,v
# Disable VCS-based implicit rules.
% : SCCS/s.%
# Disable VCS-based implicit rules.
% : s.%
.SUFFIXES: .hpux_make_needs_suffix_list
# Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
# The shell in which to execute make rules.
SHELL = /bin/sh
# The CMake executable.
CMAKE_COMMAND = /usr/bin/cmake
# The command to remove a file.
RM = /usr/bin/cmake -E rm -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /media/psf/Home/dev/flucoma-sc
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /media/psf/Home/dev/flucoma-sc/linuxbuild
# Include any dependencies generated for this target.
include src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/depend.make
# Include the progress variables for this target.
include src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/progress.make
# Include the compile flags for this target's objects.
include src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/flags.make
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/flags.make
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: ../src/FluidAmpGate/FluidAmpGate.cpp
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/Home/dev/flucoma-sc/linuxbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o"
cd /media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidAmpGate && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o -c /media/psf/Home/dev/flucoma-sc/src/FluidAmpGate/FluidAmpGate.cpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.i"
cd /media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidAmpGate && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /media/psf/Home/dev/flucoma-sc/src/FluidAmpGate/FluidAmpGate.cpp > CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.i
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.s"
cd /media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidAmpGate && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /media/psf/Home/dev/flucoma-sc/src/FluidAmpGate/FluidAmpGate.cpp -o CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.s
# Object files for target FluidAmpGate
FluidAmpGate_OBJECTS = \
"CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o"
# External object files for target FluidAmpGate
FluidAmpGate_EXTERNAL_OBJECTS =
../release-packaging/plugins/FluidAmpGate.so: src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o
../release-packaging/plugins/FluidAmpGate.so: src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/build.make
../release-packaging/plugins/FluidAmpGate.so: _deps/flucoma-core-build/libHISSTools_FFT.a
../release-packaging/plugins/FluidAmpGate.so: src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/link.txt
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/media/psf/Home/dev/flucoma-sc/linuxbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX shared module ../../../release-packaging/plugins/FluidAmpGate.so"
cd /media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidAmpGate && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/FluidAmpGate.dir/link.txt --verbose=$(VERBOSE)
# Rule to build all files generated by this target.
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/build: ../release-packaging/plugins/FluidAmpGate.so
.PHONY : src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/build
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/clean:
cd /media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidAmpGate && $(CMAKE_COMMAND) -P CMakeFiles/FluidAmpGate.dir/cmake_clean.cmake
.PHONY : src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/clean
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/depend:
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /media/psf/Home/dev/flucoma-sc /media/psf/Home/dev/flucoma-sc/src/FluidAmpGate /media/psf/Home/dev/flucoma-sc/linuxbuild /media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidAmpGate /media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/DependInfo.cmake --color=$(COLOR)
.PHONY : src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/depend

@ -1,10 +0,0 @@
file(REMOVE_RECURSE
"../../../release-packaging/plugins/FluidAmpGate.pdb"
"../../../release-packaging/plugins/FluidAmpGate.so"
"CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o"
)
# Per-language clean rules from dependency scanning.
foreach(lang CXX)
include(CMakeFiles/FluidAmpGate.dir/cmake_clean_${lang}.cmake OPTIONAL)
endforeach()

@ -1,298 +0,0 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.17
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o
../include/FluidSCWrapper.hpp
../include/SCBufferAdaptor.hpp
/home/owen/mac/dev/HISSTools_Library/HISSTools_FFT/HISSTools_FFT.h
/home/owen/mac/dev/eigen/Eigen/Core
/home/owen/mac/dev/eigen/Eigen/src/Core/Array.h
/home/owen/mac/dev/eigen/Eigen/src/Core/ArrayBase.h
/home/owen/mac/dev/eigen/Eigen/src/Core/ArrayWrapper.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Assign.h
/home/owen/mac/dev/eigen/Eigen/src/Core/AssignEvaluator.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Assign_MKL.h
/home/owen/mac/dev/eigen/Eigen/src/Core/BandMatrix.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Block.h
/home/owen/mac/dev/eigen/Eigen/src/Core/BooleanRedux.h
/home/owen/mac/dev/eigen/Eigen/src/Core/CommaInitializer.h
/home/owen/mac/dev/eigen/Eigen/src/Core/ConditionEstimator.h
/home/owen/mac/dev/eigen/Eigen/src/Core/CoreEvaluators.h
/home/owen/mac/dev/eigen/Eigen/src/Core/CoreIterators.h
/home/owen/mac/dev/eigen/Eigen/src/Core/CwiseBinaryOp.h
/home/owen/mac/dev/eigen/Eigen/src/Core/CwiseNullaryOp.h
/home/owen/mac/dev/eigen/Eigen/src/Core/CwiseTernaryOp.h
/home/owen/mac/dev/eigen/Eigen/src/Core/CwiseUnaryOp.h
/home/owen/mac/dev/eigen/Eigen/src/Core/CwiseUnaryView.h
/home/owen/mac/dev/eigen/Eigen/src/Core/DenseBase.h
/home/owen/mac/dev/eigen/Eigen/src/Core/DenseCoeffsBase.h
/home/owen/mac/dev/eigen/Eigen/src/Core/DenseStorage.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Diagonal.h
/home/owen/mac/dev/eigen/Eigen/src/Core/DiagonalMatrix.h
/home/owen/mac/dev/eigen/Eigen/src/Core/DiagonalProduct.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Dot.h
/home/owen/mac/dev/eigen/Eigen/src/Core/EigenBase.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Fuzzy.h
/home/owen/mac/dev/eigen/Eigen/src/Core/GeneralProduct.h
/home/owen/mac/dev/eigen/Eigen/src/Core/GenericPacketMath.h
/home/owen/mac/dev/eigen/Eigen/src/Core/GlobalFunctions.h
/home/owen/mac/dev/eigen/Eigen/src/Core/IO.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Inverse.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Map.h
/home/owen/mac/dev/eigen/Eigen/src/Core/MapBase.h
/home/owen/mac/dev/eigen/Eigen/src/Core/MathFunctions.h
/home/owen/mac/dev/eigen/Eigen/src/Core/MathFunctionsImpl.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Matrix.h
/home/owen/mac/dev/eigen/Eigen/src/Core/MatrixBase.h
/home/owen/mac/dev/eigen/Eigen/src/Core/NestByValue.h
/home/owen/mac/dev/eigen/Eigen/src/Core/NoAlias.h
/home/owen/mac/dev/eigen/Eigen/src/Core/NumTraits.h
/home/owen/mac/dev/eigen/Eigen/src/Core/PermutationMatrix.h
/home/owen/mac/dev/eigen/Eigen/src/Core/PlainObjectBase.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Product.h
/home/owen/mac/dev/eigen/Eigen/src/Core/ProductEvaluators.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Random.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Redux.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Ref.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Replicate.h
/home/owen/mac/dev/eigen/Eigen/src/Core/ReturnByValue.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Reverse.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Select.h
/home/owen/mac/dev/eigen/Eigen/src/Core/SelfAdjointView.h
/home/owen/mac/dev/eigen/Eigen/src/Core/SelfCwiseBinaryOp.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Solve.h
/home/owen/mac/dev/eigen/Eigen/src/Core/SolveTriangular.h
/home/owen/mac/dev/eigen/Eigen/src/Core/SolverBase.h
/home/owen/mac/dev/eigen/Eigen/src/Core/StableNorm.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Stride.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Swap.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Transpose.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Transpositions.h
/home/owen/mac/dev/eigen/Eigen/src/Core/TriangularMatrix.h
/home/owen/mac/dev/eigen/Eigen/src/Core/VectorBlock.h
/home/owen/mac/dev/eigen/Eigen/src/Core/VectorwiseOp.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Visitor.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/AVX/Complex.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/AVX/MathFunctions.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/AVX/PacketMath.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/AVX/TypeCasting.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/AVX512/MathFunctions.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/AVX512/PacketMath.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/AltiVec/Complex.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/AltiVec/MathFunctions.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/AltiVec/PacketMath.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/CUDA/Complex.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/CUDA/Half.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/CUDA/MathFunctions.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/CUDA/PacketMath.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/CUDA/PacketMathHalf.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/CUDA/TypeCasting.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/Default/ConjHelper.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/Default/Settings.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/NEON/Complex.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/NEON/MathFunctions.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/NEON/PacketMath.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/SSE/Complex.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/SSE/MathFunctions.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/SSE/PacketMath.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/SSE/TypeCasting.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/ZVector/Complex.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/ZVector/MathFunctions.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/ZVector/PacketMath.h
/home/owen/mac/dev/eigen/Eigen/src/Core/functors/AssignmentFunctors.h
/home/owen/mac/dev/eigen/Eigen/src/Core/functors/BinaryFunctors.h
/home/owen/mac/dev/eigen/Eigen/src/Core/functors/NullaryFunctors.h
/home/owen/mac/dev/eigen/Eigen/src/Core/functors/StlFunctors.h
/home/owen/mac/dev/eigen/Eigen/src/Core/functors/TernaryFunctors.h
/home/owen/mac/dev/eigen/Eigen/src/Core/functors/UnaryFunctors.h
/home/owen/mac/dev/eigen/Eigen/src/Core/products/GeneralBlockPanelKernel.h
/home/owen/mac/dev/eigen/Eigen/src/Core/products/GeneralMatrixMatrix.h
/home/owen/mac/dev/eigen/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h
/home/owen/mac/dev/eigen/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h
/home/owen/mac/dev/eigen/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h
/home/owen/mac/dev/eigen/Eigen/src/Core/products/GeneralMatrixVector.h
/home/owen/mac/dev/eigen/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h
/home/owen/mac/dev/eigen/Eigen/src/Core/products/Parallelizer.h
/home/owen/mac/dev/eigen/Eigen/src/Core/products/SelfadjointMatrixMatrix.h
/home/owen/mac/dev/eigen/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h
/home/owen/mac/dev/eigen/Eigen/src/Core/products/SelfadjointMatrixVector.h
/home/owen/mac/dev/eigen/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h
/home/owen/mac/dev/eigen/Eigen/src/Core/products/SelfadjointProduct.h
/home/owen/mac/dev/eigen/Eigen/src/Core/products/SelfadjointRank2Update.h
/home/owen/mac/dev/eigen/Eigen/src/Core/products/TriangularMatrixMatrix.h
/home/owen/mac/dev/eigen/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h
/home/owen/mac/dev/eigen/Eigen/src/Core/products/TriangularMatrixVector.h
/home/owen/mac/dev/eigen/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h
/home/owen/mac/dev/eigen/Eigen/src/Core/products/TriangularSolverMatrix.h
/home/owen/mac/dev/eigen/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h
/home/owen/mac/dev/eigen/Eigen/src/Core/products/TriangularSolverVector.h
/home/owen/mac/dev/eigen/Eigen/src/Core/util/BlasUtil.h
/home/owen/mac/dev/eigen/Eigen/src/Core/util/Constants.h
/home/owen/mac/dev/eigen/Eigen/src/Core/util/DisableStupidWarnings.h
/home/owen/mac/dev/eigen/Eigen/src/Core/util/ForwardDeclarations.h
/home/owen/mac/dev/eigen/Eigen/src/Core/util/MKL_support.h
/home/owen/mac/dev/eigen/Eigen/src/Core/util/Macros.h
/home/owen/mac/dev/eigen/Eigen/src/Core/util/Memory.h
/home/owen/mac/dev/eigen/Eigen/src/Core/util/Meta.h
/home/owen/mac/dev/eigen/Eigen/src/Core/util/ReenableStupidWarnings.h
/home/owen/mac/dev/eigen/Eigen/src/Core/util/StaticAssert.h
/home/owen/mac/dev/eigen/Eigen/src/Core/util/XprHelper.h
/home/owen/mac/dev/eigen/Eigen/src/misc/blas.h
/home/owen/mac/dev/eigen/Eigen/src/plugins/ArrayCwiseBinaryOps.h
/home/owen/mac/dev/eigen/Eigen/src/plugins/ArrayCwiseUnaryOps.h
/home/owen/mac/dev/eigen/Eigen/src/plugins/BlockMethods.h
/home/owen/mac/dev/eigen/Eigen/src/plugins/CommonCwiseBinaryOps.h
/home/owen/mac/dev/eigen/Eigen/src/plugins/CommonCwiseUnaryOps.h
/home/owen/mac/dev/eigen/Eigen/src/plugins/MatrixCwiseBinaryOps.h
/home/owen/mac/dev/eigen/Eigen/src/plugins/MatrixCwiseUnaryOps.h
/home/owen/mac/dev/flucoma-core/include/algorithms/public/EnvelopeGate.hpp
/home/owen/mac/dev/flucoma-core/include/algorithms/public/STFT.hpp
/home/owen/mac/dev/flucoma-core/include/algorithms/public/WindowFuncs.hpp
/home/owen/mac/dev/flucoma-core/include/algorithms/util/AlgorithmUtils.hpp
/home/owen/mac/dev/flucoma-core/include/algorithms/util/ButterworthHPFilter.hpp
/home/owen/mac/dev/flucoma-core/include/algorithms/util/FFT.hpp
/home/owen/mac/dev/flucoma-core/include/algorithms/util/FluidEigenMappings.hpp
/home/owen/mac/dev/flucoma-core/include/algorithms/util/SlideUDFilter.hpp
/home/owen/mac/dev/flucoma-core/include/clients/common/AudioClient.hpp
/home/owen/mac/dev/flucoma-core/include/clients/common/BufferAdaptor.hpp
/home/owen/mac/dev/flucoma-core/include/clients/common/BufferedProcess.hpp
/home/owen/mac/dev/flucoma-core/include/clients/common/FluidBaseClient.hpp
/home/owen/mac/dev/flucoma-core/include/clients/common/FluidContext.hpp
/home/owen/mac/dev/flucoma-core/include/clients/common/FluidNRTClientWrapper.hpp
/home/owen/mac/dev/flucoma-core/include/clients/common/FluidSink.hpp
/home/owen/mac/dev/flucoma-core/include/clients/common/FluidSource.hpp
/home/owen/mac/dev/flucoma-core/include/clients/common/FluidTask.hpp
/home/owen/mac/dev/flucoma-core/include/clients/common/MemoryBufferAdaptor.hpp
/home/owen/mac/dev/flucoma-core/include/clients/common/MessageSet.hpp
/home/owen/mac/dev/flucoma-core/include/clients/common/OfflineClient.hpp
/home/owen/mac/dev/flucoma-core/include/clients/common/ParameterConstraints.hpp
/home/owen/mac/dev/flucoma-core/include/clients/common/ParameterSet.hpp
/home/owen/mac/dev/flucoma-core/include/clients/common/ParameterTrackChanges.hpp
/home/owen/mac/dev/flucoma-core/include/clients/common/ParameterTypes.hpp
/home/owen/mac/dev/flucoma-core/include/clients/common/Result.hpp
/home/owen/mac/dev/flucoma-core/include/clients/common/SpikesToTimes.hpp
/home/owen/mac/dev/flucoma-core/include/clients/common/TupleUtilities.hpp
/home/owen/mac/dev/flucoma-core/include/clients/rt/AmpGateClient.hpp
/home/owen/mac/dev/flucoma-core/include/data/FluidIndex.hpp
/home/owen/mac/dev/flucoma-core/include/data/FluidMeta.hpp
/home/owen/mac/dev/flucoma-core/include/data/FluidTensor.hpp
/home/owen/mac/dev/flucoma-core/include/data/FluidTensor_Support.hpp
/home/owen/mac/dev/flucoma-core/include/data/TensorTypes.hpp
/home/owen/mac/dev/flucoma-core/script/FluidVersion.hpp
/home/owen/mac/dev/fluid_manipulation/include/clients/common/SharedClientUtils.hpp
/home/owen/mac/dev/fluid_manipulation/include/clients/nrt/FluidSharedInstanceAdaptor.hpp
/home/owen/mac/dev/supercollider/common/SC_Errors.h
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/align.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/aligned_alloc.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/alignment_of.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/alignment_of_forward.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/align.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/align_cxx11.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/aligned_alloc.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/aligned_alloc_android.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/aligned_alloc_macos.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/aligned_alloc_msvc.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/aligned_alloc_posix.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/aligned_alloc_sunos.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/alignment_of.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/alignment_of_clang.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/alignment_of_codegear.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/alignment_of_cxx11.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/alignment_of_gcc.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/alignment_of_msvc.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/element_type.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/integral_constant.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/is_alignment.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/min_size.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/assert.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/borland.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/clang.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/codegear.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/comeau.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/common_edg.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/compaq_cxx.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/cray.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/digitalmars.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/gcc.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/gcc_xml.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/greenhills.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/hp_acc.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/intel.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/kai.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/metrowerks.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/mpw.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/nvcc.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/pathscale.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/pgi.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/sgi_mipspro.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/sunpro_cc.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/vacpp.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/visualc.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/xlcpp.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/xlcpp_zos.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/detail/posix_features.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/detail/select_compiler_config.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/detail/select_platform_config.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/detail/select_stdlib_config.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/detail/suffix.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/no_tr1/utility.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/aix.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/amigaos.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/beos.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/bsd.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/cray.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/cygwin.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/hpux.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/irix.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/linux.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/macos.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/qnxnto.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/solaris.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/symbian.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/vms.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/vxworks.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/win32.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/zos.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/stdlib/dinkumware.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/stdlib/libcomo.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/stdlib/libcpp.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/stdlib/libstdcpp3.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/stdlib/modena.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/stdlib/msl.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/stdlib/roguewave.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/stdlib/sgi.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/stdlib/stlport.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/stdlib/vacpp.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/stdlib/xlcpp_zos.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/user.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/current_function.hpp
/home/owen/mac/dev/supercollider/include/common/SC_Alloca.h
/home/owen/mac/dev/supercollider/include/common/SC_BoundsMacros.h
/home/owen/mac/dev/supercollider/include/common/SC_Endian.h
/home/owen/mac/dev/supercollider/include/common/SC_Export.h
/home/owen/mac/dev/supercollider/include/common/SC_Types.h
/home/owen/mac/dev/supercollider/include/common/SC_fftlib.h
/home/owen/mac/dev/supercollider/include/common/clz.h
/home/owen/mac/dev/supercollider/include/common/function_attributes.h
/home/owen/mac/dev/supercollider/include/plugin_interface/Hash.h
/home/owen/mac/dev/supercollider/include/plugin_interface/SC_BufGen.h
/home/owen/mac/dev/supercollider/include/plugin_interface/SC_Constants.h
/home/owen/mac/dev/supercollider/include/plugin_interface/SC_DemandUnit.h
/home/owen/mac/dev/supercollider/include/plugin_interface/SC_FifoMsg.h
/home/owen/mac/dev/supercollider/include/plugin_interface/SC_Graph.h
/home/owen/mac/dev/supercollider/include/plugin_interface/SC_InlineBinaryOp.h
/home/owen/mac/dev/supercollider/include/plugin_interface/SC_InlineUnaryOp.h
/home/owen/mac/dev/supercollider/include/plugin_interface/SC_InterfaceTable.h
/home/owen/mac/dev/supercollider/include/plugin_interface/SC_Node.h
/home/owen/mac/dev/supercollider/include/plugin_interface/SC_PlugIn.h
/home/owen/mac/dev/supercollider/include/plugin_interface/SC_PlugIn.hpp
/home/owen/mac/dev/supercollider/include/plugin_interface/SC_RGen.h
/home/owen/mac/dev/supercollider/include/plugin_interface/SC_Rate.h
/home/owen/mac/dev/supercollider/include/plugin_interface/SC_SndBuf.h
/home/owen/mac/dev/supercollider/include/plugin_interface/SC_Unit.h
/home/owen/mac/dev/supercollider/include/plugin_interface/SC_Wire.h
/home/owen/mac/dev/supercollider/include/plugin_interface/SC_World.h
/home/owen/mac/dev/supercollider/include/plugin_interface/Unroll.h
/home/owen/mac/dev/supercollider/include/plugin_interface/sc_msg_iter.h
/media/psf/Home/dev/flucoma-sc/src/FluidAmpGate/FluidAmpGate.cpp

@ -1,298 +0,0 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.17
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: ../include/FluidSCWrapper.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: ../include/SCBufferAdaptor.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/HISSTools_Library/HISSTools_FFT/HISSTools_FFT.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/Core
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Array.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/ArrayBase.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/ArrayWrapper.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Assign.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/AssignEvaluator.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Assign_MKL.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/BandMatrix.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Block.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/BooleanRedux.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/CommaInitializer.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/ConditionEstimator.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/CoreEvaluators.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/CoreIterators.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/CwiseBinaryOp.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/CwiseNullaryOp.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/CwiseTernaryOp.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/CwiseUnaryOp.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/CwiseUnaryView.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/DenseBase.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/DenseCoeffsBase.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/DenseStorage.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Diagonal.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/DiagonalMatrix.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/DiagonalProduct.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Dot.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/EigenBase.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Fuzzy.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/GeneralProduct.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/GenericPacketMath.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/GlobalFunctions.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/IO.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Inverse.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Map.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/MapBase.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/MathFunctions.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/MathFunctionsImpl.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Matrix.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/MatrixBase.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/NestByValue.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/NoAlias.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/NumTraits.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/PermutationMatrix.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/PlainObjectBase.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Product.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/ProductEvaluators.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Random.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Redux.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Ref.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Replicate.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/ReturnByValue.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Reverse.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Select.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/SelfAdjointView.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/SelfCwiseBinaryOp.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Solve.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/SolveTriangular.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/SolverBase.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/StableNorm.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Stride.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Swap.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Transpose.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Transpositions.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/TriangularMatrix.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/VectorBlock.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/VectorwiseOp.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Visitor.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/AVX/Complex.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/AVX/MathFunctions.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/AVX/PacketMath.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/AVX/TypeCasting.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/AVX512/MathFunctions.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/AVX512/PacketMath.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/AltiVec/Complex.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/AltiVec/MathFunctions.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/AltiVec/PacketMath.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/CUDA/Complex.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/CUDA/Half.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/CUDA/MathFunctions.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/CUDA/PacketMath.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/CUDA/PacketMathHalf.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/CUDA/TypeCasting.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/Default/ConjHelper.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/Default/Settings.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/NEON/Complex.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/NEON/MathFunctions.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/NEON/PacketMath.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/SSE/Complex.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/SSE/MathFunctions.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/SSE/PacketMath.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/SSE/TypeCasting.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/ZVector/Complex.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/ZVector/MathFunctions.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/ZVector/PacketMath.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/functors/AssignmentFunctors.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/functors/BinaryFunctors.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/functors/NullaryFunctors.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/functors/StlFunctors.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/functors/TernaryFunctors.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/functors/UnaryFunctors.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/products/GeneralBlockPanelKernel.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/products/GeneralMatrixMatrix.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/products/GeneralMatrixVector.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/products/Parallelizer.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/products/SelfadjointMatrixMatrix.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/products/SelfadjointMatrixVector.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/products/SelfadjointProduct.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/products/SelfadjointRank2Update.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/products/TriangularMatrixMatrix.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/products/TriangularMatrixVector.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/products/TriangularSolverMatrix.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/products/TriangularSolverVector.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/util/BlasUtil.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/util/Constants.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/util/DisableStupidWarnings.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/util/ForwardDeclarations.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/util/MKL_support.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/util/Macros.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/util/Memory.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/util/Meta.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/util/ReenableStupidWarnings.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/util/StaticAssert.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/util/XprHelper.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/misc/blas.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/plugins/ArrayCwiseBinaryOps.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/plugins/ArrayCwiseUnaryOps.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/plugins/BlockMethods.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/plugins/CommonCwiseBinaryOps.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/plugins/CommonCwiseUnaryOps.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/plugins/MatrixCwiseBinaryOps.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/plugins/MatrixCwiseUnaryOps.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/flucoma-core/include/algorithms/public/EnvelopeGate.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/flucoma-core/include/algorithms/public/STFT.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/flucoma-core/include/algorithms/public/WindowFuncs.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/flucoma-core/include/algorithms/util/AlgorithmUtils.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/flucoma-core/include/algorithms/util/ButterworthHPFilter.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/flucoma-core/include/algorithms/util/FFT.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/flucoma-core/include/algorithms/util/FluidEigenMappings.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/flucoma-core/include/algorithms/util/SlideUDFilter.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/flucoma-core/include/clients/common/AudioClient.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/flucoma-core/include/clients/common/BufferAdaptor.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/flucoma-core/include/clients/common/BufferedProcess.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/flucoma-core/include/clients/common/FluidBaseClient.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/flucoma-core/include/clients/common/FluidContext.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/flucoma-core/include/clients/common/FluidNRTClientWrapper.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/flucoma-core/include/clients/common/FluidSink.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/flucoma-core/include/clients/common/FluidSource.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/flucoma-core/include/clients/common/FluidTask.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/flucoma-core/include/clients/common/MemoryBufferAdaptor.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/flucoma-core/include/clients/common/MessageSet.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/flucoma-core/include/clients/common/OfflineClient.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/flucoma-core/include/clients/common/ParameterConstraints.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/flucoma-core/include/clients/common/ParameterSet.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/flucoma-core/include/clients/common/ParameterTrackChanges.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/flucoma-core/include/clients/common/ParameterTypes.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/flucoma-core/include/clients/common/Result.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/flucoma-core/include/clients/common/SpikesToTimes.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/flucoma-core/include/clients/common/TupleUtilities.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/flucoma-core/include/clients/rt/AmpGateClient.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/flucoma-core/include/data/FluidIndex.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/flucoma-core/include/data/FluidMeta.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/flucoma-core/include/data/FluidTensor.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/flucoma-core/include/data/FluidTensor_Support.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/flucoma-core/include/data/TensorTypes.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/flucoma-core/script/FluidVersion.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/fluid_manipulation/include/clients/common/SharedClientUtils.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/fluid_manipulation/include/clients/nrt/FluidSharedInstanceAdaptor.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/common/SC_Errors.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/align.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/aligned_alloc.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/alignment_of.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/alignment_of_forward.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/align.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/align_cxx11.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/aligned_alloc.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/aligned_alloc_android.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/aligned_alloc_macos.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/aligned_alloc_msvc.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/aligned_alloc_posix.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/aligned_alloc_sunos.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/alignment_of.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/alignment_of_clang.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/alignment_of_codegear.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/alignment_of_cxx11.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/alignment_of_gcc.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/alignment_of_msvc.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/element_type.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/integral_constant.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/is_alignment.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/min_size.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/assert.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/borland.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/clang.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/codegear.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/comeau.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/common_edg.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/compaq_cxx.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/cray.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/digitalmars.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/gcc.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/gcc_xml.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/greenhills.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/hp_acc.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/intel.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/kai.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/metrowerks.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/mpw.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/nvcc.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/pathscale.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/pgi.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/sgi_mipspro.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/sunpro_cc.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/vacpp.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/visualc.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/xlcpp.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/xlcpp_zos.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/detail/posix_features.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/detail/select_compiler_config.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/detail/select_platform_config.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/detail/select_stdlib_config.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/detail/suffix.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/no_tr1/utility.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/aix.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/amigaos.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/beos.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/bsd.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/cray.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/cygwin.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/hpux.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/irix.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/linux.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/macos.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/qnxnto.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/solaris.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/symbian.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/vms.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/vxworks.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/win32.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/zos.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/stdlib/dinkumware.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/stdlib/libcomo.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/stdlib/libcpp.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/stdlib/libstdcpp3.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/stdlib/modena.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/stdlib/msl.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/stdlib/roguewave.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/stdlib/sgi.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/stdlib/stlport.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/stdlib/vacpp.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/stdlib/xlcpp_zos.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/user.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/current_function.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/include/common/SC_Alloca.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/include/common/SC_BoundsMacros.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/include/common/SC_Endian.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/include/common/SC_Export.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/include/common/SC_Types.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/include/common/SC_fftlib.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/include/common/clz.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/include/common/function_attributes.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/include/plugin_interface/Hash.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/include/plugin_interface/SC_BufGen.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/include/plugin_interface/SC_Constants.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/include/plugin_interface/SC_DemandUnit.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/include/plugin_interface/SC_FifoMsg.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/include/plugin_interface/SC_Graph.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/include/plugin_interface/SC_InlineBinaryOp.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/include/plugin_interface/SC_InlineUnaryOp.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/include/plugin_interface/SC_InterfaceTable.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/include/plugin_interface/SC_Node.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/include/plugin_interface/SC_PlugIn.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/include/plugin_interface/SC_PlugIn.hpp
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/include/plugin_interface/SC_RGen.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/include/plugin_interface/SC_Rate.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/include/plugin_interface/SC_SndBuf.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/include/plugin_interface/SC_Unit.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/include/plugin_interface/SC_Wire.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/include/plugin_interface/SC_World.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/include/plugin_interface/Unroll.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: /home/owen/mac/dev/supercollider/include/plugin_interface/sc_msg_iter.h
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o: ../src/FluidAmpGate/FluidAmpGate.cpp

@ -1,10 +0,0 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.17
# compile CXX with /usr/bin/c++
CXX_FLAGS = -O3 -DNDEBUG -fPIC -Wall -Wextra -Wpedantic -Wreturn-type -Wconversion -Wno-c++11-narrowing -mavx -fvisibility=hidden -fpermissive -fPIC -std=c++14
CXX_DEFINES = -DEIGEN_MPL2_ONLY=1 -DFluidAmpGate_EXPORTS
CXX_INCLUDES = -I/media/psf/Home/dev/flucoma-sc/src/FluidAmpGate -I/home/owen/mac/dev/flucoma-core/script -I/home/owen/mac/dev/fluid_manipulation/include -I/home/owen/mac/dev/fluid_manipulation/thirdparty -I/home/owen/mac/dev/flucoma-core/include -I/media/psf/Home/dev/flucoma-sc/include -isystem /home/owen/mac/dev/supercollider/include/plugin_interface -isystem /home/owen/mac/dev/supercollider/include/common -isystem /home/owen/mac/dev/supercollider/common -isystem /home/owen/mac/dev/supercollider/external_libraries/boost -isystem /home/owen/mac/dev/eigen -isystem /home/owen/mac/dev/HISSTools_Library

@ -1 +0,0 @@
/usr/bin/c++ -fPIC -O3 -DNDEBUG -shared -o ../../../release-packaging/plugins/FluidAmpGate.so CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o ../../_deps/flucoma-core-build/libHISSTools_FFT.a

@ -1,3 +0,0 @@
CMAKE_PROGRESS_1 = 1
CMAKE_PROGRESS_2 = 2

@ -1,249 +0,0 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.17
# Default target executed when no arguments are given to make.
default_target: all
.PHONY : default_target
# Allow only one "make -f Makefile2" at a time, but pass parallelism.
.NOTPARALLEL:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Disable VCS-based implicit rules.
% : %,v
# Disable VCS-based implicit rules.
% : RCS/%
# Disable VCS-based implicit rules.
% : RCS/%,v
# Disable VCS-based implicit rules.
% : SCCS/s.%
# Disable VCS-based implicit rules.
% : s.%
.SUFFIXES: .hpux_make_needs_suffix_list
# Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
# The shell in which to execute make rules.
SHELL = /bin/sh
# The CMake executable.
CMAKE_COMMAND = /usr/bin/cmake
# The command to remove a file.
RM = /usr/bin/cmake -E rm -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /media/psf/Home/dev/flucoma-sc
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /media/psf/Home/dev/flucoma-sc/linuxbuild
#=============================================================================
# Targets provided globally by CMake.
# Special rule for the target install/strip
install/strip: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..."
/usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
.PHONY : install/strip
# Special rule for the target install/strip
install/strip/fast: preinstall/fast
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..."
/usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
.PHONY : install/strip/fast
# Special rule for the target edit_cache
edit_cache:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake cache editor..."
/usr/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
.PHONY : edit_cache
# Special rule for the target edit_cache
edit_cache/fast: edit_cache
.PHONY : edit_cache/fast
# Special rule for the target rebuild_cache
rebuild_cache:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..."
/usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
.PHONY : rebuild_cache
# Special rule for the target rebuild_cache
rebuild_cache/fast: rebuild_cache
.PHONY : rebuild_cache/fast
# Special rule for the target list_install_components
list_install_components:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\""
.PHONY : list_install_components
# Special rule for the target list_install_components
list_install_components/fast: list_install_components
.PHONY : list_install_components/fast
# Special rule for the target install/local
install/local: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..."
/usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
.PHONY : install/local
# Special rule for the target install/local
install/local/fast: preinstall/fast
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..."
/usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
.PHONY : install/local/fast
# Special rule for the target install
install: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..."
/usr/bin/cmake -P cmake_install.cmake
.PHONY : install
# Special rule for the target install
install/fast: preinstall/fast
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..."
/usr/bin/cmake -P cmake_install.cmake
.PHONY : install/fast
# The main all target
all: cmake_check_build_system
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(CMAKE_COMMAND) -E cmake_progress_start /media/psf/Home/dev/flucoma-sc/linuxbuild/CMakeFiles /media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidAmpGate/CMakeFiles/progress.marks
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(MAKE) -f CMakeFiles/Makefile2 src/FluidAmpGate/all
$(CMAKE_COMMAND) -E cmake_progress_start /media/psf/Home/dev/flucoma-sc/linuxbuild/CMakeFiles 0
.PHONY : all
# The main clean target
clean:
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(MAKE) -f CMakeFiles/Makefile2 src/FluidAmpGate/clean
.PHONY : clean
# The main clean target
clean/fast: clean
.PHONY : clean/fast
# Prepare targets for installation.
preinstall: all
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(MAKE) -f CMakeFiles/Makefile2 src/FluidAmpGate/preinstall
.PHONY : preinstall
# Prepare targets for installation.
preinstall/fast:
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(MAKE) -f CMakeFiles/Makefile2 src/FluidAmpGate/preinstall
.PHONY : preinstall/fast
# clear depends
depend:
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(CMAKE_COMMAND) -P /media/psf/Home/dev/flucoma-sc/linuxbuild/CMakeFiles/VerifyGlobs.cmake
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
.PHONY : depend
# Convenience name for target.
src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/rule:
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(MAKE) -f CMakeFiles/Makefile2 src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/rule
.PHONY : src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/rule
# Convenience name for target.
FluidAmpGate: src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/rule
.PHONY : FluidAmpGate
# fast build rule for target.
FluidAmpGate/fast:
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(MAKE) -f src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/build.make src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/build
.PHONY : FluidAmpGate/fast
FluidAmpGate.o: FluidAmpGate.cpp.o
.PHONY : FluidAmpGate.o
# target to build an object file
FluidAmpGate.cpp.o:
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(MAKE) -f src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/build.make src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.o
.PHONY : FluidAmpGate.cpp.o
FluidAmpGate.i: FluidAmpGate.cpp.i
.PHONY : FluidAmpGate.i
# target to preprocess a source file
FluidAmpGate.cpp.i:
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(MAKE) -f src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/build.make src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.i
.PHONY : FluidAmpGate.cpp.i
FluidAmpGate.s: FluidAmpGate.cpp.s
.PHONY : FluidAmpGate.s
# target to generate assembly for a file
FluidAmpGate.cpp.s:
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(MAKE) -f src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/build.make src/FluidAmpGate/CMakeFiles/FluidAmpGate.dir/FluidAmpGate.cpp.s
.PHONY : FluidAmpGate.cpp.s
# Help Target
help:
@echo "The following are some of the valid targets for this Makefile:"
@echo "... all (the default if no target is provided)"
@echo "... clean"
@echo "... depend"
@echo "... edit_cache"
@echo "... install"
@echo "... install/local"
@echo "... install/strip"
@echo "... list_install_components"
@echo "... rebuild_cache"
@echo "... FluidAmpGate"
@echo "... FluidAmpGate.o"
@echo "... FluidAmpGate.i"
@echo "... FluidAmpGate.s"
.PHONY : help
#=============================================================================
# Special targets to cleanup operation of make.
# Special rule to run CMake to check the build system integrity.
# No rule that depends on this can have commands that come from listfiles
# because they might be regenerated.
cmake_check_build_system:
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(CMAKE_COMMAND) -P /media/psf/Home/dev/flucoma-sc/linuxbuild/CMakeFiles/VerifyGlobs.cmake
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
.PHONY : cmake_check_build_system

@ -1,39 +0,0 @@
# Install script for directory: /media/psf/Home/dev/flucoma-sc/src/FluidAmpGate
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/media/psf/Home/dev/flucoma-sc/install")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "Release")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Install shared libraries without execute permission?
if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE)
set(CMAKE_INSTALL_SO_NO_EXE "1")
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "FALSE")
endif()

@ -1,16 +0,0 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.17
# Relative path conversion top directories.
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/media/psf/Home/dev/flucoma-sc")
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/media/psf/Home/dev/flucoma-sc/linuxbuild")
# Force unix paths in dependencies.
set(CMAKE_FORCE_UNIX_PATHS 1)
# The C and CXX include file regular expressions for this directory.
set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$")
set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$")
set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN})
set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN})

@ -1,39 +0,0 @@
# The set of languages for which implicit dependencies are needed:
set(CMAKE_DEPENDS_LANGUAGES
"CXX"
)
# The set of files for implicit dependencies of each language:
set(CMAKE_DEPENDS_CHECK_CXX
"/media/psf/Home/dev/flucoma-sc/src/FluidAmpSlice/FluidAmpSlice.cpp" "/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o"
)
set(CMAKE_CXX_COMPILER_ID "GNU")
# Preprocessor definitions for this target.
set(CMAKE_TARGET_DEFINITIONS_CXX
"EIGEN_MPL2_ONLY=1"
"FluidAmpSlice_EXPORTS"
)
# The include file search paths:
set(CMAKE_CXX_TARGET_INCLUDE_PATH
"../src/FluidAmpSlice"
"/home/owen/mac/dev/flucoma-core/script"
"/home/owen/mac/dev/fluid_manipulation/include"
"/home/owen/mac/dev/fluid_manipulation/thirdparty"
"/home/owen/mac/dev/flucoma-core/include"
"../include"
"/home/owen/mac/dev/supercollider/include/plugin_interface"
"/home/owen/mac/dev/supercollider/include/common"
"/home/owen/mac/dev/supercollider/common"
"/home/owen/mac/dev/supercollider/external_libraries/boost"
"/home/owen/mac/dev/eigen"
"/home/owen/mac/dev/HISSTools_Library"
)
# Targets to which this target links.
set(CMAKE_TARGET_LINKED_INFO_FILES
"/media/psf/Home/dev/flucoma-sc/linuxbuild/_deps/flucoma-core-build/CMakeFiles/HISSTools_FFT.dir/DependInfo.cmake"
)
# Fortran module output directory.
set(CMAKE_Fortran_TARGET_MODULE_DIR "")

@ -1,116 +0,0 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.17
# Delete rule output on recipe failure.
.DELETE_ON_ERROR:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Disable VCS-based implicit rules.
% : %,v
# Disable VCS-based implicit rules.
% : RCS/%
# Disable VCS-based implicit rules.
% : RCS/%,v
# Disable VCS-based implicit rules.
% : SCCS/s.%
# Disable VCS-based implicit rules.
% : s.%
.SUFFIXES: .hpux_make_needs_suffix_list
# Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
# The shell in which to execute make rules.
SHELL = /bin/sh
# The CMake executable.
CMAKE_COMMAND = /usr/bin/cmake
# The command to remove a file.
RM = /usr/bin/cmake -E rm -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /media/psf/Home/dev/flucoma-sc
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /media/psf/Home/dev/flucoma-sc/linuxbuild
# Include any dependencies generated for this target.
include src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/depend.make
# Include the progress variables for this target.
include src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/progress.make
# Include the compile flags for this target's objects.
include src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/flags.make
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/flags.make
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: ../src/FluidAmpSlice/FluidAmpSlice.cpp
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/media/psf/Home/dev/flucoma-sc/linuxbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o"
cd /media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidAmpSlice && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o -c /media/psf/Home/dev/flucoma-sc/src/FluidAmpSlice/FluidAmpSlice.cpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.i"
cd /media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidAmpSlice && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /media/psf/Home/dev/flucoma-sc/src/FluidAmpSlice/FluidAmpSlice.cpp > CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.i
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.s"
cd /media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidAmpSlice && /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /media/psf/Home/dev/flucoma-sc/src/FluidAmpSlice/FluidAmpSlice.cpp -o CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.s
# Object files for target FluidAmpSlice
FluidAmpSlice_OBJECTS = \
"CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o"
# External object files for target FluidAmpSlice
FluidAmpSlice_EXTERNAL_OBJECTS =
../release-packaging/plugins/FluidAmpSlice.so: src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o
../release-packaging/plugins/FluidAmpSlice.so: src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/build.make
../release-packaging/plugins/FluidAmpSlice.so: _deps/flucoma-core-build/libHISSTools_FFT.a
../release-packaging/plugins/FluidAmpSlice.so: src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/link.txt
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/media/psf/Home/dev/flucoma-sc/linuxbuild/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX shared module ../../../release-packaging/plugins/FluidAmpSlice.so"
cd /media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidAmpSlice && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/FluidAmpSlice.dir/link.txt --verbose=$(VERBOSE)
# Rule to build all files generated by this target.
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/build: ../release-packaging/plugins/FluidAmpSlice.so
.PHONY : src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/build
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/clean:
cd /media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidAmpSlice && $(CMAKE_COMMAND) -P CMakeFiles/FluidAmpSlice.dir/cmake_clean.cmake
.PHONY : src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/clean
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/depend:
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /media/psf/Home/dev/flucoma-sc /media/psf/Home/dev/flucoma-sc/src/FluidAmpSlice /media/psf/Home/dev/flucoma-sc/linuxbuild /media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidAmpSlice /media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/DependInfo.cmake --color=$(COLOR)
.PHONY : src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/depend

@ -1,10 +0,0 @@
file(REMOVE_RECURSE
"../../../release-packaging/plugins/FluidAmpSlice.pdb"
"../../../release-packaging/plugins/FluidAmpSlice.so"
"CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o"
)
# Per-language clean rules from dependency scanning.
foreach(lang CXX)
include(CMakeFiles/FluidAmpSlice.dir/cmake_clean_${lang}.cmake OPTIONAL)
endforeach()

@ -1,298 +0,0 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.17
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o
../include/FluidSCWrapper.hpp
../include/SCBufferAdaptor.hpp
/home/owen/mac/dev/HISSTools_Library/HISSTools_FFT/HISSTools_FFT.h
/home/owen/mac/dev/eigen/Eigen/Core
/home/owen/mac/dev/eigen/Eigen/src/Core/Array.h
/home/owen/mac/dev/eigen/Eigen/src/Core/ArrayBase.h
/home/owen/mac/dev/eigen/Eigen/src/Core/ArrayWrapper.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Assign.h
/home/owen/mac/dev/eigen/Eigen/src/Core/AssignEvaluator.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Assign_MKL.h
/home/owen/mac/dev/eigen/Eigen/src/Core/BandMatrix.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Block.h
/home/owen/mac/dev/eigen/Eigen/src/Core/BooleanRedux.h
/home/owen/mac/dev/eigen/Eigen/src/Core/CommaInitializer.h
/home/owen/mac/dev/eigen/Eigen/src/Core/ConditionEstimator.h
/home/owen/mac/dev/eigen/Eigen/src/Core/CoreEvaluators.h
/home/owen/mac/dev/eigen/Eigen/src/Core/CoreIterators.h
/home/owen/mac/dev/eigen/Eigen/src/Core/CwiseBinaryOp.h
/home/owen/mac/dev/eigen/Eigen/src/Core/CwiseNullaryOp.h
/home/owen/mac/dev/eigen/Eigen/src/Core/CwiseTernaryOp.h
/home/owen/mac/dev/eigen/Eigen/src/Core/CwiseUnaryOp.h
/home/owen/mac/dev/eigen/Eigen/src/Core/CwiseUnaryView.h
/home/owen/mac/dev/eigen/Eigen/src/Core/DenseBase.h
/home/owen/mac/dev/eigen/Eigen/src/Core/DenseCoeffsBase.h
/home/owen/mac/dev/eigen/Eigen/src/Core/DenseStorage.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Diagonal.h
/home/owen/mac/dev/eigen/Eigen/src/Core/DiagonalMatrix.h
/home/owen/mac/dev/eigen/Eigen/src/Core/DiagonalProduct.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Dot.h
/home/owen/mac/dev/eigen/Eigen/src/Core/EigenBase.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Fuzzy.h
/home/owen/mac/dev/eigen/Eigen/src/Core/GeneralProduct.h
/home/owen/mac/dev/eigen/Eigen/src/Core/GenericPacketMath.h
/home/owen/mac/dev/eigen/Eigen/src/Core/GlobalFunctions.h
/home/owen/mac/dev/eigen/Eigen/src/Core/IO.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Inverse.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Map.h
/home/owen/mac/dev/eigen/Eigen/src/Core/MapBase.h
/home/owen/mac/dev/eigen/Eigen/src/Core/MathFunctions.h
/home/owen/mac/dev/eigen/Eigen/src/Core/MathFunctionsImpl.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Matrix.h
/home/owen/mac/dev/eigen/Eigen/src/Core/MatrixBase.h
/home/owen/mac/dev/eigen/Eigen/src/Core/NestByValue.h
/home/owen/mac/dev/eigen/Eigen/src/Core/NoAlias.h
/home/owen/mac/dev/eigen/Eigen/src/Core/NumTraits.h
/home/owen/mac/dev/eigen/Eigen/src/Core/PermutationMatrix.h
/home/owen/mac/dev/eigen/Eigen/src/Core/PlainObjectBase.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Product.h
/home/owen/mac/dev/eigen/Eigen/src/Core/ProductEvaluators.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Random.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Redux.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Ref.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Replicate.h
/home/owen/mac/dev/eigen/Eigen/src/Core/ReturnByValue.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Reverse.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Select.h
/home/owen/mac/dev/eigen/Eigen/src/Core/SelfAdjointView.h
/home/owen/mac/dev/eigen/Eigen/src/Core/SelfCwiseBinaryOp.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Solve.h
/home/owen/mac/dev/eigen/Eigen/src/Core/SolveTriangular.h
/home/owen/mac/dev/eigen/Eigen/src/Core/SolverBase.h
/home/owen/mac/dev/eigen/Eigen/src/Core/StableNorm.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Stride.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Swap.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Transpose.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Transpositions.h
/home/owen/mac/dev/eigen/Eigen/src/Core/TriangularMatrix.h
/home/owen/mac/dev/eigen/Eigen/src/Core/VectorBlock.h
/home/owen/mac/dev/eigen/Eigen/src/Core/VectorwiseOp.h
/home/owen/mac/dev/eigen/Eigen/src/Core/Visitor.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/AVX/Complex.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/AVX/MathFunctions.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/AVX/PacketMath.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/AVX/TypeCasting.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/AVX512/MathFunctions.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/AVX512/PacketMath.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/AltiVec/Complex.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/AltiVec/MathFunctions.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/AltiVec/PacketMath.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/CUDA/Complex.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/CUDA/Half.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/CUDA/MathFunctions.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/CUDA/PacketMath.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/CUDA/PacketMathHalf.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/CUDA/TypeCasting.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/Default/ConjHelper.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/Default/Settings.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/NEON/Complex.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/NEON/MathFunctions.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/NEON/PacketMath.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/SSE/Complex.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/SSE/MathFunctions.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/SSE/PacketMath.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/SSE/TypeCasting.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/ZVector/Complex.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/ZVector/MathFunctions.h
/home/owen/mac/dev/eigen/Eigen/src/Core/arch/ZVector/PacketMath.h
/home/owen/mac/dev/eigen/Eigen/src/Core/functors/AssignmentFunctors.h
/home/owen/mac/dev/eigen/Eigen/src/Core/functors/BinaryFunctors.h
/home/owen/mac/dev/eigen/Eigen/src/Core/functors/NullaryFunctors.h
/home/owen/mac/dev/eigen/Eigen/src/Core/functors/StlFunctors.h
/home/owen/mac/dev/eigen/Eigen/src/Core/functors/TernaryFunctors.h
/home/owen/mac/dev/eigen/Eigen/src/Core/functors/UnaryFunctors.h
/home/owen/mac/dev/eigen/Eigen/src/Core/products/GeneralBlockPanelKernel.h
/home/owen/mac/dev/eigen/Eigen/src/Core/products/GeneralMatrixMatrix.h
/home/owen/mac/dev/eigen/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h
/home/owen/mac/dev/eigen/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h
/home/owen/mac/dev/eigen/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h
/home/owen/mac/dev/eigen/Eigen/src/Core/products/GeneralMatrixVector.h
/home/owen/mac/dev/eigen/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h
/home/owen/mac/dev/eigen/Eigen/src/Core/products/Parallelizer.h
/home/owen/mac/dev/eigen/Eigen/src/Core/products/SelfadjointMatrixMatrix.h
/home/owen/mac/dev/eigen/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h
/home/owen/mac/dev/eigen/Eigen/src/Core/products/SelfadjointMatrixVector.h
/home/owen/mac/dev/eigen/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h
/home/owen/mac/dev/eigen/Eigen/src/Core/products/SelfadjointProduct.h
/home/owen/mac/dev/eigen/Eigen/src/Core/products/SelfadjointRank2Update.h
/home/owen/mac/dev/eigen/Eigen/src/Core/products/TriangularMatrixMatrix.h
/home/owen/mac/dev/eigen/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h
/home/owen/mac/dev/eigen/Eigen/src/Core/products/TriangularMatrixVector.h
/home/owen/mac/dev/eigen/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h
/home/owen/mac/dev/eigen/Eigen/src/Core/products/TriangularSolverMatrix.h
/home/owen/mac/dev/eigen/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h
/home/owen/mac/dev/eigen/Eigen/src/Core/products/TriangularSolverVector.h
/home/owen/mac/dev/eigen/Eigen/src/Core/util/BlasUtil.h
/home/owen/mac/dev/eigen/Eigen/src/Core/util/Constants.h
/home/owen/mac/dev/eigen/Eigen/src/Core/util/DisableStupidWarnings.h
/home/owen/mac/dev/eigen/Eigen/src/Core/util/ForwardDeclarations.h
/home/owen/mac/dev/eigen/Eigen/src/Core/util/MKL_support.h
/home/owen/mac/dev/eigen/Eigen/src/Core/util/Macros.h
/home/owen/mac/dev/eigen/Eigen/src/Core/util/Memory.h
/home/owen/mac/dev/eigen/Eigen/src/Core/util/Meta.h
/home/owen/mac/dev/eigen/Eigen/src/Core/util/ReenableStupidWarnings.h
/home/owen/mac/dev/eigen/Eigen/src/Core/util/StaticAssert.h
/home/owen/mac/dev/eigen/Eigen/src/Core/util/XprHelper.h
/home/owen/mac/dev/eigen/Eigen/src/misc/blas.h
/home/owen/mac/dev/eigen/Eigen/src/plugins/ArrayCwiseBinaryOps.h
/home/owen/mac/dev/eigen/Eigen/src/plugins/ArrayCwiseUnaryOps.h
/home/owen/mac/dev/eigen/Eigen/src/plugins/BlockMethods.h
/home/owen/mac/dev/eigen/Eigen/src/plugins/CommonCwiseBinaryOps.h
/home/owen/mac/dev/eigen/Eigen/src/plugins/CommonCwiseUnaryOps.h
/home/owen/mac/dev/eigen/Eigen/src/plugins/MatrixCwiseBinaryOps.h
/home/owen/mac/dev/eigen/Eigen/src/plugins/MatrixCwiseUnaryOps.h
/home/owen/mac/dev/flucoma-core/include/algorithms/public/EnvelopeSegmentation.hpp
/home/owen/mac/dev/flucoma-core/include/algorithms/public/STFT.hpp
/home/owen/mac/dev/flucoma-core/include/algorithms/public/WindowFuncs.hpp
/home/owen/mac/dev/flucoma-core/include/algorithms/util/AlgorithmUtils.hpp
/home/owen/mac/dev/flucoma-core/include/algorithms/util/ButterworthHPFilter.hpp
/home/owen/mac/dev/flucoma-core/include/algorithms/util/FFT.hpp
/home/owen/mac/dev/flucoma-core/include/algorithms/util/FluidEigenMappings.hpp
/home/owen/mac/dev/flucoma-core/include/algorithms/util/SlideUDFilter.hpp
/home/owen/mac/dev/flucoma-core/include/clients/common/AudioClient.hpp
/home/owen/mac/dev/flucoma-core/include/clients/common/BufferAdaptor.hpp
/home/owen/mac/dev/flucoma-core/include/clients/common/BufferedProcess.hpp
/home/owen/mac/dev/flucoma-core/include/clients/common/FluidBaseClient.hpp
/home/owen/mac/dev/flucoma-core/include/clients/common/FluidContext.hpp
/home/owen/mac/dev/flucoma-core/include/clients/common/FluidNRTClientWrapper.hpp
/home/owen/mac/dev/flucoma-core/include/clients/common/FluidSink.hpp
/home/owen/mac/dev/flucoma-core/include/clients/common/FluidSource.hpp
/home/owen/mac/dev/flucoma-core/include/clients/common/FluidTask.hpp
/home/owen/mac/dev/flucoma-core/include/clients/common/MemoryBufferAdaptor.hpp
/home/owen/mac/dev/flucoma-core/include/clients/common/MessageSet.hpp
/home/owen/mac/dev/flucoma-core/include/clients/common/OfflineClient.hpp
/home/owen/mac/dev/flucoma-core/include/clients/common/ParameterConstraints.hpp
/home/owen/mac/dev/flucoma-core/include/clients/common/ParameterSet.hpp
/home/owen/mac/dev/flucoma-core/include/clients/common/ParameterTrackChanges.hpp
/home/owen/mac/dev/flucoma-core/include/clients/common/ParameterTypes.hpp
/home/owen/mac/dev/flucoma-core/include/clients/common/Result.hpp
/home/owen/mac/dev/flucoma-core/include/clients/common/SpikesToTimes.hpp
/home/owen/mac/dev/flucoma-core/include/clients/common/TupleUtilities.hpp
/home/owen/mac/dev/flucoma-core/include/clients/rt/AmpSliceClient.hpp
/home/owen/mac/dev/flucoma-core/include/data/FluidIndex.hpp
/home/owen/mac/dev/flucoma-core/include/data/FluidMeta.hpp
/home/owen/mac/dev/flucoma-core/include/data/FluidTensor.hpp
/home/owen/mac/dev/flucoma-core/include/data/FluidTensor_Support.hpp
/home/owen/mac/dev/flucoma-core/include/data/TensorTypes.hpp
/home/owen/mac/dev/flucoma-core/script/FluidVersion.hpp
/home/owen/mac/dev/fluid_manipulation/include/clients/common/SharedClientUtils.hpp
/home/owen/mac/dev/fluid_manipulation/include/clients/nrt/FluidSharedInstanceAdaptor.hpp
/home/owen/mac/dev/supercollider/common/SC_Errors.h
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/align.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/aligned_alloc.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/alignment_of.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/alignment_of_forward.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/align.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/align_cxx11.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/aligned_alloc.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/aligned_alloc_android.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/aligned_alloc_macos.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/aligned_alloc_msvc.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/aligned_alloc_posix.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/aligned_alloc_sunos.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/alignment_of.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/alignment_of_clang.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/alignment_of_codegear.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/alignment_of_cxx11.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/alignment_of_gcc.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/alignment_of_msvc.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/element_type.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/integral_constant.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/is_alignment.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/min_size.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/assert.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/borland.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/clang.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/codegear.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/comeau.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/common_edg.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/compaq_cxx.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/cray.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/digitalmars.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/gcc.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/gcc_xml.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/greenhills.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/hp_acc.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/intel.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/kai.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/metrowerks.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/mpw.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/nvcc.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/pathscale.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/pgi.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/sgi_mipspro.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/sunpro_cc.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/vacpp.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/visualc.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/xlcpp.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/xlcpp_zos.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/detail/posix_features.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/detail/select_compiler_config.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/detail/select_platform_config.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/detail/select_stdlib_config.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/detail/suffix.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/no_tr1/utility.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/aix.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/amigaos.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/beos.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/bsd.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/cray.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/cygwin.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/hpux.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/irix.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/linux.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/macos.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/qnxnto.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/solaris.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/symbian.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/vms.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/vxworks.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/win32.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/zos.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/stdlib/dinkumware.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/stdlib/libcomo.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/stdlib/libcpp.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/stdlib/libstdcpp3.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/stdlib/modena.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/stdlib/msl.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/stdlib/roguewave.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/stdlib/sgi.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/stdlib/stlport.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/stdlib/vacpp.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/stdlib/xlcpp_zos.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/user.hpp
/home/owen/mac/dev/supercollider/external_libraries/boost/boost/current_function.hpp
/home/owen/mac/dev/supercollider/include/common/SC_Alloca.h
/home/owen/mac/dev/supercollider/include/common/SC_BoundsMacros.h
/home/owen/mac/dev/supercollider/include/common/SC_Endian.h
/home/owen/mac/dev/supercollider/include/common/SC_Export.h
/home/owen/mac/dev/supercollider/include/common/SC_Types.h
/home/owen/mac/dev/supercollider/include/common/SC_fftlib.h
/home/owen/mac/dev/supercollider/include/common/clz.h
/home/owen/mac/dev/supercollider/include/common/function_attributes.h
/home/owen/mac/dev/supercollider/include/plugin_interface/Hash.h
/home/owen/mac/dev/supercollider/include/plugin_interface/SC_BufGen.h
/home/owen/mac/dev/supercollider/include/plugin_interface/SC_Constants.h
/home/owen/mac/dev/supercollider/include/plugin_interface/SC_DemandUnit.h
/home/owen/mac/dev/supercollider/include/plugin_interface/SC_FifoMsg.h
/home/owen/mac/dev/supercollider/include/plugin_interface/SC_Graph.h
/home/owen/mac/dev/supercollider/include/plugin_interface/SC_InlineBinaryOp.h
/home/owen/mac/dev/supercollider/include/plugin_interface/SC_InlineUnaryOp.h
/home/owen/mac/dev/supercollider/include/plugin_interface/SC_InterfaceTable.h
/home/owen/mac/dev/supercollider/include/plugin_interface/SC_Node.h
/home/owen/mac/dev/supercollider/include/plugin_interface/SC_PlugIn.h
/home/owen/mac/dev/supercollider/include/plugin_interface/SC_PlugIn.hpp
/home/owen/mac/dev/supercollider/include/plugin_interface/SC_RGen.h
/home/owen/mac/dev/supercollider/include/plugin_interface/SC_Rate.h
/home/owen/mac/dev/supercollider/include/plugin_interface/SC_SndBuf.h
/home/owen/mac/dev/supercollider/include/plugin_interface/SC_Unit.h
/home/owen/mac/dev/supercollider/include/plugin_interface/SC_Wire.h
/home/owen/mac/dev/supercollider/include/plugin_interface/SC_World.h
/home/owen/mac/dev/supercollider/include/plugin_interface/Unroll.h
/home/owen/mac/dev/supercollider/include/plugin_interface/sc_msg_iter.h
/media/psf/Home/dev/flucoma-sc/src/FluidAmpSlice/FluidAmpSlice.cpp

@ -1,298 +0,0 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.17
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: ../include/FluidSCWrapper.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: ../include/SCBufferAdaptor.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/HISSTools_Library/HISSTools_FFT/HISSTools_FFT.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/Core
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Array.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/ArrayBase.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/ArrayWrapper.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Assign.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/AssignEvaluator.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Assign_MKL.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/BandMatrix.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Block.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/BooleanRedux.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/CommaInitializer.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/ConditionEstimator.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/CoreEvaluators.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/CoreIterators.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/CwiseBinaryOp.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/CwiseNullaryOp.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/CwiseTernaryOp.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/CwiseUnaryOp.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/CwiseUnaryView.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/DenseBase.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/DenseCoeffsBase.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/DenseStorage.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Diagonal.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/DiagonalMatrix.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/DiagonalProduct.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Dot.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/EigenBase.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Fuzzy.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/GeneralProduct.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/GenericPacketMath.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/GlobalFunctions.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/IO.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Inverse.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Map.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/MapBase.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/MathFunctions.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/MathFunctionsImpl.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Matrix.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/MatrixBase.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/NestByValue.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/NoAlias.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/NumTraits.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/PermutationMatrix.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/PlainObjectBase.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Product.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/ProductEvaluators.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Random.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Redux.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Ref.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Replicate.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/ReturnByValue.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Reverse.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Select.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/SelfAdjointView.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/SelfCwiseBinaryOp.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Solve.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/SolveTriangular.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/SolverBase.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/StableNorm.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Stride.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Swap.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Transpose.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Transpositions.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/TriangularMatrix.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/VectorBlock.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/VectorwiseOp.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/Visitor.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/AVX/Complex.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/AVX/MathFunctions.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/AVX/PacketMath.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/AVX/TypeCasting.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/AVX512/MathFunctions.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/AVX512/PacketMath.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/AltiVec/Complex.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/AltiVec/MathFunctions.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/AltiVec/PacketMath.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/CUDA/Complex.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/CUDA/Half.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/CUDA/MathFunctions.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/CUDA/PacketMath.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/CUDA/PacketMathHalf.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/CUDA/TypeCasting.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/Default/ConjHelper.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/Default/Settings.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/NEON/Complex.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/NEON/MathFunctions.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/NEON/PacketMath.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/SSE/Complex.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/SSE/MathFunctions.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/SSE/PacketMath.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/SSE/TypeCasting.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/ZVector/Complex.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/ZVector/MathFunctions.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/arch/ZVector/PacketMath.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/functors/AssignmentFunctors.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/functors/BinaryFunctors.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/functors/NullaryFunctors.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/functors/StlFunctors.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/functors/TernaryFunctors.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/functors/UnaryFunctors.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/products/GeneralBlockPanelKernel.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/products/GeneralMatrixMatrix.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/products/GeneralMatrixVector.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/products/Parallelizer.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/products/SelfadjointMatrixMatrix.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/products/SelfadjointMatrixVector.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/products/SelfadjointProduct.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/products/SelfadjointRank2Update.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/products/TriangularMatrixMatrix.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/products/TriangularMatrixVector.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/products/TriangularSolverMatrix.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/products/TriangularSolverVector.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/util/BlasUtil.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/util/Constants.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/util/DisableStupidWarnings.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/util/ForwardDeclarations.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/util/MKL_support.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/util/Macros.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/util/Memory.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/util/Meta.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/util/ReenableStupidWarnings.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/util/StaticAssert.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/Core/util/XprHelper.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/misc/blas.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/plugins/ArrayCwiseBinaryOps.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/plugins/ArrayCwiseUnaryOps.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/plugins/BlockMethods.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/plugins/CommonCwiseBinaryOps.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/plugins/CommonCwiseUnaryOps.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/plugins/MatrixCwiseBinaryOps.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/eigen/Eigen/src/plugins/MatrixCwiseUnaryOps.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/flucoma-core/include/algorithms/public/EnvelopeSegmentation.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/flucoma-core/include/algorithms/public/STFT.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/flucoma-core/include/algorithms/public/WindowFuncs.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/flucoma-core/include/algorithms/util/AlgorithmUtils.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/flucoma-core/include/algorithms/util/ButterworthHPFilter.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/flucoma-core/include/algorithms/util/FFT.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/flucoma-core/include/algorithms/util/FluidEigenMappings.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/flucoma-core/include/algorithms/util/SlideUDFilter.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/flucoma-core/include/clients/common/AudioClient.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/flucoma-core/include/clients/common/BufferAdaptor.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/flucoma-core/include/clients/common/BufferedProcess.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/flucoma-core/include/clients/common/FluidBaseClient.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/flucoma-core/include/clients/common/FluidContext.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/flucoma-core/include/clients/common/FluidNRTClientWrapper.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/flucoma-core/include/clients/common/FluidSink.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/flucoma-core/include/clients/common/FluidSource.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/flucoma-core/include/clients/common/FluidTask.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/flucoma-core/include/clients/common/MemoryBufferAdaptor.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/flucoma-core/include/clients/common/MessageSet.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/flucoma-core/include/clients/common/OfflineClient.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/flucoma-core/include/clients/common/ParameterConstraints.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/flucoma-core/include/clients/common/ParameterSet.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/flucoma-core/include/clients/common/ParameterTrackChanges.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/flucoma-core/include/clients/common/ParameterTypes.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/flucoma-core/include/clients/common/Result.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/flucoma-core/include/clients/common/SpikesToTimes.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/flucoma-core/include/clients/common/TupleUtilities.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/flucoma-core/include/clients/rt/AmpSliceClient.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/flucoma-core/include/data/FluidIndex.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/flucoma-core/include/data/FluidMeta.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/flucoma-core/include/data/FluidTensor.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/flucoma-core/include/data/FluidTensor_Support.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/flucoma-core/include/data/TensorTypes.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/flucoma-core/script/FluidVersion.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/fluid_manipulation/include/clients/common/SharedClientUtils.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/fluid_manipulation/include/clients/nrt/FluidSharedInstanceAdaptor.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/common/SC_Errors.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/align.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/aligned_alloc.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/alignment_of.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/alignment_of_forward.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/align.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/align_cxx11.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/aligned_alloc.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/aligned_alloc_android.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/aligned_alloc_macos.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/aligned_alloc_msvc.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/aligned_alloc_posix.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/aligned_alloc_sunos.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/alignment_of.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/alignment_of_clang.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/alignment_of_codegear.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/alignment_of_cxx11.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/alignment_of_gcc.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/alignment_of_msvc.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/element_type.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/integral_constant.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/is_alignment.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/align/detail/min_size.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/assert.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/borland.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/clang.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/codegear.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/comeau.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/common_edg.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/compaq_cxx.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/cray.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/digitalmars.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/gcc.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/gcc_xml.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/greenhills.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/hp_acc.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/intel.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/kai.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/metrowerks.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/mpw.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/nvcc.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/pathscale.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/pgi.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/sgi_mipspro.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/sunpro_cc.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/vacpp.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/visualc.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/xlcpp.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/compiler/xlcpp_zos.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/detail/posix_features.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/detail/select_compiler_config.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/detail/select_platform_config.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/detail/select_stdlib_config.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/detail/suffix.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/no_tr1/utility.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/aix.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/amigaos.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/beos.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/bsd.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/cray.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/cygwin.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/hpux.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/irix.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/linux.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/macos.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/qnxnto.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/solaris.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/symbian.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/vms.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/vxworks.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/win32.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/platform/zos.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/stdlib/dinkumware.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/stdlib/libcomo.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/stdlib/libcpp.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/stdlib/libstdcpp3.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/stdlib/modena.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/stdlib/msl.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/stdlib/roguewave.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/stdlib/sgi.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/stdlib/stlport.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/stdlib/vacpp.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/stdlib/xlcpp_zos.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/config/user.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/external_libraries/boost/boost/current_function.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/include/common/SC_Alloca.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/include/common/SC_BoundsMacros.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/include/common/SC_Endian.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/include/common/SC_Export.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/include/common/SC_Types.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/include/common/SC_fftlib.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/include/common/clz.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/include/common/function_attributes.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/include/plugin_interface/Hash.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/include/plugin_interface/SC_BufGen.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/include/plugin_interface/SC_Constants.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/include/plugin_interface/SC_DemandUnit.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/include/plugin_interface/SC_FifoMsg.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/include/plugin_interface/SC_Graph.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/include/plugin_interface/SC_InlineBinaryOp.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/include/plugin_interface/SC_InlineUnaryOp.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/include/plugin_interface/SC_InterfaceTable.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/include/plugin_interface/SC_Node.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/include/plugin_interface/SC_PlugIn.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/include/plugin_interface/SC_PlugIn.hpp
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/include/plugin_interface/SC_RGen.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/include/plugin_interface/SC_Rate.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/include/plugin_interface/SC_SndBuf.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/include/plugin_interface/SC_Unit.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/include/plugin_interface/SC_Wire.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/include/plugin_interface/SC_World.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/include/plugin_interface/Unroll.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: /home/owen/mac/dev/supercollider/include/plugin_interface/sc_msg_iter.h
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o: ../src/FluidAmpSlice/FluidAmpSlice.cpp

@ -1,10 +0,0 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.17
# compile CXX with /usr/bin/c++
CXX_FLAGS = -O3 -DNDEBUG -fPIC -Wall -Wextra -Wpedantic -Wreturn-type -Wconversion -Wno-c++11-narrowing -mavx -fvisibility=hidden -fpermissive -fPIC -std=c++14
CXX_DEFINES = -DEIGEN_MPL2_ONLY=1 -DFluidAmpSlice_EXPORTS
CXX_INCLUDES = -I/media/psf/Home/dev/flucoma-sc/src/FluidAmpSlice -I/home/owen/mac/dev/flucoma-core/script -I/home/owen/mac/dev/fluid_manipulation/include -I/home/owen/mac/dev/fluid_manipulation/thirdparty -I/home/owen/mac/dev/flucoma-core/include -I/media/psf/Home/dev/flucoma-sc/include -isystem /home/owen/mac/dev/supercollider/include/plugin_interface -isystem /home/owen/mac/dev/supercollider/include/common -isystem /home/owen/mac/dev/supercollider/common -isystem /home/owen/mac/dev/supercollider/external_libraries/boost -isystem /home/owen/mac/dev/eigen -isystem /home/owen/mac/dev/HISSTools_Library

@ -1 +0,0 @@
/usr/bin/c++ -fPIC -O3 -DNDEBUG -shared -o ../../../release-packaging/plugins/FluidAmpSlice.so CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o ../../_deps/flucoma-core-build/libHISSTools_FFT.a

@ -1,249 +0,0 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.17
# Default target executed when no arguments are given to make.
default_target: all
.PHONY : default_target
# Allow only one "make -f Makefile2" at a time, but pass parallelism.
.NOTPARALLEL:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Disable VCS-based implicit rules.
% : %,v
# Disable VCS-based implicit rules.
% : RCS/%
# Disable VCS-based implicit rules.
% : RCS/%,v
# Disable VCS-based implicit rules.
% : SCCS/s.%
# Disable VCS-based implicit rules.
% : s.%
.SUFFIXES: .hpux_make_needs_suffix_list
# Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
# The shell in which to execute make rules.
SHELL = /bin/sh
# The CMake executable.
CMAKE_COMMAND = /usr/bin/cmake
# The command to remove a file.
RM = /usr/bin/cmake -E rm -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /media/psf/Home/dev/flucoma-sc
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /media/psf/Home/dev/flucoma-sc/linuxbuild
#=============================================================================
# Targets provided globally by CMake.
# Special rule for the target install/strip
install/strip: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..."
/usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
.PHONY : install/strip
# Special rule for the target install/strip
install/strip/fast: preinstall/fast
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..."
/usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
.PHONY : install/strip/fast
# Special rule for the target edit_cache
edit_cache:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake cache editor..."
/usr/bin/ccmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
.PHONY : edit_cache
# Special rule for the target edit_cache
edit_cache/fast: edit_cache
.PHONY : edit_cache/fast
# Special rule for the target install
install: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..."
/usr/bin/cmake -P cmake_install.cmake
.PHONY : install
# Special rule for the target install
install/fast: preinstall/fast
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..."
/usr/bin/cmake -P cmake_install.cmake
.PHONY : install/fast
# Special rule for the target rebuild_cache
rebuild_cache:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..."
/usr/bin/cmake --regenerate-during-build -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
.PHONY : rebuild_cache
# Special rule for the target rebuild_cache
rebuild_cache/fast: rebuild_cache
.PHONY : rebuild_cache/fast
# Special rule for the target list_install_components
list_install_components:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\""
.PHONY : list_install_components
# Special rule for the target list_install_components
list_install_components/fast: list_install_components
.PHONY : list_install_components/fast
# Special rule for the target install/local
install/local: preinstall
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..."
/usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
.PHONY : install/local
# Special rule for the target install/local
install/local/fast: preinstall/fast
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..."
/usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
.PHONY : install/local/fast
# The main all target
all: cmake_check_build_system
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(CMAKE_COMMAND) -E cmake_progress_start /media/psf/Home/dev/flucoma-sc/linuxbuild/CMakeFiles /media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidAmpSlice/CMakeFiles/progress.marks
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(MAKE) -f CMakeFiles/Makefile2 src/FluidAmpSlice/all
$(CMAKE_COMMAND) -E cmake_progress_start /media/psf/Home/dev/flucoma-sc/linuxbuild/CMakeFiles 0
.PHONY : all
# The main clean target
clean:
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(MAKE) -f CMakeFiles/Makefile2 src/FluidAmpSlice/clean
.PHONY : clean
# The main clean target
clean/fast: clean
.PHONY : clean/fast
# Prepare targets for installation.
preinstall: all
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(MAKE) -f CMakeFiles/Makefile2 src/FluidAmpSlice/preinstall
.PHONY : preinstall
# Prepare targets for installation.
preinstall/fast:
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(MAKE) -f CMakeFiles/Makefile2 src/FluidAmpSlice/preinstall
.PHONY : preinstall/fast
# clear depends
depend:
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(CMAKE_COMMAND) -P /media/psf/Home/dev/flucoma-sc/linuxbuild/CMakeFiles/VerifyGlobs.cmake
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
.PHONY : depend
# Convenience name for target.
src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/rule:
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(MAKE) -f CMakeFiles/Makefile2 src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/rule
.PHONY : src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/rule
# Convenience name for target.
FluidAmpSlice: src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/rule
.PHONY : FluidAmpSlice
# fast build rule for target.
FluidAmpSlice/fast:
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(MAKE) -f src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/build.make src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/build
.PHONY : FluidAmpSlice/fast
FluidAmpSlice.o: FluidAmpSlice.cpp.o
.PHONY : FluidAmpSlice.o
# target to build an object file
FluidAmpSlice.cpp.o:
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(MAKE) -f src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/build.make src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.o
.PHONY : FluidAmpSlice.cpp.o
FluidAmpSlice.i: FluidAmpSlice.cpp.i
.PHONY : FluidAmpSlice.i
# target to preprocess a source file
FluidAmpSlice.cpp.i:
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(MAKE) -f src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/build.make src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.i
.PHONY : FluidAmpSlice.cpp.i
FluidAmpSlice.s: FluidAmpSlice.cpp.s
.PHONY : FluidAmpSlice.s
# target to generate assembly for a file
FluidAmpSlice.cpp.s:
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(MAKE) -f src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/build.make src/FluidAmpSlice/CMakeFiles/FluidAmpSlice.dir/FluidAmpSlice.cpp.s
.PHONY : FluidAmpSlice.cpp.s
# Help Target
help:
@echo "The following are some of the valid targets for this Makefile:"
@echo "... all (the default if no target is provided)"
@echo "... clean"
@echo "... depend"
@echo "... edit_cache"
@echo "... install"
@echo "... install/local"
@echo "... install/strip"
@echo "... list_install_components"
@echo "... rebuild_cache"
@echo "... FluidAmpSlice"
@echo "... FluidAmpSlice.o"
@echo "... FluidAmpSlice.i"
@echo "... FluidAmpSlice.s"
.PHONY : help
#=============================================================================
# Special targets to cleanup operation of make.
# Special rule to run CMake to check the build system integrity.
# No rule that depends on this can have commands that come from listfiles
# because they might be regenerated.
cmake_check_build_system:
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(CMAKE_COMMAND) -P /media/psf/Home/dev/flucoma-sc/linuxbuild/CMakeFiles/VerifyGlobs.cmake
cd /media/psf/Home/dev/flucoma-sc/linuxbuild && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
.PHONY : cmake_check_build_system

@ -1,39 +0,0 @@
# Install script for directory: /media/psf/Home/dev/flucoma-sc/src/FluidAmpSlice
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/media/psf/Home/dev/flucoma-sc/install")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "Release")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Install shared libraries without execute permission?
if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE)
set(CMAKE_INSTALL_SO_NO_EXE "1")
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "FALSE")
endif()

@ -1,16 +0,0 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.17
# Relative path conversion top directories.
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/media/psf/Home/dev/flucoma-sc")
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/media/psf/Home/dev/flucoma-sc/linuxbuild")
# Force unix paths in dependencies.
set(CMAKE_FORCE_UNIX_PATHS 1)
# The C and CXX include file regular expressions for this directory.
set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$")
set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$")
set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN})
set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN})

@ -1,39 +0,0 @@
# The set of languages for which implicit dependencies are needed:
set(CMAKE_DEPENDS_LANGUAGES
"CXX"
)
# The set of files for implicit dependencies of each language:
set(CMAKE_DEPENDS_CHECK_CXX
"/media/psf/Home/dev/flucoma-sc/src/FluidBufAmpGate/FluidBufAmpGate.cpp" "/media/psf/Home/dev/flucoma-sc/linuxbuild/src/FluidBufAmpGate/CMakeFiles/FluidBufAmpGate.dir/FluidBufAmpGate.cpp.o"
)
set(CMAKE_CXX_COMPILER_ID "GNU")
# Preprocessor definitions for this target.
set(CMAKE_TARGET_DEFINITIONS_CXX
"EIGEN_MPL2_ONLY=1"
"FluidBufAmpGate_EXPORTS"
)
# The include file search paths:
set(CMAKE_CXX_TARGET_INCLUDE_PATH
"../src/FluidBufAmpGate"
"/home/owen/mac/dev/flucoma-core/script"
"/home/owen/mac/dev/fluid_manipulation/include"
"/home/owen/mac/dev/fluid_manipulation/thirdparty"
"/home/owen/mac/dev/flucoma-core/include"
"../include"
"/home/owen/mac/dev/supercollider/include/plugin_interface"
"/home/owen/mac/dev/supercollider/include/common"
"/home/owen/mac/dev/supercollider/common"
"/home/owen/mac/dev/supercollider/external_libraries/boost"
"/home/owen/mac/dev/eigen"
"/home/owen/mac/dev/HISSTools_Library"
)
# Targets to which this target links.
set(CMAKE_TARGET_LINKED_INFO_FILES
"/media/psf/Home/dev/flucoma-sc/linuxbuild/_deps/flucoma-core-build/CMakeFiles/HISSTools_FFT.dir/DependInfo.cmake"
)
# Fortran module output directory.
set(CMAKE_Fortran_TARGET_MODULE_DIR "")

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save