Sha256: c08b334b58a9a0064dc3173ca7ac7a87a0a8a5f2ab04779375e5591eec5c22c2

Contents?: true

Size: 795 Bytes

Versions: 4

Compression:

Stored size: 795 Bytes

Contents

PROJECT(dependency-downloader NONE)
CMAKE_MINIMUM_REQUIRED(VERSION 3.0)

INCLUDE(ExternalProject)

ExternalProject_Add(abseilcpp
    GIT_REPOSITORY https://github.com/abseil/abseil-cpp.git
    GIT_TAG master
    GIT_PROGRESS 1
    SOURCE_DIR "${CMAKE_CURRENT_BINARY_DIR}/libs/abseil-cpp-src"
    BINARY_DIR "${CMAKE_CURRENT_BINARY_DIR}/libs/abseil-cpp-build"
    CONFIGURE_COMMAND ""
    BUILD_COMMAND ""
    INSTALL_COMMAND ""
    TEST_COMMAND ""
)

ExternalProject_Add(googletest
    GIT_REPOSITORY https://github.com/google/googletest.git
    GIT_TAG master
    GIT_PROGRESS 1
    SOURCE_DIR "${CMAKE_CURRENT_BINARY_DIR}/libs/gtest-src"
    BINARY_DIR "${CMAKE_CURRENT_BINARY_DIR}/libs/gtest-build"
    CONFIGURE_COMMAND ""
    BUILD_COMMAND ""
    INSTALL_COMMAND ""
    TEST_COMMAND ""
)

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
google_robotstxt_parser-0.0.6 ext/robotstxt/robotstxt/CMakeLists.txt.in
google_robotstxt_parser-0.0.5 ext/robotstxt/robotstxt/CMakeLists.txt.in
google_robotstxt_parser-0.0.4 ext/robotstxt/robotstxt/CMakeLists.txt.in
google_robotstxt_parser-0.0.3 ext/robotstxt/robotstxt/CMakeLists.txt.in