2015-05-06 04:02:52 +08:00
|
|
|
cmake_minimum_required(VERSION 2.8 FATAL_ERROR)
|
2016-02-05 15:00:13 +08:00
|
|
|
|
|
|
|
set(OPENMP_LLVM_TOOLS_DIR "" CACHE PATH "Path to LLVM tools for testing")
|
|
|
|
|
2016-12-21 17:04:08 +08:00
|
|
|
add_subdirectory(runtime)
|
2017-02-11 01:13:28 +08:00
|
|
|
|
2017-03-22 02:19:09 +08:00
|
|
|
# Currently libomptarget cannot be compiled on Windows or MacOS X.
|
|
|
|
# Since the device plugins are only supported on Linux anyway,
|
|
|
|
# there is no point in trying to compile libomptarget on other OSes.
|
|
|
|
if (NOT (WIN32 OR ${CMAKE_SYSTEM_NAME} MATCHES "Darwin"))
|
2017-02-11 01:13:28 +08:00
|
|
|
add_subdirectory(libomptarget)
|
|
|
|
endif()
|