##// END OF EJS Templates
Creates DataSeriesUtils file that will contain methods for handling data holes...
Creates DataSeriesUtils file that will contain methods for handling data holes Renames DataSeriesUtils file in unit tests to avoid conflicts

File last commit:

r4:e36aaa65e079
r950:46d5fdb80dde
Show More
FindClangFormat.cmake
52 lines | 1.4 KiB | text/x-cmake | CMakeLexer
/ formatting / cmake / FindClangFormat.cmake
Ajout de clangformat
r4 # - try to find clang-format tool
#
# Cache Variables:
# CLANGFORMAT_ROOT_DIR
# CLANGFORMAT_EXECUTABLE
# CLANGFORMAT_USE_FILE
#
# Non-cache variables you might use in your CMakeLists.txt:
# CLANGFORMAT_FOUND
#
# Requires these CMake modules:
# FindPackageHandleStandardArgs (known included with CMake >=2.6.2)
file(TO_CMAKE_PATH "${CLANGFORMAT_ROOT_DIR}" CLANGFORMAT_ROOT_DIR)
set(CLANGFORMAT_ROOT_DIR
"${CLANGFORMAT_ROOT_DIR}"
CACHE
PATH
"Path to search for clang-format")
if(CLANGFORMAT_EXECUTABLE AND NOT EXISTS "${CLANGFORMAT_EXECUTABLE}")
set(CLANGFORMAT_EXECUTABLE "notfound" CACHE PATH FORCE "")
endif()
# If we have a custom path, look there first.
if(CLANGFORMAT_ROOT_DIR)
find_program(CLANGFORMAT_EXECUTABLE
NAMES
clang-format
PATHS
"${CLANGFORMAT_ROOT_DIR}"
PATH_SUFFIXES
bin
NO_DEFAULT_PATH)
endif()
find_program(CLANGFORMAT_EXECUTABLE NAMES clang-format)
# Find the use file for clang-format
GET_FILENAME_COMPONENT(CLANGFORMAT_MODULE_DIR ${CMAKE_CURRENT_LIST_FILE} PATH)
SET(CLANGFORMAT_USE_FILE "${CLANGFORMAT_MODULE_DIR}/use_clangformat.cmake")
SET(CLANGFORMAT_ALL ${CLANGFORMAT_EXECUTABLE} ${CLANGFORMAT_USE_FILE})
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(ClangFormat
DEFAULT_MSG
CLANGFORMAT_ALL
CLANGFORMAT_EXECUTABLE
CLANGFORMAT_USE_FILE)
mark_as_advanced(CLANGFORMAT_EXECUTABLE)