* Fix CMake install config to use dependencies * [CI] Test C API demo * Explicitly cast num_feature, to avoid warning in Linux
6 lines
211 B
CMake
6 lines
211 B
CMake
cmake_minimum_required(VERSION 3.13)
|
|
project(api-demo LANGUAGES C CXX VERSION 0.0.1)
|
|
find_package(xgboost REQUIRED)
|
|
add_executable(api-demo c-api-demo.c)
|
|
target_link_libraries(api-demo PRIVATE xgboost::xgboost)
|