Changeset 13709
- Timestamp:
- 10/16/12 21:28:33 (12 years ago)
- Location:
- issm/trunk-jpl
- Files:
-
- 3 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified issm/trunk-jpl/configs/config-arm-linux.sh ¶
r13654 r13709 6 6 --host="arm-linux-androideabi" \ 7 7 --enable-shared \ 8 --with-android\ 8 9 --without-fortran \ 9 10 --without-wrappers \ -
TabularUnified issm/trunk-jpl/m4/issm_options.m4 ¶
r13655 r13709 1402 1402 AC_MSG_RESULT($HAVE_RIFTS) 1403 1403 dnl }}} 1404 dnl with-android{{{ 1405 AC_ARG_WITH([android], 1406 AS_HELP_STRING([--with-android = YES], [compile with android capabilities (default is no)]), 1407 [ANDROID=$withval],[ANDROID=no]) 1408 AC_MSG_CHECKING(for android capability compilation) 1409 1410 if test "x$ANDROID" = "xyes"; then 1411 1412 dnl defaults 1413 HAVE_ANDROID=yes 1414 1415 AC_DEFINE([_HAVE_ANDROID_],[1],[with android capability]) 1416 else 1417 HAVE_ANDROID=no 1418 fi 1419 AM_CONDITIONAL([ANDROID], [test x$HAVE_ANDROID = xyes]) 1420 AC_MSG_RESULT($HAVE_ANDROID) 1421 dnl }}} 1404 1422 dnl with-3d{{{ 1405 1423 AC_ARG_WITH([3d], -
TabularUnified issm/trunk-jpl/src/c/Makefile.am ¶
r13700 r13709 546 546 ./modules/ConstraintsStatex/RiftConstraintsState.cpp 547 547 #}}} 548 #Android sources {{{ 549 android_sources = ./android/fac.h\ 550 ./android/fac.cpp 551 #}}} 548 552 #3D sources {{{ 549 553 threed_sources = ./classes/gauss/GaussPenta.h\ … … 941 945 endif 942 946 947 if ANDROID 948 issm_sources += $(android_sources) 949 endif 950 943 951 if THREED 944 952 issm_sources += $(threed_sources)
Note:
See TracChangeset
for help on using the changeset viewer.