Added another STC demo for wxPython. This one sets up an editor with the Python lexer and a bunch of styles. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_2_BRANCH@7224 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
25 lines
484 B
Python
25 lines
484 B
Python
# -*- python -*-
|
|
import sys
|
|
|
|
MODULE = 'stc_c'
|
|
SWIGFILES = ['stc_.i']
|
|
SOURCES = []
|
|
PYFILES = ['stc.py']
|
|
|
|
|
|
OTHERCFLAGS = '-I$(WXWIN)/contrib/include'
|
|
OTHERSWIGFLAGS = '-I$(WXWIN)/contrib/include/wx/stc'
|
|
|
|
SWIGDEPS = '$(WXWIN)/contrib/include/wx/stc/stc.h'
|
|
|
|
if sys.platform == 'win32':
|
|
OTHERLIBS = '$(WXWIN)/contrib/lib/stc$(LIBEXT).lib'
|
|
else:
|
|
OTHERLIBS = '-lstc'
|
|
|
|
|
|
|
|
# There are no platform differences so we don't need separate code directories
|
|
GENCODEDIR='.'
|
|
SWIGTOOLKITFLAG=''
|