https://github.com/apple/swift
Raw File
Tip revision: a476c2828ac7e0d3a761951f0363943ec9ff22ff authored by Vedant Kumar on 25 January 2016, 21:55:48 UTC
[Coverage] Fix function mapping record emission
Tip revision: a476c28
CMakeLists.txt
if(CMAKE_SYSTEM_NAME STREQUAL "Darwin")
  # Performance test harness only builds on Darwin.
  set(PERF_TESTSUITE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/PerfTestSuite" CACHE STRING "Path to swift performance testsuite repo.")
  if(EXISTS ${PERF_TESTSUITE_DIR}/CMakeLists.txt)
    add_subdirectory(${PERF_TESTSUITE_DIR})
  else()
    message(FATAL_ERROR "Can't find the Swift performance suite at ${PERF_TESTSUITE_DIR}/.")
  endif()
endif()

back to top