makefile changes for ios framework

This commit is contained in:
Stefan Messmer
2013-12-15 14:23:23 +01:00
parent 4e7f08efcf
commit c0dad08085
2 changed files with 7 additions and 1 deletions
+4
View File
@@ -51,6 +51,10 @@ ifeq ($(IGL_WITH_BOOST),1)
EXTRA_DIRS+=include/igl/boost
EXTRAS += boost
endif
ifeq ($(IGL_WITH_SVD3X3),1)
EXTRA_DIRS+=include/igl/svd3x3
EXTRAS += svd3x3
endif
.PHONY: examples
.PHONY: extras
+3 -1
View File
@@ -130,13 +130,15 @@ ifeq ($(IGL_USERNAME),stefanmessmer)
IGL_WITH_PNG=0
IGL_WITH_XML=0
IGL_WITH_BOOST=0
IGL_WITH_SVD3X3=1
#OPENGL_INC=-I$(DEFAULT_PREFIX)/include
#OPENGL_LIB=-lGL -lGLU
# Glut is needed only for examples
#GLUT_LIB=-lglut
#ANTTWEAKBAR_LIB=-lAntTweakBar
OPENPMP = -openmp
AFLAGS= -DIGL_NO_MOSEK -DIGL_NO_ANTTWEAKBAR -DIGL_NO_OPENGL -arch armv7s -arch armv7 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.0.sdk
AFLAGS = -DIGL_NO_MOSEK -DIGL_NO_ANTTWEAKBAR -DIGL_NO_OPENGL -arch armv7s -arch armv7 -arch arm64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.0.sdk
AFLAGS_SIMULATOR = -DIGL_NO_MOSEK -DIGL_NO_ANTTWEAKBAR -DIGL_NO_OPENG -arch i386 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator7.0.sdk
endif