Changeset 1201 for pjproject/branches/split-3rd-party/build.mak.in
- Timestamp:
- Apr 17, 2007 4:16:01 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/branches/split-3rd-party/build.mak.in
r1055 r1201 8 8 export LINUX_POLL := @ac_linux_poll@ 9 9 10 # Application can use this 10 # Determine which party libraries to use 11 export APP_THIRD_PARTY_LIBS := -lresample-$(TARGET_NAME) 12 13 ifneq (@ac_no_gsm_codec@,1) 14 APP_THIRD_PARTY_LIBS += -lgsmcodec-$(TARGET_NAME) 15 endif 16 17 ifneq (@ac_no_speex_codec@,1) 18 APP_THIRD_PARTY_LIBS += -lspeex-$(TARGET_NAME) 19 endif 20 21 ifneq (@ac_no_ilbc_codec@,1) 22 APP_THIRD_PARTY_LIBS += -lilbccodec-$(TARGET_NAME) 23 endif 24 25 ifneq ($(findstring pa,@ac_pjmedia_snd@),) 26 APP_THIRD_PARTY_LIBS += -lportaudio-$(TARGET_NAME) 27 endif 28 29 30 # CFLAGS, LDFLAGS, and LIBS to be used by applications 11 31 export PJDIR := @ac_pjdir@ 12 32 export APP_CC := $(CROSS_COMPILE)$(CC_NAME) … … 15 35 -I$(PJDIR)/pjlib/include\ 16 36 -I$(PJDIR)/pjlib-util/include\ 37 -I$(PJDIR)/pjnath/include\ 17 38 -I$(PJDIR)/pjmedia/include\ 18 39 -I$(PJDIR)/pjsip/include … … 20 41 export APP_LDFLAGS := -L$(PJDIR)/pjlib/lib\ 21 42 -L$(PJDIR)/pjlib-util/lib\ 43 -L$(PJDIR)/pjnath/lib\ 22 44 -L$(PJDIR)/pjmedia/lib\ 23 45 -L$(PJDIR)/pjsip/lib\ 46 -L$(PJDIR)/third_party/lib\ 24 47 @LDFLAGS@ 25 48 export APP_LDLIBS := -lpjsua-$(TARGET_NAME)\ … … 29 52 -lpjmedia-codec-$(TARGET_NAME)\ 30 53 -lpjmedia-$(TARGET_NAME)\ 31 -lpj media-codec-$(TARGET_NAME)\54 -lpjnath-$(TARGET_NAME)\ 32 55 -lpjlib-util-$(TARGET_NAME)\ 56 $(APP_THIRD_PARTY_LIBS)\ 33 57 -lpj-$(TARGET_NAME)\ 34 58 @LIBS@ 35 59 60 export PJ_DIR := $(PJDIR) 61 export PJ_CC := $(APP_CC) 62 export PJ_CFLAGS := $(APP_CFLAGS) 63 export PJ_CXXFLAGS := $(APP_CXXFLAGS) 64 export PJ_LDFLAGS := $(APP_LDFLAGS) 65 export PJ_LDLIBS := $(APP_LDLIBS) 66
Note: See TracChangeset
for help on using the changeset viewer.