update linux to 3.0

This commit is contained in:
Electron Studio 2020-04-07 04:20:05 +01:00
parent eeaaf69044
commit 8a30502288
5 changed files with 2 additions and 2 deletions

View file

@ -538,7 +538,7 @@ static void (*_cffi_call_python_org)(struct _cffi_externpy_s *, char *);
/************************************************************/ /************************************************************/
#include "../raylib.h" // the C header of the library, supplied by us here #include "../raylib.h"
/************************************************************/ /************************************************************/

View file

@ -14,7 +14,7 @@ ffibuilder.set_source("_raylib_cffi",
""" """
#include "../raylib.h" #include "../raylib.h"
""", """,
extra_link_args=['/usr/local/lib/libraylib_mac.a','-lm', '-lpthread', '-lGLU', '-lGL', '-lrt', '-lm', '-ldl', '-lX11', '-lpthread'], extra_link_args=['/usr/local/lib/libraylib.a','-lm', '-lpthread', '-lGLU', '-lGL', '-lrt', '-lm', '-ldl', '-lX11', '-lpthread'],
libraries=['GL','m','pthread', 'dl', 'rt', 'X11'] libraries=['GL','m','pthread', 'dl', 'rt', 'X11']
) )