another try at linux libs
This commit is contained in:
parent
93ca5da185
commit
519c182a5c
4 changed files with 1 additions and 10 deletions
|
@ -1,9 +0,0 @@
|
||||||
include raylib/static/*.so
|
|
||||||
include raylib/static/*.pyd
|
|
||||||
exclude raylib/static/*.a
|
|
||||||
exclude raylib/static/*.h
|
|
||||||
exclude raylib/static/*.c
|
|
||||||
exclude raylib/static/*.o
|
|
||||||
include raylib/dynamic/*.dylib
|
|
||||||
include raylib/dynamic/*.dll
|
|
||||||
include raylib/dynamic/*.so
|
|
Binary file not shown.
Binary file not shown.
|
@ -13,7 +13,7 @@ ffibuilder.set_source("_raylib_cffi",
|
||||||
"""
|
"""
|
||||||
#include "../raylib.h" // the C header, installed in the system include dir we assume
|
#include "../raylib.h" // the C header, installed in the system include dir we assume
|
||||||
""",
|
""",
|
||||||
extra_link_args=['../../linux_libs/core.o', '../../linux_libs/models.o', '../../linux_libs/raudio.o', '../../linux_libs/rglfw.o','../../linux_libs/shapes.o','../../linux_libs/text.o','../../linux_libs/textures.o','../../linux_libs/utils.o'],
|
extra_link_args=['../../linux_libs/core.o', '../../linux_libs/models.o', '../../linux_libs/raudio.o', '../../linux_libs/rglfw.o','../../linux_libs/shapes.o','../../linux_libs/text.o','../../linux_libs/textures.o','../../linux_libs/utils.o','-lm', '-lpthread', '-lGLU', '-lGL', '-lrt', '-lm', '-ldl', '-lX11', '-lpthread'],
|
||||||
libraries=['GL','m','pthread', 'dl', 'rt', 'X11']
|
libraries=['GL','m','pthread', 'dl', 'rt', 'X11']
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Reference in a new issue