From 6edf6146cfa2b3b795a3712be20bd2369f3cbd67 Mon Sep 17 00:00:00 2001 From: James Lamb Date: Wed, 25 Mar 2020 10:45:55 -0500 Subject: [PATCH] fixed bad reference --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e208f3460c14..b5ae0435055b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -240,7 +240,7 @@ set(SOURCES "${SOURCES} src/c_api.cpp") # Only build the R part of the library if building for # use with the R package if(BUILD_FOR_R) - set(SOURCES "${SOURCES} lightgbm_R.cpp") + set(SOURCES "${SOURCES} src/lightgbm_R.cpp") endif(BUILD_FOR_R) add_library(_lightgbm SHARED ${SOURCES})