Milestone 5: deliver embedded RDP sessions and lifecycle hardening
This commit is contained in:
19
third_party/FreeRDP/cmake/ClangFormat.cmake
vendored
Normal file
19
third_party/FreeRDP/cmake/ClangFormat.cmake
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
# get all project files
|
||||
file(
|
||||
GLOB_RECURSE
|
||||
ALL_SOURCE_FILES
|
||||
*.cpp
|
||||
*.c
|
||||
*.h
|
||||
*.m
|
||||
*.java
|
||||
)
|
||||
|
||||
include(ClangDetectTool)
|
||||
clang_detect_tool(CLANG_FORMAT clang-format "")
|
||||
|
||||
if(NOT CLANG_FORMAT)
|
||||
message(WARNING "clang-format not found in path! code format target not available.")
|
||||
else()
|
||||
add_custom_target(clangformat COMMAND ${CLANG_FORMAT} -style=file -i ${ALL_SOURCE_FILES})
|
||||
endif()
|
||||
Reference in New Issue
Block a user