summaryrefslogtreecommitdiff
path: root/weave/wx_info.py
blob: 1a0de6a72d072f82b06b6dee30fedade18220b94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import swig_info

# THIS IS PLATFORM DEPENDENT FOR NOW. 
# YOU HAVE TO SPECIFY YOUR WXWINDOWS DIRECTORY

wx_dir = 'C:\\wx230\\include'

class wx_info(swig_info.swig_info):
    _headers = ['"wx/wx.h"']
    _include_dirs = [wx_dir]
    _define_macros=[('wxUSE_GUI', '1')]
    _libraries = ['wx23_1']
    _library_dirs = ['c:/wx230/lib']