15 lines
462 B
CMake
15 lines
462 B
CMake
cmake_minimum_required(VERSION 3.18)
|
|
project(inference-demo LANGUAGES C VERSION 0.0.1)
|
|
find_package(xgboost REQUIRED)
|
|
|
|
# xgboost is built as static libraries, all cxx dependencies need to be linked into the
|
|
# executable.
|
|
if(XGBOOST_BUILD_STATIC_LIB)
|
|
enable_language(CXX)
|
|
# find again for those cxx libraries.
|
|
find_package(xgboost REQUIRED)
|
|
endif()
|
|
|
|
add_executable(inference-demo inference.c)
|
|
target_link_libraries(inference-demo PRIVATE xgboost::xgboost)
|