Files
OpenCL-CTS/CMakeVendor.txt
Kevin Petit 50aaa40f33 cmake: don't set CL_INCLUDE_DIR in CMakeVendor.txt
This will always override anything the user provides. We could
turn it into a cache variable to avoid this but the default
value assumes the location of headers in a hypothetical driver
tree which probably doesn't work for anybody so just get rid of
it instead.

Also remove all references to OPENCL_DRIVER in the build system.
Any such integration doesn't really belong in the CTS's build
system and can triavialy be done with a wrapper project.

Signed-off-by: Kevin Petit <kevin.petit@arm.com>
2018-10-23 17:09:11 +00:00

15 lines
489 B
Plaintext

# Set the prefix and suffix for the generated executables
# For example, if you want the api executable to be test_conformance_api_12
# Set previx to "test_conformance_" and suffix to "_12"
set(CONFORMANCE_PREFIX "test_conformance_" )
set(CONFORMNACE_SUFFIX "" )
# We intentionally hardcode "_win32" to ensure backwards compatibility (to avoid breaking HAAVE)
if(ANDROID)
if(ARM64_V8A)
set(ARCH "64")
else(ARM64_V8A)
set(ARCH "32")
endif(ARM64_V8A)
endif (ANDROID)