# This patch was imported from Debian: https://sources.debian.org/src/xgboost/1.5.1-1/debian/patches/cmake-dmlc-core.patch/ Index: xgboost/CMakeLists.txt =================================================================== --- xgboost.orig/CMakeLists.txt +++ xgboost/CMakeLists.txt @@ -164,7 +164,9 @@ endif (USE_NCCL) # dmlc-core msvc_use_static_runtime() -add_subdirectory(${xgboost_SOURCE_DIR}/dmlc-core) +add_library(dmlc SHARED IMPORTED) +find_library(DMLC_LIBRARY dmlc) +set_property(TARGET dmlc PROPERTY IMPORTED_LOCATION "${DMLC_LIBRARY}") if (MSVC) if (TARGET dmlc_unit_tests) @@ -222,7 +224,7 @@ set_target_properties(runxgboost PROPERT #-- End CLI for xgboost # Common setup for all targets -foreach(target xgboost objxgboost dmlc runxgboost) +foreach(target xgboost objxgboost runxgboost) xgboost_target_properties(${target}) xgboost_target_link_libraries(${target}) xgboost_target_defs(${target}) @@ -273,7 +275,7 @@ install(DIRECTORY ${xgboost_SOURCE_DIR}/ # # https://github.com/dmlc/xgboost/issues/6085 if (BUILD_STATIC_LIB) - set(INSTALL_TARGETS xgboost runxgboost objxgboost dmlc) + set(INSTALL_TARGETS xgboost runxgboost objxgboost) else (BUILD_STATIC_LIB) set(INSTALL_TARGETS xgboost runxgboost) endif (BUILD_STATIC_LIB) howmsg=1'>logtreecommitdiff
path: root/gnu/packages/openstack.scm
AgeCommit message (Collapse)Author
2023-09-08gnu: python-hacking: Update to 5.0.0.Efraim Flashner
* gnu/packages/openstack.scm (python-hacking): Update to 5.0.0. [propagated-inputs]: Remove python-flake8-3.8; add python-flake8. [native-inputs]: Remove python-dnspython, python-mock, and python-monotonic.
2022-11-19gnu: Remove obsolete variable.Marius Bakke
* gnu/packages/python-xyz.scm (python-packaging-next): Remove variable. * gnu/packages/openstack.scm (python-oslo.utils)[propagated-inputs]: Change from PYTHON-PACKAGING-NEXT to PYTHON-PACKAGING.