kicad/libs.macosx

29 lines
675 B
Plaintext
Raw Normal View History

#Configuration for build kicad
KICAD_BIN = /usr/local/kicad/macosx
2007-05-07 00:03:28 +08:00
RESCOMP = /Developer/Tools/Rez -d __DARWIN__ -t APPL -d __WXMAC__ -i .
SETFILE = /Developer/Tools/SetFile
MKMK_WX_VERSION=`wx-config --version`
2007-05-07 00:03:28 +08:00
SRCSUFF = .cpp
OBJSUFF = .o
FINAL = 1
# You must comment or uncomment this line to disable/enable python support
#KICAD_PYTHON = 1
ifdef KICAD_PYTHON
PYLIBS= -L/usr/lib
PYLIBS+= -L /usr/include/python
PYLIBS+= -lpython2.4
PYLIBS+= -lboost_python
EXTRACPPFLAGS+=-I /usr/include/python2.4 -DKICAD_PYTHON -fno-strict-aliasing -ggdb
endif
LIBS = ../common/common.a `wx-config --libs` $(PYLIBS)
LIBS3D = ../common/common.a `wx-config --libs std,gl` $(PYLIBS)
2007-05-07 00:03:28 +08:00