You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
267 B
12 lines
267 B
# pyBind11 and python headers
|
|
INCLUDES+=$(shell pybind11-config --includes)
|
|
|
|
# example lib
|
|
INCLUDES+=-I../../../lib/lib_test
|
|
|
|
# static lib (.a)
|
|
LIBS_STATIC+=../../../lib/lib_test/liblib_test.a
|
|
|
|
# dynamic lib (.so)
|
|
LIBS+=-llib_test
|
|
LIBS_PATH+=-L../../../lib/lib_test/
|
|
|