- Timestamp:
- Dec 14, 2010 1:03:10 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/branches/projects/2.0-dev/pjmedia/build/os-auto.mak.in
r3392 r3395 1 1 # @configure_input@ 2 3 # Define the desired video device backend 4 # Valid values are: 5 # - mac_os 6 # - iphone_os 7 AC_PJMEDIA_VIDEO = @ac_pjmedia_video@ 2 8 3 9 # SDL flags … … 13 19 V4L2_LDFLAGS = @ac_v4l2_ldflags@ 14 20 21 # QT 22 AC_PJMEDIA_VIDEO_HAS_QT = @ac_pjmedia_video_has_qt@ 23 QT_CFLAGS = @ac_qt_cflags@ 24 25 # iOS 26 IOS_CFLAGS = @ac_ios_cflags@ 27 15 28 # PJMEDIA features exclusion 16 29 export CFLAGS += @ac_no_small_filter@ @ac_no_large_filter@ @ac_no_speex_aec@ \ 17 $(SDL_CFLAGS) $(FFMPEG_CFLAGS) $(V4L2_CFLAGS) 30 $(SDL_CFLAGS) $(FFMPEG_CFLAGS) $(V4L2_CFLAGS) $(QT_CFLAGS) \ 31 $(IOS_CFLAGS) 18 32 export LDFLAGS += $(SDL_LDFLAGS) $(FFMPEG_LDFLAGS) $(V4L2_LDFLAGS) 19 33 … … 133 147 endif 134 148 149 # 150 # QT video device 151 # 152 ifeq ($(AC_PJMEDIA_VIDEO_HAS_QT),yes) 153 export PJMEDIA_VIDEODEV_OBJS += qt_dev.o 154 endif 135 155 156 # 157 # iOS video device 158 # 159 ifeq ($(AC_PJMEDIA_VIDEO),iphone_os) 160 export PJMEDIA_VIDEODEV_OBJS += ios_dev.o 161 endif 162 163 # 164 # Determine whether we should compile the obj-c version of a particular source code 165 # 166 ifeq ($(AC_PJMEDIA_VIDEO),mac_os) 167 # Mac OS specific, use obj-c 168 export PJMEDIA_VIDEODEV_OBJS += sdl_dev_m.o 169 export PJMEDIA_TEST_OBJS += vid_dev_test_m.o 170 else 171 # Other platforms, compile .c 172 export PJMEDIA_VIDEODEV_OBJS += sdl_dev.o 173 export PJMEDIA_TEST_OBJS += vid_dev_test.o 174 endif
Note: See TracChangeset
for help on using the changeset viewer.