mirror of
https://github.com/KhronosGroup/OpenCL-CTS.git
synced 2026-03-21 14:59:02 +00:00
This is 7-year old CMake code that never did anything because the function invocation is missing the PROPERTIES keyword. Adding the keyword results in build errors, so just drop the dead code since everything seems to be working without it anyway.
14 lines
360 B
CMake
14 lines
360 B
CMake
set(MODULE_NAME CONVERSIONS)
|
|
|
|
set (${MODULE_NAME}_SOURCES
|
|
Sleep.cpp test_conversions.cpp basic_test_conversions.cpp
|
|
)
|
|
|
|
if("${CLConform_TARGET_ARCH}" STREQUAL "ARM" OR "${CLConform_TARGET_ARCH}" STREQUAL "ARM64")
|
|
list(APPEND ${MODULE_NAME}_SOURCES fplib.cpp)
|
|
endif()
|
|
|
|
set_gnulike_module_compile_flags("-Wno-sign-compare")
|
|
|
|
include(../CMakeCommon.txt)
|