File tree 3 files changed +5
-4
lines changed
3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 1
1
build
2
2
.waf *
3
3
.lock *
4
+ src /python /termboxconfig.pyx
5
+ src /python /termboxmodule.c
Original file line number Diff line number Diff line change 5
5
import glob
6
6
import platform
7
7
8
- sourcefiles = ['src/termboxmodule.pyx' ] + \
9
- list (filter (lambda n : n != "src/termboxmodule.c" , glob .glob ('src/*.c' )))
8
+ sourcefiles = ['src/python/termboxmodule.pyx' ] + glob .glob ('src/*.c' )
10
9
11
- with open ('src/termboxconfig.pyx' , 'w' ) as f :
10
+ with open ('src/python/ termboxconfig.pyx' , 'w' ) as f :
12
11
f .write ("DEF PY_MAJOR_VERSION = %s\n " % platform .python_version ()[0 ])
13
12
14
13
setup (
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ cdef extern from "stdint.h":
10
10
ctypedef unsigned short uint16_t
11
11
ctypedef signed int int32_t
12
12
13
- cdef extern from " termbox.h" :
13
+ cdef extern from " ../ termbox.h" :
14
14
struct tb_event:
15
15
uint16_t type
16
16
uint32_t ch
You can’t perform that action at this time.
0 commit comments