aboutsummaryrefslogtreecommitdiff
path: root/SConscript
diff options
context:
space:
mode:
Diffstat (limited to 'SConscript')
-rw-r--r--SConscript8
1 files changed, 7 insertions, 1 deletions
diff --git a/SConscript b/SConscript
index c89abef81c..9894e30481 100644
--- a/SConscript
+++ b/SConscript
@@ -165,7 +165,6 @@ arm_compute_env.Append(CPPDEFINES = [('ARM_COMPUTE_VERSION_MAJOR', LIBRARY_VERSI
('ARM_COMPUTE_VERSION_MINOR', LIBRARY_VERSION_MINOR),
('ARM_COMPUTE_VERSION_PATCH', LIBRARY_VERSION_PATCH)])
-
# Don't allow undefined references in the libraries:
undefined_flag = '-Wl,-undefined,error' if 'macos' in arm_compute_env["os"] else '-Wl,--no-undefined'
arm_compute_env.Append(LINKFLAGS=[undefined_flag])
@@ -189,6 +188,10 @@ runtime_files = Glob('src/runtime/*.cpp')
runtime_files += Glob('src/runtime/CPP/ICPPSimpleFunction.cpp')
runtime_files += Glob('src/runtime/CPP/functions/*.cpp')
+runtime_files += Glob('src/c/*.cpp')
+runtime_files += Glob('src/common/*.cpp')
+runtime_files += Glob('src/cpu/*.cpp')
+
# CLHarrisCorners uses the Scheduler to run CPP kernels
runtime_files += Glob('src/runtime/CPP/SingleThreadScheduler.cpp')
@@ -220,6 +223,9 @@ if env['opencl']:
runtime_files += Glob('src/runtime/CL/mlgo/*.cpp')
runtime_files += Glob('src/runtime/CL/gemm_auto_heuristics/*.cpp')
+ runtime_files += Glob('src/gpu/cl/*.cpp')
+ runtime_files += Glob('src/c/cl/*.cpp')
+
graph_files += Glob('src/graph/backends/CL/*.cpp')