You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
715 B
23 lines
715 B
# //===----------------------------------------------------------------------===//
|
|
# //
|
|
# // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
# // See https://llvm.org/LICENSE.txt for details.
|
|
# // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
# //
|
|
# //===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
if(LIBOMP_OMPT_SUPPORT)
|
|
include_directories(${LIBOMP_INCLUDE_DIR})
|
|
|
|
add_library(archer SHARED ompt-tsan.cpp)
|
|
add_library(archer_static STATIC ompt-tsan.cpp)
|
|
|
|
install(TARGETS archer archer_static
|
|
LIBRARY DESTINATION ${OPENMP_INSTALL_LIBDIR}
|
|
ARCHIVE DESTINATION ${OPENMP_INSTALL_LIBDIR})
|
|
|
|
add_subdirectory(tests)
|
|
endif()
|