Build CKW by default

Resolves: COMPMID-6845
Change-Id: Iffbaff3f282c853202852058d422f55ed9de84a2
Signed-off-by: Gunes Bayir <gunes.bayir@arm.com>
Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/11084
Reviewed-by: Jakub Sujak <jakub.sujak@arm.com>
Benchmark: Arm Jenkins <bsgcomp@arm.com>
Tested-by: Arm Jenkins <bsgcomp@arm.com>
diff --git a/SConstruct b/SConstruct
index bad85e5..6f498b5 100644
--- a/SConstruct
+++ b/SConstruct
@@ -227,6 +227,9 @@
     # Dynamic Fusion on GPU has a direct dependency on OpenCL and Compute Kernel Writer
     env['opencl'] = 1
 
+    # Build CKW by default
+    env["extra_cxx_flags"] += ' -DACL_INTERNAL_TEST_CKW_IN_DF'
+
 if env['opencl'] and env['embed_kernels'] and env['compress_kernels'] and env['os'] not in ['android']:
     print("Compressed kernels are supported only for android builds")
     Exit(1)