📄 makefile.msvc
字号:
# This makefile was written to compile a distribution of pyfann for
# Microsoft Visual C++.
TARGETS = _libfann.pyd
PYTHON=python2.3
PYDIR=C:/Python23
OBJS=libfann_wrap.obj fann_helper.obj
all: $(TARGETS)
_libfann.pyd: $(OBJS)
link /LIBPATH:$(PYDIR)/libs /DLL /OUT:$@ $(OBJS) ../../src/fann*.obj python23.lib
.c.obj:
cl -c $< -I $(PYDIR)/include -I ../../src/include
libfann_wrap.c: libfann.i
swig -python libfann.i
clean:
del -f $(TARGETS) *_wrap.* fann_helper.obj fann.pyc libfann.py _libfann.*
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -