File tree 2 files changed +11
-3
lines changed
2 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 28
28
CMAKE_FLAGS += -DUSE_CUDA=OFF -DBUILD_WITH_CUDA_CUB=OFF
29
29
endif
30
30
31
- # C_SRCS = $(EXGBOOST_DIR)/src/exgboost.c $(EXGBOOST_DIR)/include/exgboost.h
32
31
C_SRCS = $(wildcard $(EXGBOOST_DIR ) /src/* .c) $(wildcard $(EXGBOOST_DIR ) /include/* .h)
33
32
34
33
LDFLAGS = -L$(EXGBOOST_CACHE_LIB_DIR ) /lib -lxgboost
45
44
# in ./lib regardless of the absolute location. This way priv can be safely
46
45
# packed into an Elixir release. Also, we use $$ to escape Makefile variable
47
46
# and single quotes to escape shell variable
48
- LDFLAGS += -Wl,-rpath,'$$ORIGIN/lib'
47
+ LDFLAGS += -Wl,-rpath,'$$ORIGIN/lib/lib '
49
48
POST_INSTALL = $(NOOP)
50
49
endif
51
50
Original file line number Diff line number Diff line change @@ -37,7 +37,16 @@ defmodule Exgboost.MixProject do
37
37
[
38
38
maintainers: [ "Andres Alejos" ] ,
39
39
licenses: [ "Apache-2.0" ] ,
40
- links: % { "GitHub" => "https://github.com/acalejos/exgboost" }
40
+ links: % { "GitHub" => "https://github.com/acalejos/exgboost" } ,
41
+ files: [
42
+ "lib" ,
43
+ "mix.exs" ,
44
+ "c" ,
45
+ "Makefile" ,
46
+ "README.md" ,
47
+ "LICENSE" ,
48
+ ".formatter.exs"
49
+ ]
41
50
]
42
51
end
43
52
You can’t perform that action at this time.
0 commit comments