Ignore:
Timestamp:
Oct 23, 2013 5:34:48 AM (11 years ago)
Author:
bennylp
Message:

More re #1519:

  • account API implementation (incomplete, callback is still not called)
  • using callback class design pattern (observer?)
  • after this, it might be changed to use inheritance pattern instead
File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/branches/projects/pjsua2/pjsip-apps/build/Samples.mak

    r4440 r4631  
    2929           pjsip-perf \ 
    3030           pcaputil \ 
     31           pjsua2_demo \ 
    3132           playfile \ 
    3233           playsine \ 
     
    4647           vid_streamutil 
    4748 
     49#  x   x  x  x  x  x  x   x  x  x  x  x  x   x  x  x  x  x  x   x  x  x  x  x 
     50# 
     51# FIX THIS 
     52# 
     53# Only pjsua2_demo is built, and also -lstdc++ is added for all 
     54# samples 
     55#  x   x  x  x  x  x  x   x  x  x  x  x  x   x  x  x  x  x  x   x  x  x  x  x 
     56SAMPLES := pjsua2_demo 
     57 
    4858EXES := $(foreach file, $(SAMPLES), $(BINDIR)/$(file)$(HOST_EXE)) 
    4959 
    5060all: $(BINDIR) $(OBJDIR) $(EXES) 
    5161 
    52 $(BINDIR)/%$(HOST_EXE): $(OBJDIR)/%$(OBJEXT) $(PJ_LIB_FILES) 
     62$(BINDIR)/%$(HOST_EXE): $(OBJDIR)/%$(OBJEXT) $(PJ_LIB_FILES)  
    5363        $(LD) $(LDOUT)$(subst /,$(HOST_PSEP),$@) \ 
    5464            $(subst /,$(HOST_PSEP),$<) \ 
    55             $(_LDFLAGS) 
     65             $(_LDFLAGS) -lstdc++ 
    5666 
    5767$(OBJDIR)/%$(OBJEXT): $(SRCDIR)/%.c 
     68        $(CC) $(_CFLAGS) \ 
     69          $(CC_OUT)$(subst /,$(HOST_PSEP),$@) \ 
     70          $(subst /,$(HOST_PSEP),$<)  
     71 
     72$(OBJDIR)/%$(OBJEXT): $(SRCDIR)/%.cpp 
    5873        $(CC) $(_CFLAGS) \ 
    5974          $(CC_OUT)$(subst /,$(HOST_PSEP),$@) \ 
Note: See TracChangeset for help on using the changeset viewer.