35 lines
1.1 KiB
Diff
35 lines
1.1 KiB
Diff
|
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
||
|
index becd2ad03c..7e3c8c99b1 100644
|
||
|
--- a/CMakeLists.txt
|
||
|
+++ b/CMakeLists.txt
|
||
|
@@ -27,7 +27,6 @@ cmake_policy(SET CMP0104 OLD)
|
||
|
|
||
|
include(cmake/archive.cmake)
|
||
|
include(cmake/common.cmake)
|
||
|
-include(cmake/conan.cmake)
|
||
|
include(cmake/cuda.cmake)
|
||
|
include(cmake/cython.cmake)
|
||
|
include(cmake/fbs.cmake)
|
||
|
@@ -37,21 +36,6 @@ include(cmake/recursive_library.cmake)
|
||
|
include(cmake/swig.cmake)
|
||
|
include(cmake/global_vars.cmake)
|
||
|
|
||
|
-if (CMAKE_CROSSCOMPILING)
|
||
|
- include(${CMAKE_BINARY_DIR}/conan_paths.cmake)
|
||
|
-else()
|
||
|
- conan_cmake_autodetect(settings)
|
||
|
- conan_cmake_install(
|
||
|
- PATH_OR_REFERENCE ${CMAKE_SOURCE_DIR}
|
||
|
- INSTALL_FOLDER ${CMAKE_BINARY_DIR}
|
||
|
- BUILD missing
|
||
|
- REMOTE conancenter
|
||
|
- SETTINGS ${settings}
|
||
|
- ENV "CONAN_CMAKE_GENERATOR=${CMAKE_GENERATOR}"
|
||
|
- CONF "tools.cmake.cmaketoolchain:generator=${CMAKE_GENERATOR}"
|
||
|
- )
|
||
|
-endif()
|
||
|
-
|
||
|
if (CMAKE_SYSTEM_NAME STREQUAL "Linux" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64" AND NOT HAVE_CUDA)
|
||
|
include(CMakeLists.linux-x86_64.txt)
|
||
|
elseif (CMAKE_SYSTEM_NAME STREQUAL "Linux" AND CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64" AND HAVE_CUDA)
|