mirror of
https://github.com/nsacyber/HIRS.git
synced 2024-12-19 04:58:00 +00:00
14 lines
417 B
Plaintext
14 lines
417 B
Plaintext
|
cmake_minimum_required(VERSION 2.8.12)
|
||
|
|
||
|
project(cpplint-download NONE)
|
||
|
|
||
|
include(ExternalProject)
|
||
|
ExternalProject_Add(cpplint
|
||
|
GIT_REPOSITORY https://github.com/google/styleguide
|
||
|
GIT_TAG gh-pages
|
||
|
SOURCE_DIR "${CMAKE_BINARY_DIR}/lib/cpplint-download"
|
||
|
CONFIGURE_COMMAND ""
|
||
|
BUILD_COMMAND ""
|
||
|
INSTALL_COMMAND ""
|
||
|
TEST_COMMAND ""
|
||
|
)
|