1###################################################################################################### 2#Copyright (c) 2016 The Khronos Group Inc. All Rights Reserved. 3# 4#This code is protected by copyright laws and contains material proprietary to the Khronos Group, Inc. 5#This is UNPUBLISHED PROPRIETARY SOURCE CODE that may not be disclosed in whole or in part to 6#third parties, and may not be reproduced, republished, distributed, transmitted, displayed, 7#broadcast or otherwise exploited in any manner without the express prior written permission 8#of Khronos Group. The receipt or possession of this code does not convey any rights to reproduce, 9#disclose, or distribute its contents, or to manufacture, use, or sell anything that it may describe, 10#in whole or in part other than under the terms of the Khronos Adopters Agreement 11#or Khronos Conformance Test Source License Agreement as executed between Khronos and the recipient. 12###################################################################################################### 13 14set(MODULE_NAME SPIRV_NEW) 15set(CMAKE_CXX_STANDARD 11) 16 17file(GLOB SPIRV_NEW_SOURCES "*.cpp") 18 19set(TEST_HARNESS_SOURCES 20 ../../test_conformance/math_brute_force/reference_math.cpp 21 ../../test_conformance/math_brute_force/utility.cpp 22) 23 24set(${MODULE_NAME}_SOURCES ${SPIRV_NEW_SOURCES} ${TEST_HARNESS_SOURCES}) 25 26include(../CMakeCommon.txt) 27