Changeset 24f4671 for configure.ac
- Timestamp:
- Dec 13, 2016, 10:53:21 AM (8 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- 3d50aaf
- Parents:
- 2ee5426
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
configure.ac
r2ee5426 r24f4671 82 82 ;; 83 83 no) 84 AC_MSG_ERROR(Must build target debug or release)85 exit 1;84 build_release="no" 85 build_debug="no" 86 86 ;; 87 87 *) … … 111 111 AM_CONDITIONAL([BUILD_RELEASE], [test "x$build_release" = "xyes"]) 112 112 AM_CONDITIONAL([BUILD_DEBUG], [test "x$build_debug" = "xyes"]) 113 AM_CONDITIONAL([BUILD_NO_LIB], [test "x$build_release$build_debug" = "xnono"]) 113 114 114 115 if test "x$prefix" = "xNONE"; then … … 200 201 [AC_MSG_NOTICE(Building libcfa for target: release & debug)], 201 202 [AC_MSG_NOTICE(Building libcfa for target: release)])], 202 [AC_MSG_NOTICE(Building libcfa for target: debug)]) 203 [AM_COND_IF([BUILD_DEBUG], 204 [AC_MSG_NOTICE(Building libcfa for target: debug)], 205 [AC_MSG_NOTICE(Running cfa without libcfa)])]) 203 206 204 207 # Final text
Note: See TracChangeset
for help on using the changeset viewer.