remove the invalid proxy
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
# Download and unpack eigen at configure time
|
||||
message(STATUS "Getting Eigen...")
|
||||
message(STATUS "** NOTE ** If there's an issue connecting to GitHub, add a proxy to the download link in file flightlib/cmake/eigen_download.cmake.")
|
||||
|
||||
configure_file(
|
||||
cmake/eigen_download.cmake
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
# Download and unpack googletest at configure time
|
||||
message(STATUS "Getting gtests...")
|
||||
message(STATUS "** NOTE ** If there's an issue connecting to GitHub, add a proxy to the download link in file flightlib/cmake/gtest_download.cmake.")
|
||||
|
||||
configure_file(cmake/gtest_download.cmake ${PROJECT_SOURCE_DIR}/externals/googletest-download/CMakeLists.txt)
|
||||
execute_process(COMMAND ${CMAKE_COMMAND} -G "${CMAKE_GENERATOR}" .
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
# Download and unpack pybind11 at configure time
|
||||
message(STATUS "Getting Pybind11...")
|
||||
message(STATUS "** NOTE ** If there's an issue connecting to GitHub, add a proxy to the download link in file flightlib/cmake/pybind11_download.cmake.")
|
||||
|
||||
# set(PYBIND11_PYTHON_VERSION 3.6)
|
||||
set(PYBIND11_PYTHON_VERSION ${PYTHON_VERSION_STRING})
|
||||
|
||||
@@ -4,7 +4,7 @@ project(pybind11-download)
|
||||
|
||||
include(ExternalProject)
|
||||
ExternalProject_Add(pybind11
|
||||
GIT_REPOSITORY https://cf.ghproxy.cc/https://github.com/pybind/pybind11
|
||||
GIT_REPOSITORY https://github.com/pybind/pybind11
|
||||
GIT_TAG master
|
||||
SOURCE_DIR "${PROJECT_SOURCE_DIR}/externals/pybind11-src"
|
||||
BINARY_DIR "${PROJECT_SOURCE_DIR}/externals/pybind11-bin"
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
# Download and unpack eigen at configure time
|
||||
message(STATUS "Getting yaml-cpp...")
|
||||
message(STATUS "** NOTE ** If there's an issue connecting to GitHub, add a proxy to the download link in file flightlib/cmake/yaml_download.cmake.")
|
||||
|
||||
configure_file(
|
||||
cmake/yaml_download.cmake
|
||||
|
||||
@@ -4,7 +4,7 @@ project(yaml-download)
|
||||
|
||||
include(ExternalProject)
|
||||
ExternalProject_Add(yaml
|
||||
GIT_REPOSITORY https://cf.ghproxy.cc/https://github.com/jbeder/yaml-cpp
|
||||
GIT_REPOSITORY https://github.com/jbeder/yaml-cpp
|
||||
GIT_TAG master
|
||||
SOURCE_DIR "${PROJECT_SOURCE_DIR}/externals/yaml-src"
|
||||
BINARY_DIR "${PROJECT_SOURCE_DIR}/externals/yaml-bin"
|
||||
|
||||
Reference in New Issue
Block a user