-
-
Notifications
You must be signed in to change notification settings - Fork 267
/
Copy pathcpplint.cmake
28 lines (22 loc) · 1.1 KB
/
cpplint.cmake
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
cmake_minimum_required(VERSION 3.28.6 FATAL_ERROR)
find_program(CPPLINT cpplint)
if(CPPLINT)
set(CPPLINT_COMMAND ${CPPLINT})
else()
get_filename_component(CPPLINT_PY_FILE "cpplint.py" ABSOLUTE BASE_DIR "${CMAKE_CURRENT_LIST_DIR}/../tools/")
if(NOT EXISTS ${CPPLINT_PY_FILE})
message(STATUS "Downloading cpplint python script from https://raw.githubusercontent.com/cpplint/cpplint/master/cpplint.py...")
file(DOWNLOAD "https://raw.githubusercontent.com/cpplint/cpplint/master/cpplint.py" ${CPPLINT_PY_FILE})
message(STATUS "Downloading cpplint python script - done")
endif()
message(STATUS "Using cpplint python script at ${CPPLINT_PY_FILE}")
set(CPPLINT_COMMAND python ${CPPLINT_PY_FILE})
endif()
execute_process(COMMAND ${CPPLINT_COMMAND}
"--linelength=120"
"--recursive"
"--filter=-build/include_subdir,-build/include_what_you_use,-build/c++11,-runtime/references"
"main.cpp"
"tutorials"
"utils"
WORKING_DIRECTORY "${CMAKE_CURRENT_LIST_DIR}/..")