* Move get transpose into cc. * Clean up headers in host device vector, remove thrust dependency. * Move span and host device vector into public. * Install c++ headers. * Short notes for c and c++. Co-Authored-By: Philip Hyunsu Cho <chohyu01@cs.washington.edu>
5 lines
154 B
CMake
5 lines
154 B
CMake
cmake_minimum_required(VERSION 3.3)
|
|
find_package(xgboost REQUIRED)
|
|
add_executable(api-demo c-api-demo.c)
|
|
target_link_libraries(api-demo xgboost::xgboost)
|