forked from pytorch/FBGEMM
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Back out "[FBGEMM][PR] switch from cmake downloads to git submodules"
Summary: Original commit changeset: 9a33573ba34b Reviewed By: jianyuh Differential Revision: D15320950 fbshipit-source-id: f6501b57346cc5e82fa2198dcf6b60b26cd4f7c6
- Loading branch information
1 parent
c21a93d
commit b14f582
Showing
10 changed files
with
81 additions
and
21 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
cmake_minimum_required(VERSION 3.5 FATAL_ERROR) | ||
|
||
project(asmjit-download NONE) | ||
|
||
include(ExternalProject) | ||
|
||
ExternalProject_Add(asmjit | ||
GIT_REPOSITORY https://github.com/asmjit/asmjit | ||
GIT_TAG 673dcefaa048c5f5a2bf8b85daf8f7b9978d018a | ||
SOURCE_DIR "${FBGEMM_THIRDPARTY_DIR}/asmjit" | ||
BINARY_DIR "${FBGEMM_BINARY_DIR}/asmjit" | ||
CONFIGURE_COMMAND "" | ||
BUILD_COMMAND "" | ||
INSTALL_COMMAND "" | ||
TEST_COMMAND "" | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
cmake_minimum_required(VERSION 3.5 FATAL_ERROR) | ||
|
||
project(cpuinfo-download NONE) | ||
|
||
include(ExternalProject) | ||
|
||
ExternalProject_Add(cpuinfo | ||
GIT_REPOSITORY https://github.com/pytorch/cpuinfo | ||
GIT_TAG master | ||
SOURCE_DIR "${FBGEMM_THIRDPARTY_DIR}/cpuinfo" | ||
BINARY_DIR "${FBGEMM_BINARY_DIR}/cpuinfo" | ||
CONFIGURE_COMMAND "" | ||
BUILD_COMMAND "" | ||
INSTALL_COMMAND "" | ||
TEST_COMMAND "" | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
cmake_minimum_required(VERSION 3.5 FATAL_ERROR) | ||
|
||
project(googletest-download NONE) | ||
|
||
include(ExternalProject) | ||
|
||
ExternalProject_Add(googletest | ||
GIT_REPOSITORY https://github.com/google/googletest | ||
GIT_TAG 0fc5466dbb9e623029b1ada539717d10bd45e99e | ||
SOURCE_DIR "${FBGEMM_THIRDPARTY_DIR}/googletest" | ||
BINARY_DIR "${FBGEMM_BINARY_DIR}/googletest" | ||
CONFIGURE_COMMAND "" | ||
BUILD_COMMAND "" | ||
INSTALL_COMMAND "" | ||
TEST_COMMAND "" | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.