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
288 B
12 lines
288 B
# pyBind11 and python headers
|
|
INCLUDES+=$(shell pybind11-config --includes)
|
|
|
|
# example lib
|
|
INCLUDES+=-I/Users/heck/local-default/include/
|
|
|
|
# static lib (.a)
|
|
#LIBS_STATIC+=/Users/heck/local-default/include/
|
|
|
|
# dynamic lib (.so)
|
|
LIBS+=-lpEpEngine
|
|
LIBS_PATH+=-L/Users/heck/local-default/lib
|
|
|