diff --git a/OSBindings/SDL/SConstruct b/OSBindings/SDL/SConstruct index 0a8eb2537..4a7d227f8 100644 --- a/OSBindings/SDL/SConstruct +++ b/OSBindings/SDL/SConstruct @@ -142,5 +142,8 @@ env.Append(CCFLAGS = ['--std=c++17', '--std=c++1z', '-Wall', '-O2', '-DNDEBUG']) # Add additional libraries to link against. env.Append(LIBS = ['libz', 'pthread', 'GL']) +if env['PLATFORM'] == 'darwin': + env.Append(FRAMEWORKS = ['Accelerate']) + # Build target. env.Program(target = 'clksignal', source = SOURCES)