Codebase list libsdl2-mixer / 7286e49
Update upstream source from tag 'upstream/2.0.2+dfsg1' Update to upstream version '2.0.2+dfsg1' with Debian dir 4322e3d1bac14d976a69098ba651829dafd38793 Fabian Greffrath 6 years ago
155 changed file(s) with 25140 addition(s) and 13717 deletion(s). Raw diff Collapse all Expand all
0 LOCAL_PATH := $(call my-dir)
0 # Save the local path
1 MY_LOCAL_PATH := $(call my-dir)
2
3
4 # Enable this if you want to support loading FLAC music with libFLAC
5 SUPPORT_FLAC ?= true
6 FLAC_LIBRARY_PATH := external/flac-1.3.2
7
8 # Enable this if you want to support loading OGG Vorbis music via Tremor
9 SUPPORT_OGG ?= true
10 OGG_LIBRARY_PATH := external/libogg-1.3.2
11 VORBIS_LIBRARY_PATH := external/libvorbisidec-1.2.1
12
13 # Enable this if you want to support loading MP3 music via MPG123
14 SUPPORT_MP3_MPG123 ?= true
15 MPG123_LIBRARY_PATH := external/mpg123-1.25.6
16
17 # Enable this if you want to support loading MOD music via modplug
18 SUPPORT_MOD_MODPLUG ?= true
19 MODPLUG_LIBRARY_PATH := external/libmodplug-0.8.9.0
20
21 # Enable this if you want to support TiMidity
22 SUPPORT_TIMIDITY ?= true
23 TIMIDITY_LIBRARY_PATH := timidity
24
25
26 # Build the library
27 ifeq ($(SUPPORT_FLAC),true)
28 include $(MY_LOCAL_PATH)/$(FLAC_LIBRARY_PATH)/Android.mk
29 endif
30
31 # Build the library
32 ifeq ($(SUPPORT_OGG),true)
33 include $(MY_LOCAL_PATH)/$(OGG_LIBRARY_PATH)/Android.mk
34 include $(MY_LOCAL_PATH)/$(VORBIS_LIBRARY_PATH)/Android.mk
35 endif
36
37 # Build the library
38 ifeq ($(SUPPORT_MP3_MPG123),true)
39 include $(MY_LOCAL_PATH)/$(MPG123_LIBRARY_PATH)/Android.mk
40 endif
41
42 # Build the library
43 ifeq ($(SUPPORT_MOD_MODPLUG),true)
44 include $(MY_LOCAL_PATH)/$(MODPLUG_LIBRARY_PATH)/Android.mk
45 endif
46
47 # Build the library
48 ifeq ($(SUPPORT_TIMIDITY),true)
49 include $(MY_LOCAL_PATH)/$(TIMIDITY_LIBRARY_PATH)/Android.mk
50 endif
51
52
53 # Restore local path
54 LOCAL_PATH := $(MY_LOCAL_PATH)
155
256 include $(CLEAR_VARS)
357
458 LOCAL_MODULE := SDL2_mixer
559
6 # Enable this if you want to support loading MOD music via modplug
7 # The library path should be a relative path to this directory.
8 SUPPORT_MOD_MODPLUG ?= true
9 MODPLUG_LIBRARY_PATH := external/libmodplug-0.8.8.4
10
11 # Enable this if you want to support loading MOD music via mikmod
12 # The library path should be a relative path to this directory.
13 SUPPORT_MOD_MIKMOD ?= true
14 MIKMOD_LIBRARY_PATH := external/libmikmod-3.1.12
15
16 # Enable this if you want to support loading MP3 music via SMPEG
17 # The library path should be a relative path to this directory.
18 SUPPORT_MP3_SMPEG ?= true
19 SMPEG_LIBRARY_PATH := external/smpeg2-2.0.0
20
21 # Enable this if you want to support loading OGG Vorbis music via Tremor
22 # The library path should be a relative path to this directory.
23 SUPPORT_OGG ?= true
24 OGG_LIBRARY_PATH := external/libogg-1.3.1
25 VORBIS_LIBRARY_PATH := external/libvorbisidec-1.2.1
26
27
28 # Enable this if you want to support TiMidity
29 SUPPORT_TIMIDITY ?= true
30
31 LOCAL_C_INCLUDES := $(LOCAL_PATH)
32 LOCAL_CFLAGS := -DWAV_MUSIC
33
3460 LOCAL_SRC_FILES := $(notdir $(filter-out %/playmus.c %/playwave.c, $(wildcard $(LOCAL_PATH)/*.c))) \
3561
36
62 LOCAL_CFLAGS :=
3763 LOCAL_LDLIBS :=
3864 LOCAL_STATIC_LIBRARIES :=
3965 LOCAL_SHARED_LIBRARIES := SDL2
4066
41 ifeq ($(SUPPORT_TIMIDITY),true)
42 LOCAL_C_INCLUDES += $(LOCAL_PATH)/timidity
43 LOCAL_CFLAGS += -DMID_MUSIC -DUSE_TIMIDITY_MIDI
44 LOCAL_SRC_FILES += $(subst $(LOCAL_PATH)/,,$(wildcard $(LOCAL_PATH)/timidity/*.c))
67 ifeq ($(SUPPORT_FLAC),true)
68 LOCAL_C_INCLUDES += $(LOCAL_PATH)/$(FLAC_LIBRARY_PATH)/include
69 LOCAL_CFLAGS += -DMUSIC_FLAC
70 LOCAL_STATIC_LIBRARIES += libFLAC
71 endif
72
73 ifeq ($(SUPPORT_OGG),true)
74 LOCAL_C_INCLUDES += $(LOCAL_PATH)/$(OGG_LIBRARY_PATH)/include
75 LOCAL_C_INCLUDES += $(LOCAL_PATH)/$(VORBIS_LIBRARY_PATH)
76 LOCAL_CFLAGS += -DMUSIC_OGG -DOGG_USE_TREMOR -DOGG_HEADER="<ivorbisfile.h>"
77 LOCAL_STATIC_LIBRARIES += ogg vorbisidec
78 endif
79
80 # This needs to be a shared library to comply with the LGPL license
81 ifeq ($(SUPPORT_MP3_MPG123),true)
82 LOCAL_C_INCLUDES += $(LOCAL_PATH)/$(MPG123_LIBRARY_PATH)
83 LOCAL_CFLAGS += -DMUSIC_MP3_MPG123
84 LOCAL_SHARED_LIBRARIES += mpg123
4585 endif
4686
4787 ifeq ($(SUPPORT_MOD_MODPLUG),true)
48 LOCAL_C_INCLUDES += $(LOCAL_PATH)/$(MODPLUG_LIBRARY_PATH)/src $(LOCAL_PATH)/$(MODPLUG_LIBRARY_PATH)/src/libmodplug
49 LOCAL_CFLAGS += -DMODPLUG_MUSIC -DMODPLUG_HEADER="<modplug.h>" -DHAVE_SETENV -DHAVE_SINF
50 LOCAL_SRC_FILES += \
51 $(MODPLUG_LIBRARY_PATH)/src/fastmix.cpp \
52 $(MODPLUG_LIBRARY_PATH)/src/load_669.cpp \
53 $(MODPLUG_LIBRARY_PATH)/src/load_abc.cpp \
54 $(MODPLUG_LIBRARY_PATH)/src/load_amf.cpp \
55 $(MODPLUG_LIBRARY_PATH)/src/load_ams.cpp \
56 $(MODPLUG_LIBRARY_PATH)/src/load_dbm.cpp \
57 $(MODPLUG_LIBRARY_PATH)/src/load_dmf.cpp \
58 $(MODPLUG_LIBRARY_PATH)/src/load_dsm.cpp \
59 $(MODPLUG_LIBRARY_PATH)/src/load_far.cpp \
60 $(MODPLUG_LIBRARY_PATH)/src/load_it.cpp \
61 $(MODPLUG_LIBRARY_PATH)/src/load_j2b.cpp \
62 $(MODPLUG_LIBRARY_PATH)/src/load_mdl.cpp \
63 $(MODPLUG_LIBRARY_PATH)/src/load_med.cpp \
64 $(MODPLUG_LIBRARY_PATH)/src/load_mid.cpp \
65 $(MODPLUG_LIBRARY_PATH)/src/load_mod.cpp \
66 $(MODPLUG_LIBRARY_PATH)/src/load_mt2.cpp \
67 $(MODPLUG_LIBRARY_PATH)/src/load_mtm.cpp \
68 $(MODPLUG_LIBRARY_PATH)/src/load_okt.cpp \
69 $(MODPLUG_LIBRARY_PATH)/src/load_pat.cpp \
70 $(MODPLUG_LIBRARY_PATH)/src/load_psm.cpp \
71 $(MODPLUG_LIBRARY_PATH)/src/load_ptm.cpp \
72 $(MODPLUG_LIBRARY_PATH)/src/load_s3m.cpp \
73 $(MODPLUG_LIBRARY_PATH)/src/load_stm.cpp \
74 $(MODPLUG_LIBRARY_PATH)/src/load_ult.cpp \
75 $(MODPLUG_LIBRARY_PATH)/src/load_umx.cpp \
76 $(MODPLUG_LIBRARY_PATH)/src/load_wav.cpp \
77 $(MODPLUG_LIBRARY_PATH)/src/load_xm.cpp \
78 $(MODPLUG_LIBRARY_PATH)/src/mmcmp.cpp \
79 $(MODPLUG_LIBRARY_PATH)/src/modplug.cpp \
80 $(MODPLUG_LIBRARY_PATH)/src/snd_dsp.cpp \
81 $(MODPLUG_LIBRARY_PATH)/src/snd_flt.cpp \
82 $(MODPLUG_LIBRARY_PATH)/src/snd_fx.cpp \
83 $(MODPLUG_LIBRARY_PATH)/src/sndfile.cpp \
84 $(MODPLUG_LIBRARY_PATH)/src/sndmix.cpp
88 LOCAL_C_INCLUDES += $(LOCAL_PATH)/$(MODPLUG_LIBRARY_PATH)/src
89 LOCAL_C_INCLUDES += $(LOCAL_PATH)/$(MODPLUG_LIBRARY_PATH)/src/libmodplug
90 LOCAL_CFLAGS += -DMUSIC_MOD_MODPLUG -DMODPLUG_HEADER="<modplug.h>"
91 LOCAL_STATIC_LIBRARIES += modplug
8592 endif
8693
87 ifeq ($(SUPPORT_MOD_MIKMOD),true)
88 LOCAL_C_INCLUDES += $(LOCAL_PATH)/$(MIKMOD_LIBRARY_PATH)/include
89 LOCAL_CFLAGS += -DMOD_MUSIC
90 LOCAL_SHARED_LIBRARIES += mikmod
94 ifeq ($(SUPPORT_TIMIDITY),true)
95 LOCAL_C_INCLUDES += $(LOCAL_PATH)/$(TIMIDITY_LIBRARY_PATH)
96 LOCAL_CFLAGS += -DMUSIC_MID_TIMIDITY
97 LOCAL_STATIC_LIBRARIES += timidity
9198 endif
9299
93 ifeq ($(SUPPORT_MP3_SMPEG),true)
94 LOCAL_C_INCLUDES += $(LOCAL_PATH)/$(SMPEG_LIBRARY_PATH)
95 LOCAL_CFLAGS += -DMP3_MUSIC
96 LOCAL_SHARED_LIBRARIES += smpeg2
97 endif
98
99 ifeq ($(SUPPORT_OGG),true)
100 LOCAL_C_INCLUDES += $(LOCAL_PATH)/$(OGG_LIBRARY_PATH)/include $(LOCAL_PATH)/$(VORBIS_LIBRARY_PATH)
101 LOCAL_CFLAGS += -DOGG_MUSIC -DOGG_USE_TREMOR -DOGG_HEADER="<ivorbisfile.h>"
102 ifeq ($(TARGET_ARCH_ABI),armeabi)
103 LOCAL_CFLAGS += -D_ARM_ASSEM_
104 endif
105 ifeq ($(TARGET_ARCH_ABI),armeabi-v7a)
106 LOCAL_CFLAGS += -D_ARM_ASSEM_
107 endif
108 LOCAL_SRC_FILES += \
109 $(VORBIS_LIBRARY_PATH)/mdct.c \
110 $(VORBIS_LIBRARY_PATH)/block.c \
111 $(VORBIS_LIBRARY_PATH)/window.c \
112 $(VORBIS_LIBRARY_PATH)/synthesis.c \
113 $(VORBIS_LIBRARY_PATH)/info.c \
114 $(VORBIS_LIBRARY_PATH)/floor1.c \
115 $(VORBIS_LIBRARY_PATH)/floor0.c \
116 $(VORBIS_LIBRARY_PATH)/vorbisfile.c \
117 $(VORBIS_LIBRARY_PATH)/res012.c \
118 $(VORBIS_LIBRARY_PATH)/mapping0.c \
119 $(VORBIS_LIBRARY_PATH)/registry.c \
120 $(VORBIS_LIBRARY_PATH)/codebook.c \
121 $(VORBIS_LIBRARY_PATH)/sharedbook.c \
122 $(OGG_LIBRARY_PATH)/src/framing.c \
123 $(OGG_LIBRARY_PATH)/src/bitwise.c
124 endif
125
126 LOCAL_EXPORT_C_INCLUDES += $(LOCAL_C_INCLUDES)
127
128 LOCAL_ARM_MODE := arm
100 LOCAL_EXPORT_C_INCLUDES += $(LOCAL_PATH)
129101
130102 include $(BUILD_SHARED_LIBRARY)
0 2.0.2:
1 Sam Lantinga - Fri Oct 20 22:04:50 PDT 2017
2 * Implemented 24-bit and surround sound support for FLAC audio files
3 Sam Lantinga - Thu Oct 12 21:32:44 PDT 2017
4 * Updated external libraries flac-1.3.2, libmodplug-0.8.9.0, libogg-1.3.2 and libvorbis-1.3.5
5 Ryan Gordon - Thu Oct 12 21:29:59 PDT 2017
6 * Updated for SDL 2.0.6 and newer
7 Franc[e]sco - Thu Jul 20 22:03:19 2017 +0200
8 * Added support for MP3 playback using mpg123
9 David Ludwig - Sun Apr 10 22:35:38 2016
10 * Added support for UWP / Windows 10 apps
11 Juha Kuikka - Fri Jan 29 12:44:01 PST 2016
12 * Added Mix_OpenAudioDevice() so you can specify the audio device to open
13
014 2.0.1:
115 Sam Lantinga - Tue Jul 7 11:40:33 PDT 2015
216 * Added support for 'smpl' format loop points in music WAV files
00 /*
11 SDL_mixer: An audio mixer library based on the SDL library
2 Copyright (C) 1997-2016 Sam Lantinga <slouken@libsdl.org>
2 Copyright (C) 1997-2017 Sam Lantinga <slouken@libsdl.org>
33
44 This software is provided 'as-is', without any express or implied
55 warranty. In no event will the authors be held liable for any damages
1919 EXE = @EXE@
2020 SHELL = @SHELL@
2121 CC = @CC@
22 CXX = g++
2322 CFLAGS = @BUILD_CFLAGS@
2423 EXTRA_CFLAGS = @EXTRA_CFLAGS@
2524 LDFLAGS = @BUILD_LDFLAGS@
3837 PLAYWAVE_OBJECTS = @PLAYWAVE_OBJECTS@
3938 PLAYMUS_OBJECTS = @PLAYMUS_OBJECTS@
4039
41 DIST = *.txt Android.mk Makefile.in SDL2_mixer.pc.in SDL_mixer.h SDL2_mixer.spec SDL2_mixer.spec.in debian VisualC Xcode Xcode-iOS acinclude autogen.sh build-scripts configure configure.in dynamic_flac.c dynamic_flac.h dynamic_fluidsynth.c dynamic_fluidsynth.h dynamic_modplug.c dynamic_modplug.h dynamic_mod.c dynamic_mod.h dynamic_mp3.c dynamic_mp3.h dynamic_ogg.c dynamic_ogg.h effect_position.c effect_stereoreverse.c effects_internal.c effects_internal.h fluidsynth.c fluidsynth.h external gcc-fat.sh libmikmod-3.1.12.zip load_aiff.c load_aiff.h load_flac.c load_flac.h load_mp3.c load_mp3.h load_ogg.c load_ogg.h load_voc.c load_voc.h mixer.c music.c music_cmd.c music_cmd.h music_flac.c music_flac.h music_mad.c music_mad.h music_mod.c music_mod.h music_modplug.c music_modplug.h music_ogg.c music_ogg.h native_midi playmus.c playwave.c timidity wavestream.c wavestream.h version.rc
40 DIST = *.txt Android.mk Makefile.in SDL2_mixer.pc.in SDL2_mixer.spec.in SDL_mixer.h VisualC VisualC-WinRT Xcode Xcode-iOS acinclude aclocal.m4 autogen.sh build-scripts configure configure.in debian effect_position.c effect_stereoreverse.c effects_internal.c effects_internal.h external gcc-fat.sh load_aiff.c load_aiff.h load_voc.c load_voc.h mixer.c mixer.h music.c music.h music_cmd.c music_cmd.h music_flac.c music_flac.h music_fluidsynth.c music_fluidsynth.h music_mad.c music_mad.h music_mikmod.c music_mikmod.h music_modplug.c music_modplug.h music_mpg123.c music_mpg123.h music_nativemidi.c music_nativemidi.h music_ogg.c music_ogg.h music_smpeg.c music_smpeg.h music_timidity.c music_timidity.h music_wav.c music_wav.h native_midi playmus.c playwave.c timidity version.rc
4241
4342 LT_AGE = @LT_AGE@
4443 LT_CURRENT = @LT_CURRENT@
6564 $(LIBTOOL) --mode=link $(CC) -o $@ $(OBJECTS) $(VERSION_OBJECTS) $(LDFLAGS) $(EXTRA_LDFLAGS) $(LT_LDFLAGS)
6665
6766 $(objects)/playwave$(EXE): $(objects)/playwave.lo $(objects)/$(TARGET)
68 $(LIBTOOL) --mode=link $(CC) -o $@ $(objects)/playwave.lo $(SDL_CFLAGS) $(SDL_LIBS) $(LDFLAGS) $(objects)/$(TARGET)
67 $(LIBTOOL) --mode=link $(CC) -o $@ $(objects)/playwave.lo $(SDL_CFLAGS) $(objects)/$(TARGET) $(SDL_LIBS) $(LDFLAGS)
6968
7069 $(objects)/playmus$(EXE): $(objects)/playmus.lo $(objects)/$(TARGET)
71 $(LIBTOOL) --mode=link $(CC) -o $@ $(objects)/playmus.lo $(SDL_CFLAGS) $(SDL_LIBS) $(LDFLAGS) $(objects)/$(TARGET)
70 $(LIBTOOL) --mode=link $(CC) -o $@ $(objects)/playmus.lo $(SDL_CFLAGS) $(objects)/$(TARGET) $(SDL_LIBS) $(LDFLAGS)
7271
7372 install: all install-hdrs install-lib #install-bin
7473 install-hdrs:
55
66 Due to popular demand, here is a simple multi-channel audio mixer.
77 It supports 8 channels of 16 bit stereo audio, plus a single channel
8 of music, mixed by the popular MikMod MOD, Timidity MIDI and SMPEG MP3
9 libraries.
8 of music.
109
1110 See the header file SDL_mixer.h and the examples playwave.c and playmus.c
1211 for documentation on this mixer library.
1312
1413 The mixer can currently load Microsoft WAVE files and Creative Labs VOC
15 files as audio samples, and can load MIDI files via Timidity and the
16 following music formats via MikMod: .MOD .S3M .IT .XM. It can load
17 Ogg Vorbis streams as music if built with Ogg Vorbis or Tremor libraries,
18 and finally it can load MP3 music using the SMPEG or libmad libraries.
14 files as audio samples, it can load FLAC files with libFLAC, it can load
15 Ogg Vorbis files with Ogg Vorbis or Tremor libraries, it can load MP3 files
16 using mpg123, SMPEG or libmad, and it can load MIDI files with Timidity,
17 FluidSynth, and natively on Windows, Mac OSX, and Linux, and finally it can
18 load the following file formats via ModPlug or MikMod: .MOD .S3M .IT .XM.
1919
2020 Tremor decoding is disabled by default; you can enable it by passing
2121 --enable-music-ogg-tremor
22 to configure, or by defining OGG_MUSIC and OGG_USE_TREMOR.
22 to configure, or by defining MUSIC_OGG and OGG_USE_TREMOR.
2323
2424 libmad decoding is disabled by default; you can enable it by passing
2525 --enable-music-mp3-mad
26 to configure, or by defining MP3_MAD_MUSIC
26 to configure, or by defining MUSIC_MP3_MAD
2727 vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv
2828 WARNING: The license for libmad is GPL, which means that in order to
2929 use it your application must also be GPL!
3333 so if playing regular WAVE files sound great, but playing MIDI files
3434 sound choppy, try using 8-bit audio, mono audio, or lower frequencies.
3535
36 To play MIDI files, you'll need to get a complete set of GUS patches
37 from:
36 To play MIDI files using FluidSynth, you'll need to set the SDL_SOUNDFONTS
37 environment variable to a Sound Font 2 (.sf2) file containing the musical
38 instruments you want to use for MIDI playback.
39 (On some Linux distributions you can install the fluid-soundfont-gm package)
40
41 To play MIDI files using Timidity, you'll need to get a complete set of
42 GUS patches from:
3843 http://www.libsdl.org/projects/mixer/timidity/timidity.tar.gz
3944 and unpack them in /usr/local/lib under UNIX, and C:\ under Win32.
4045
46 iOS:
47 In order to use this library on iOS, you should include the SDL.xcodeproj
48 and Xcode-iOS/SDL_mixer.xcodeproj in your application, add the SDL/include
49 and SDL_mixer directories to your "Header Search Paths" setting, then add the
50 libSDL2.a and libSDL2_mixer.a to your "Link Binary with Libraries" setting.
51
4152 This library is under the zlib license, see the file "COPYING.txt" for details.
4253
+0
-64
SDL2_mixer.spec less more
0 %define name SDL2_mixer
1 %define version 2.0.1
2 %define release 1
3
4 Summary: Simple DirectMedia Layer - Sample Mixer Library
5 Name: %{name}
6 Version: %{version}
7 Release: %{release}
8 Source0: %{name}-%{version}.tar.gz
9 License: LGPL
10 Group: System Environment/Libraries
11 BuildRoot: /var/tmp/%{name}-buildroot
12 Prefix: %{_prefix}
13
14 %description
15 Due to popular demand, here is a simple multi-channel audio mixer.
16 It supports 4 channels of 16 bit stereo audio, plus a single channel
17 of music, mixed by the popular MikMod MOD, Timidity MIDI, Ogg Vorbis,
18 Tremor, SMPEG MP3, and libmad MP3 libraries.
19
20 %package devel
21 Summary: Libraries, includes and more to develop SDL applications.
22 Group: Development/Libraries
23 Requires: %{name}
24
25 %description devel
26 Due to popular demand, here is a simple multi-channel audio mixer.
27 It supports 4 channels of 16 bit stereo audio, plus a single channel
28 of music, mixed by the popular MikMod MOD, Timidity MIDI, Ogg Vorbis,
29 Tremor, SMPEG MP3, and libmad MP3 libraries.
30
31 %prep
32 %setup
33
34 %build
35 CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%{prefix}
36 make
37
38 %install
39 rm -rf $RPM_BUILD_ROOT
40 make install prefix=$RPM_BUILD_ROOT/%{prefix}
41
42 %clean
43 rm -rf $RPM_BUILD_ROOT
44
45 %files
46 %defattr(-,root,root)
47 %doc README.txt CHANGES.txt COPYING.txt
48 %{prefix}/lib/lib*.so.*
49
50 %files devel
51 %defattr(-,root,root)
52 %{prefix}/lib/lib*.a
53 %{prefix}/lib/lib*.la
54 %{prefix}/lib/lib*.so
55 %{prefix}/include/*/
56 %{prefix}/lib/pkgconfig/*.pc
57
58 %changelog
59 * Wed Jan 19 2000 Sam Lantinga
60 - converted to get package information from configure
61 * Sun Jan 16 2000 Hakan Tandogan <hakan@iconsult.com>
62 - initial spec file
63
00 /*
11 SDL_mixer: An audio mixer library based on the SDL library
2 Copyright (C) 1997-2016 Sam Lantinga <slouken@libsdl.org>
2 Copyright (C) 1997-2017 Sam Lantinga <slouken@libsdl.org>
33
44 This software is provided 'as-is', without any express or implied
55 warranty. In no event will the authors be held liable for any damages
1818 3. This notice may not be removed or altered from any source distribution.
1919 */
2020
21 /* $Id$ */
22
23 #ifndef _SDL_MIXER_H
24 #define _SDL_MIXER_H
21 #ifndef SDL_MIXER_H_
22 #define SDL_MIXER_H_
2523
2624 #include "SDL_stdinc.h"
2725 #include "SDL_rwops.h"
3937 */
4038 #define SDL_MIXER_MAJOR_VERSION 2
4139 #define SDL_MIXER_MINOR_VERSION 0
42 #define SDL_MIXER_PATCHLEVEL 1
40 #define SDL_MIXER_PATCHLEVEL 2
4341
4442 /* This macro can be used to fill a version structure with the compile-time
4543 * version of the SDL_mixer library.
5755 #define MIX_PATCHLEVEL SDL_MIXER_PATCHLEVEL
5856 #define MIX_VERSION(X) SDL_MIXER_VERSION(X)
5957
58 /**
59 * This is the version number macro for the current SDL_mixer version.
60 */
61 #define SDL_MIXER_COMPILEDVERSION \
62 SDL_VERSIONNUM(SDL_MIXER_MAJOR_VERSION, SDL_MIXER_MINOR_VERSION, SDL_MIXER_PATCHLEVEL)
63
64 /**
65 * This macro will evaluate to true if compiled with SDL_mixer at least X.Y.Z.
66 */
67 #define SDL_MIXER_VERSION_ATLEAST(X, Y, Z) \
68 (SDL_MIXER_COMPILEDVERSION >= SDL_VERSIONNUM(X, Y, Z))
69
6070 /* This function gets the version of the dynamically linked SDL_mixer library.
6171 it should NOT be used to fill a version structure, instead you should
6272 use the SDL_MIXER_VERSION() macro.
6575
6676 typedef enum
6777 {
68 MIX_INIT_FLAC = 0x00000001,
69 MIX_INIT_MOD = 0x00000002,
70 MIX_INIT_MODPLUG = 0x00000004,
71 MIX_INIT_MP3 = 0x00000008,
72 MIX_INIT_OGG = 0x00000010,
73 MIX_INIT_FLUIDSYNTH = 0x00000020
78 MIX_INIT_FLAC = 0x00000001,
79 MIX_INIT_MOD = 0x00000002,
80 MIX_INIT_MP3 = 0x00000008,
81 MIX_INIT_OGG = 0x00000010,
82 MIX_INIT_MID = 0x00000020
7483 } MIX_InitFlags;
7584
7685 /* Loads dynamic libraries and prepares them for use. Flags should be
96105 #define MIX_DEFAULT_FORMAT AUDIO_S16MSB
97106 #endif
98107 #define MIX_DEFAULT_CHANNELS 2
99 #define MIX_MAX_VOLUME 128 /* Volume of a chunk */
108 #define MIX_MAX_VOLUME SDL_MIX_MAXVOLUME /* Volume of a chunk */
100109
101110 /* The internal format for an audio chunk */
102111 typedef struct Mix_Chunk {
113122 MIX_FADING_IN
114123 } Mix_Fading;
115124
125 /* These are types of music files (not libraries used to load them) */
116126 typedef enum {
117127 MUS_NONE,
118128 MUS_CMD,
121131 MUS_MID,
122132 MUS_OGG,
123133 MUS_MP3,
124 MUS_MP3_MAD,
134 MUS_MP3_MAD_UNUSED,
125135 MUS_FLAC,
126 MUS_MODPLUG
136 MUS_MODPLUG_UNUSED
127137 } Mix_MusicType;
128138
129139 /* The internal format for a music chunk interpreted via mikmod */
131141
132142 /* Open the mixer with a certain audio format */
133143 extern DECLSPEC int SDLCALL Mix_OpenAudio(int frequency, Uint16 format, int channels, int chunksize);
144
145 /* Open the mixer with specific device and certain audio format */
146 extern DECLSPEC int SDLCALL Mix_OpenAudioDevice(int frequency, Uint16 format, int channels, int chunksize, const char* device, int allowed_changes);
134147
135148 /* Dynamically change the number of channels managed by the mixer.
136149 If decreasing the number of channels, the upper channels are
187200 */
188201 extern DECLSPEC int SDLCALL Mix_GetNumChunkDecoders(void);
189202 extern DECLSPEC const char * SDLCALL Mix_GetChunkDecoder(int index);
203 extern DECLSPEC SDL_bool SDLCALL Mix_HasChunkDecoder(const char *name);
190204 extern DECLSPEC int SDLCALL Mix_GetNumMusicDecoders(void);
191205 extern DECLSPEC const char * SDLCALL Mix_GetMusicDecoder(int index);
206 extern DECLSPEC SDL_bool SDLCALL Mix_HasMusicDecoder(const char *name);
192207
193208 /* Find out the music format of a mixer music, or the currently playing
194209 music, if 'music' is NULL.
199214 This can be used to provide real-time visual display of the audio stream
200215 or add a custom mixer filter for the stream data.
201216 */
202 extern DECLSPEC void SDLCALL Mix_SetPostMix(void (*mix_func)(void *udata, Uint8 *stream, int len), void *arg);
217 extern DECLSPEC void SDLCALL Mix_SetPostMix(void (SDLCALL *mix_func)(void *udata, Uint8 *stream, int len), void *arg);
203218
204219 /* Add your own music player or additional mixer function.
205220 If 'mix_func' is NULL, the default music player is re-enabled.
206221 */
207 extern DECLSPEC void SDLCALL Mix_HookMusic(void (*mix_func)(void *udata, Uint8 *stream, int len), void *arg);
222 extern DECLSPEC void SDLCALL Mix_HookMusic(void (SDLCALL *mix_func)(void *udata, Uint8 *stream, int len), void *arg);
208223
209224 /* Add your own callback for when the music has finished playing or when it is
210225 * stopped from a call to Mix_HaltMusic.
211226 */
212 extern DECLSPEC void SDLCALL Mix_HookMusicFinished(void (*music_finished)(void));
227 extern DECLSPEC void SDLCALL Mix_HookMusicFinished(void (SDLCALL *music_finished)(void));
213228
214229 /* Get a pointer to the user data for the current music hook */
215230 extern DECLSPEC void * SDLCALL Mix_GetMusicHookData(void);
222237 * inside the audio callback, or SDL_mixer will explicitly lock the audio
223238 * before calling your callback.
224239 */
225 extern DECLSPEC void SDLCALL Mix_ChannelFinished(void (*channel_finished)(int channel));
240 extern DECLSPEC void SDLCALL Mix_ChannelFinished(void (SDLCALL *channel_finished)(int channel));
226241
227242
228243 /* Special Effects API by ryan c. gordon. (icculus@icculus.org) */
246261 *
247262 * DO NOT EVER call SDL_LockAudio() from your callback function!
248263 */
249 typedef void (*Mix_EffectFunc_t)(int chan, void *stream, int len, void *udata);
264 typedef void (SDLCALL *Mix_EffectFunc_t)(int chan, void *stream, int len, void *udata);
250265
251266 /*
252267 * This is a callback that signifies that a channel has finished all its
257272 *
258273 * DO NOT EVER call SDL_LockAudio() from your callback function!
259274 */
260 typedef void (*Mix_EffectDone_t)(int chan, void *udata);
275 typedef void (SDLCALL *Mix_EffectDone_t)(int chan, void *udata);
261276
262277
263278 /* Register a special effect function. At mixing time, the channel data is
586601 /* Set the current position in the music stream.
587602 This returns 0 if successful, or -1 if it failed or isn't implemented.
588603 This function is only implemented for MOD music formats (set pattern
589 order number) and for OGG, FLAC, MP3_MAD, and MODPLUG music (set
590 position in seconds), at the moment.
604 order number) and for OGG, FLAC, MP3_MAD, MP3_MPG and MODPLUG music
605 (set position in seconds), at the moment.
591606 */
592607 extern DECLSPEC int SDLCALL Mix_SetMusicPosition(double position);
593608
607622 /* Set/Get/Iterate SoundFonts paths to use by supported MIDI backends */
608623 extern DECLSPEC int SDLCALL Mix_SetSoundFonts(const char *paths);
609624 extern DECLSPEC const char* SDLCALL Mix_GetSoundFonts(void);
610 extern DECLSPEC int SDLCALL Mix_EachSoundFont(int (*function)(const char*, void*), void *data);
625 extern DECLSPEC int SDLCALL Mix_EachSoundFont(int (SDLCALL *function)(const char*, void*), void *data);
611626
612627 /* Get the Mix_Chunk currently associated with a mixer channel
613628 Returns NULL if it's an invalid channel, or there's no chunk associated.
620635 /* We'll use SDL for reporting errors */
621636 #define Mix_SetError SDL_SetError
622637 #define Mix_GetError SDL_GetError
638 #define Mix_ClearError SDL_ClearError
623639
624640 /* Ends C function definitions when using C++ */
625641 #ifdef __cplusplus
627643 #endif
628644 #include "close_code.h"
629645
630 #endif /* _SDL_MIXER_H */
646 #endif /* SDL_MIXER_H_ */
647
648 /* vi: set ts=4 sw=4 expandtab: */
0 
1 Microsoft Visual Studio Solution File, Format Version 12.00
2 # Visual Studio 14
3 VisualStudioVersion = 14.0.25420.1
4 MinimumVisualStudioVersion = 10.0.40219.1
5 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SDL2_mixer-UWP", "SDL_mixer-UWP.vcxproj", "{18665277-E558-4484-93F4-E4DC7BB614CB}"
6 EndProject
7 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libogg_dynamic-UWP", "libogg_dynamic-UWP.vcxproj", "{B14F8B7F-C9FF-4FD3-B328-7C68AB801E85}"
8 EndProject
9 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libvorbis_dynamic-UWP", "libvorbis_dynamic-UWP.vcxproj", "{6B6C1F59-6A82-4097-8907-04DF5C95D014}"
10 EndProject
11 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libvorbisfile_dynamic-UWP", "libvorbisfile_dynamic-UWP.vcxproj", "{70EF3B8F-6AAF-401B-9818-3371E950E73C}"
12 EndProject
13 Global
14 GlobalSection(SolutionConfigurationPlatforms) = preSolution
15 Debug|ARM = Debug|ARM
16 Debug|x64 = Debug|x64
17 Debug|x86 = Debug|x86
18 Release|ARM = Release|ARM
19 Release|x64 = Release|x64
20 Release|x86 = Release|x86
21 EndGlobalSection
22 GlobalSection(ProjectConfigurationPlatforms) = postSolution
23 {18665277-E558-4484-93F4-E4DC7BB614CB}.Debug|ARM.ActiveCfg = Debug|ARM
24 {18665277-E558-4484-93F4-E4DC7BB614CB}.Debug|ARM.Build.0 = Debug|ARM
25 {18665277-E558-4484-93F4-E4DC7BB614CB}.Debug|x64.ActiveCfg = Debug|x64
26 {18665277-E558-4484-93F4-E4DC7BB614CB}.Debug|x64.Build.0 = Debug|x64
27 {18665277-E558-4484-93F4-E4DC7BB614CB}.Debug|x86.ActiveCfg = Debug|Win32
28 {18665277-E558-4484-93F4-E4DC7BB614CB}.Debug|x86.Build.0 = Debug|Win32
29 {18665277-E558-4484-93F4-E4DC7BB614CB}.Release|ARM.ActiveCfg = Release|ARM
30 {18665277-E558-4484-93F4-E4DC7BB614CB}.Release|ARM.Build.0 = Release|ARM
31 {18665277-E558-4484-93F4-E4DC7BB614CB}.Release|x64.ActiveCfg = Release|x64
32 {18665277-E558-4484-93F4-E4DC7BB614CB}.Release|x64.Build.0 = Release|x64
33 {18665277-E558-4484-93F4-E4DC7BB614CB}.Release|x86.ActiveCfg = Release|Win32
34 {18665277-E558-4484-93F4-E4DC7BB614CB}.Release|x86.Build.0 = Release|Win32
35 {B14F8B7F-C9FF-4FD3-B328-7C68AB801E85}.Debug|ARM.ActiveCfg = Debug|ARM
36 {B14F8B7F-C9FF-4FD3-B328-7C68AB801E85}.Debug|ARM.Build.0 = Debug|ARM
37 {B14F8B7F-C9FF-4FD3-B328-7C68AB801E85}.Debug|x64.ActiveCfg = Debug|x64
38 {B14F8B7F-C9FF-4FD3-B328-7C68AB801E85}.Debug|x64.Build.0 = Debug|x64
39 {B14F8B7F-C9FF-4FD3-B328-7C68AB801E85}.Debug|x86.ActiveCfg = Debug|Win32
40 {B14F8B7F-C9FF-4FD3-B328-7C68AB801E85}.Debug|x86.Build.0 = Debug|Win32
41 {B14F8B7F-C9FF-4FD3-B328-7C68AB801E85}.Release|ARM.ActiveCfg = Release|ARM
42 {B14F8B7F-C9FF-4FD3-B328-7C68AB801E85}.Release|ARM.Build.0 = Release|ARM
43 {B14F8B7F-C9FF-4FD3-B328-7C68AB801E85}.Release|x64.ActiveCfg = Release|x64
44 {B14F8B7F-C9FF-4FD3-B328-7C68AB801E85}.Release|x64.Build.0 = Release|x64
45 {B14F8B7F-C9FF-4FD3-B328-7C68AB801E85}.Release|x86.ActiveCfg = Release|Win32
46 {B14F8B7F-C9FF-4FD3-B328-7C68AB801E85}.Release|x86.Build.0 = Release|Win32
47 {6B6C1F59-6A82-4097-8907-04DF5C95D014}.Debug|ARM.ActiveCfg = Debug|ARM
48 {6B6C1F59-6A82-4097-8907-04DF5C95D014}.Debug|ARM.Build.0 = Debug|ARM
49 {6B6C1F59-6A82-4097-8907-04DF5C95D014}.Debug|x64.ActiveCfg = Debug|x64
50 {6B6C1F59-6A82-4097-8907-04DF5C95D014}.Debug|x64.Build.0 = Debug|x64
51 {6B6C1F59-6A82-4097-8907-04DF5C95D014}.Debug|x86.ActiveCfg = Debug|Win32
52 {6B6C1F59-6A82-4097-8907-04DF5C95D014}.Debug|x86.Build.0 = Debug|Win32
53 {6B6C1F59-6A82-4097-8907-04DF5C95D014}.Release|ARM.ActiveCfg = Release|ARM
54 {6B6C1F59-6A82-4097-8907-04DF5C95D014}.Release|ARM.Build.0 = Release|ARM
55 {6B6C1F59-6A82-4097-8907-04DF5C95D014}.Release|x64.ActiveCfg = Release|x64
56 {6B6C1F59-6A82-4097-8907-04DF5C95D014}.Release|x64.Build.0 = Release|x64
57 {6B6C1F59-6A82-4097-8907-04DF5C95D014}.Release|x86.ActiveCfg = Release|Win32
58 {6B6C1F59-6A82-4097-8907-04DF5C95D014}.Release|x86.Build.0 = Release|Win32
59 {70EF3B8F-6AAF-401B-9818-3371E950E73C}.Debug|ARM.ActiveCfg = Debug|ARM
60 {70EF3B8F-6AAF-401B-9818-3371E950E73C}.Debug|ARM.Build.0 = Debug|ARM
61 {70EF3B8F-6AAF-401B-9818-3371E950E73C}.Debug|x64.ActiveCfg = Debug|x64
62 {70EF3B8F-6AAF-401B-9818-3371E950E73C}.Debug|x64.Build.0 = Debug|x64
63 {70EF3B8F-6AAF-401B-9818-3371E950E73C}.Debug|x86.ActiveCfg = Debug|Win32
64 {70EF3B8F-6AAF-401B-9818-3371E950E73C}.Debug|x86.Build.0 = Debug|Win32
65 {70EF3B8F-6AAF-401B-9818-3371E950E73C}.Release|ARM.ActiveCfg = Release|ARM
66 {70EF3B8F-6AAF-401B-9818-3371E950E73C}.Release|ARM.Build.0 = Release|ARM
67 {70EF3B8F-6AAF-401B-9818-3371E950E73C}.Release|x64.ActiveCfg = Release|x64
68 {70EF3B8F-6AAF-401B-9818-3371E950E73C}.Release|x64.Build.0 = Release|x64
69 {70EF3B8F-6AAF-401B-9818-3371E950E73C}.Release|x86.ActiveCfg = Release|Win32
70 {70EF3B8F-6AAF-401B-9818-3371E950E73C}.Release|x86.Build.0 = Release|Win32
71 EndGlobalSection
72 GlobalSection(SolutionProperties) = preSolution
73 HideSolutionNode = FALSE
74 EndGlobalSection
75 EndGlobal
0 <?xml version="1.0" encoding="utf-8"?>
1 <Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2 <ItemGroup Label="ProjectConfigurations">
3 <ProjectConfiguration Include="Debug|ARM">
4 <Configuration>Debug</Configuration>
5 <Platform>ARM</Platform>
6 </ProjectConfiguration>
7 <ProjectConfiguration Include="Debug|Win32">
8 <Configuration>Debug</Configuration>
9 <Platform>Win32</Platform>
10 </ProjectConfiguration>
11 <ProjectConfiguration Include="Debug|x64">
12 <Configuration>Debug</Configuration>
13 <Platform>x64</Platform>
14 </ProjectConfiguration>
15 <ProjectConfiguration Include="Release|ARM">
16 <Configuration>Release</Configuration>
17 <Platform>ARM</Platform>
18 </ProjectConfiguration>
19 <ProjectConfiguration Include="Release|Win32">
20 <Configuration>Release</Configuration>
21 <Platform>Win32</Platform>
22 </ProjectConfiguration>
23 <ProjectConfiguration Include="Release|x64">
24 <Configuration>Release</Configuration>
25 <Platform>x64</Platform>
26 </ProjectConfiguration>
27 </ItemGroup>
28 <ItemGroup>
29 <ClCompile Include="..\..\effects_internal.c" />
30 <ClCompile Include="..\..\effect_position.c" />
31 <ClCompile Include="..\..\effect_stereoreverse.c" />
32 <ClCompile Include="..\..\load_aiff.c" />
33 <ClCompile Include="..\..\load_voc.c" />
34 <ClCompile Include="..\..\mixer.c" />
35 <ClCompile Include="..\..\music.c" />
36 <ClCompile Include="..\..\music_cmd.c" />
37 <ClCompile Include="..\..\music_flac.c" />
38 <ClCompile Include="..\..\music_fluidsynth.c" />
39 <ClCompile Include="..\..\music_mad.c" />
40 <ClCompile Include="..\..\music_mikmod.c" />
41 <ClCompile Include="..\..\music_modplug.c" />
42 <ClCompile Include="..\..\music_mpg123.c" />
43 <ClCompile Include="..\..\music_nativemidi.c" />
44 <ClCompile Include="..\..\music_ogg.c" />
45 <ClCompile Include="..\..\music_smpeg.c" />
46 <ClCompile Include="..\..\music_timidity.c" />
47 <ClCompile Include="..\..\music_wav.c" />
48 <ClCompile Include="..\..\timidity\common.c" />
49 <ClCompile Include="..\..\timidity\instrum.c" />
50 <ClCompile Include="..\..\timidity\mix.c" />
51 <ClCompile Include="..\..\timidity\output.c" />
52 <ClCompile Include="..\..\timidity\playmidi.c" />
53 <ClCompile Include="..\..\timidity\readmidi.c" />
54 <ClCompile Include="..\..\timidity\resample.c" />
55 <ClCompile Include="..\..\timidity\tables.c" />
56 <ClCompile Include="..\..\timidity\timidity.c" />
57 </ItemGroup>
58 <ItemGroup>
59 <ClInclude Include="..\..\SDL_mixer.h" />
60 <ClInclude Include="..\..\timidity\common.h" />
61 <ClInclude Include="..\..\timidity\instrum.h" />
62 <ClInclude Include="..\..\timidity\mix.h" />
63 <ClInclude Include="..\..\timidity\options.h" />
64 <ClInclude Include="..\..\timidity\output.h" />
65 <ClInclude Include="..\..\timidity\playmidi.h" />
66 <ClInclude Include="..\..\timidity\readmidi.h" />
67 <ClInclude Include="..\..\timidity\resample.h" />
68 <ClInclude Include="..\..\timidity\tables.h" />
69 <ClInclude Include="..\..\timidity\timidity.h" />
70 </ItemGroup>
71 <ItemGroup>
72 <ProjectReference Include="..\..\..\SDL\VisualC-WinRT\UWP_VS2015\SDL-UWP.vcxproj">
73 <Project>{89e9b32e-a86a-47c3-a948-d2b1622925ce}</Project>
74 </ProjectReference>
75 <ProjectReference Include="libogg_dynamic-UWP.vcxproj">
76 <Project>{b14f8b7f-c9ff-4fd3-b328-7c68ab801e85}</Project>
77 </ProjectReference>
78 <ProjectReference Include="libvorbisfile_dynamic-UWP.vcxproj">
79 <Project>{70ef3b8f-6aaf-401b-9818-3371e950e73c}</Project>
80 </ProjectReference>
81 <ProjectReference Include="libvorbis_dynamic-UWP.vcxproj">
82 <Project>{6b6c1f59-6a82-4097-8907-04df5c95d014}</Project>
83 </ProjectReference>
84 </ItemGroup>
85 <PropertyGroup Label="Globals">
86 <ProjectGuid>{18665277-e558-4484-93f4-e4dc7bb614cb}</ProjectGuid>
87 <Keyword>DynamicLibrary</Keyword>
88 <ProjectName>SDL2_mixer-UWP</ProjectName>
89 <RootNamespace>SDL2_mixer_UWP</RootNamespace>
90 <DefaultLanguage>en-US</DefaultLanguage>
91 <MinimumVisualStudioVersion>14.0</MinimumVisualStudioVersion>
92 <AppContainerApplication>true</AppContainerApplication>
93 <ApplicationType>Windows Store</ApplicationType>
94 <ApplicationTypeRevision>8.2</ApplicationTypeRevision>
95 <TargetPlatformVersion>10.0.10240.0</TargetPlatformVersion>
96 <TargetPlatformMinVersion>10.0.10240.0</TargetPlatformMinVersion>
97 <WindowsTargetPlatformVersion>10.0.10240.0</WindowsTargetPlatformVersion>
98 <WindowsTargetPlatformMinVersion>10.0.10240.0</WindowsTargetPlatformMinVersion>
99 </PropertyGroup>
100 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
101 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
102 <ConfigurationType>DynamicLibrary</ConfigurationType>
103 <UseDebugLibraries>true</UseDebugLibraries>
104 <PlatformToolset>v140</PlatformToolset>
105 </PropertyGroup>
106 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'" Label="Configuration">
107 <ConfigurationType>DynamicLibrary</ConfigurationType>
108 <UseDebugLibraries>true</UseDebugLibraries>
109 <PlatformToolset>v140</PlatformToolset>
110 </PropertyGroup>
111 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
112 <ConfigurationType>DynamicLibrary</ConfigurationType>
113 <UseDebugLibraries>true</UseDebugLibraries>
114 <PlatformToolset>v140</PlatformToolset>
115 </PropertyGroup>
116 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
117 <ConfigurationType>DynamicLibrary</ConfigurationType>
118 <UseDebugLibraries>false</UseDebugLibraries>
119 <WholeProgramOptimization>true</WholeProgramOptimization>
120 <PlatformToolset>v140</PlatformToolset>
121 </PropertyGroup>
122 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'" Label="Configuration">
123 <ConfigurationType>DynamicLibrary</ConfigurationType>
124 <UseDebugLibraries>false</UseDebugLibraries>
125 <WholeProgramOptimization>true</WholeProgramOptimization>
126 <PlatformToolset>v140</PlatformToolset>
127 </PropertyGroup>
128 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
129 <ConfigurationType>DynamicLibrary</ConfigurationType>
130 <UseDebugLibraries>false</UseDebugLibraries>
131 <WholeProgramOptimization>true</WholeProgramOptimization>
132 <PlatformToolset>v140</PlatformToolset>
133 </PropertyGroup>
134 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
135 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
136 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
137 </ImportGroup>
138 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
139 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
140 </ImportGroup>
141 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
142 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
143 </ImportGroup>
144 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
145 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
146 </ImportGroup>
147 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
148 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
149 </ImportGroup>
150 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
151 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
152 </ImportGroup>
153 <PropertyGroup Label="UserMacros" />
154 <PropertyGroup />
155 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
156 <GenerateManifest>false</GenerateManifest>
157 <IgnoreImportLibrary>false</IgnoreImportLibrary>
158 <IntDir>Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\</IntDir>
159 <TargetName>SDL2_mixer</TargetName>
160 </PropertyGroup>
161 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
162 <GenerateManifest>false</GenerateManifest>
163 <IgnoreImportLibrary>false</IgnoreImportLibrary>
164 <IntDir>Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\</IntDir>
165 <TargetName>SDL2_mixer</TargetName>
166 </PropertyGroup>
167 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
168 <GenerateManifest>false</GenerateManifest>
169 <IgnoreImportLibrary>false</IgnoreImportLibrary>
170 <IntDir>Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\</IntDir>
171 <TargetName>SDL2_mixer</TargetName>
172 </PropertyGroup>
173 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
174 <GenerateManifest>false</GenerateManifest>
175 <IgnoreImportLibrary>false</IgnoreImportLibrary>
176 <IntDir>Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\</IntDir>
177 <TargetName>SDL2_mixer</TargetName>
178 </PropertyGroup>
179 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
180 <GenerateManifest>false</GenerateManifest>
181 <IgnoreImportLibrary>false</IgnoreImportLibrary>
182 <IntDir>Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\</IntDir>
183 <TargetName>SDL2_mixer</TargetName>
184 </PropertyGroup>
185 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
186 <GenerateManifest>false</GenerateManifest>
187 <IgnoreImportLibrary>false</IgnoreImportLibrary>
188 <IntDir>Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\</IntDir>
189 <TargetName>SDL2_mixer</TargetName>
190 </PropertyGroup>
191 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
192 <ClCompile>
193 <PrecompiledHeader>NotUsing</PrecompiledHeader>
194 <CompileAsWinRT>false</CompileAsWinRT>
195 <AdditionalIncludeDirectories>..\..\timidity;..\..\external\libogg-1.3.2\include;..\..\external\libvorbis-1.3.5\include;..\..\..\SDL\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
196 <PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;MUSIC_WAV;MUSIC_OGG;OGG_DYNAMIC="libvorbisfile.dll";MUSIC_MID_TIMIDITY;%(PreprocessorDefinitions)</PreprocessorDefinitions>
197 </ClCompile>
198 <Link>
199 <SubSystem>Console</SubSystem>
200 <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
201 <GenerateWindowsMetadata>false</GenerateWindowsMetadata>
202 </Link>
203 </ItemDefinitionGroup>
204 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
205 <ClCompile>
206 <PrecompiledHeader>NotUsing</PrecompiledHeader>
207 <CompileAsWinRT>false</CompileAsWinRT>
208 <AdditionalIncludeDirectories>..\..\timidity;..\..\external\libogg-1.3.2\include;..\..\external\libvorbis-1.3.5\include;..\..\..\SDL\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
209 <PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;MUSIC_WAV;MUSIC_OGG;OGG_DYNAMIC="libvorbisfile.dll";MUSIC_MID_TIMIDITY;NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
210 </ClCompile>
211 <Link>
212 <SubSystem>Console</SubSystem>
213 <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
214 <GenerateWindowsMetadata>false</GenerateWindowsMetadata>
215 </Link>
216 </ItemDefinitionGroup>
217 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|arm'">
218 <ClCompile>
219 <PrecompiledHeader>NotUsing</PrecompiledHeader>
220 <CompileAsWinRT>false</CompileAsWinRT>
221 <AdditionalIncludeDirectories>..\..\timidity;..\..\external\libogg-1.3.2\include;..\..\external\libvorbis-1.3.5\include;..\..\..\SDL\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
222 <PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;MUSIC_WAV;MUSIC_OGG;OGG_DYNAMIC="libvorbisfile.dll";MUSIC_MID_TIMIDITY;%(PreprocessorDefinitions)</PreprocessorDefinitions>
223 </ClCompile>
224 <Link>
225 <SubSystem>Console</SubSystem>
226 <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
227 <GenerateWindowsMetadata>false</GenerateWindowsMetadata>
228 </Link>
229 </ItemDefinitionGroup>
230 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|arm'">
231 <ClCompile>
232 <PrecompiledHeader>NotUsing</PrecompiledHeader>
233 <CompileAsWinRT>false</CompileAsWinRT>
234 <AdditionalIncludeDirectories>..\..\timidity;..\..\external\libogg-1.3.2\include;..\..\external\libvorbis-1.3.5\include;..\..\..\SDL\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
235 <PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;MUSIC_WAV;MUSIC_OGG;OGG_DYNAMIC="libvorbisfile.dll";MUSIC_MID_TIMIDITY;NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
236 </ClCompile>
237 <Link>
238 <SubSystem>Console</SubSystem>
239 <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
240 <GenerateWindowsMetadata>false</GenerateWindowsMetadata>
241 </Link>
242 </ItemDefinitionGroup>
243 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
244 <ClCompile>
245 <PrecompiledHeader>NotUsing</PrecompiledHeader>
246 <CompileAsWinRT>false</CompileAsWinRT>
247 <AdditionalIncludeDirectories>..\..\timidity;..\..\external\libogg-1.3.2\include;..\..\external\libvorbis-1.3.5\include;..\..\..\SDL\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
248 <PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;MUSIC_WAV;MUSIC_OGG;OGG_DYNAMIC="libvorbisfile.dll";MUSIC_MID_TIMIDITY;%(PreprocessorDefinitions)</PreprocessorDefinitions>
249 </ClCompile>
250 <Link>
251 <SubSystem>Console</SubSystem>
252 <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
253 <GenerateWindowsMetadata>false</GenerateWindowsMetadata>
254 </Link>
255 </ItemDefinitionGroup>
256 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
257 <ClCompile>
258 <PrecompiledHeader>NotUsing</PrecompiledHeader>
259 <CompileAsWinRT>false</CompileAsWinRT>
260 <AdditionalIncludeDirectories>..\..\timidity;..\..\external\libogg-1.3.2\include;..\..\external\libvorbis-1.3.5\include;..\..\..\SDL\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
261 <PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;MUSIC_WAV;MUSIC_OGG;OGG_DYNAMIC="libvorbisfile.dll";MUSIC_MID_TIMIDITY;NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
262 </ClCompile>
263 <Link>
264 <SubSystem>Console</SubSystem>
265 <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
266 <GenerateWindowsMetadata>false</GenerateWindowsMetadata>
267 </Link>
268 </ItemDefinitionGroup>
269 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
270 <ImportGroup Label="ExtensionTargets">
271 </ImportGroup>
272 </Project>
0 <?xml version="1.0" encoding="utf-8"?>
1 <Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2 <ItemGroup>
3 <ClCompile Include="..\..\effect_position.c" />
4 <ClCompile Include="..\..\effect_stereoreverse.c" />
5 <ClCompile Include="..\..\effects_internal.c" />
6 <ClCompile Include="..\..\load_aiff.c" />
7 <ClCompile Include="..\..\load_voc.c" />
8 <ClCompile Include="..\..\mixer.c" />
9 <ClCompile Include="..\..\music.c" />
10 <ClCompile Include="..\..\music_cmd.c" />
11 <ClCompile Include="..\..\music_flac.c" />
12 <ClCompile Include="..\..\music_fluidsynth.c" />
13 <ClCompile Include="..\..\music_mad.c" />
14 <ClCompile Include="..\..\music_mikmod.c" />
15 <ClCompile Include="..\..\music_modplug.c" />
16 <ClCompile Include="..\..\music_mpg123.c" />
17 <ClCompile Include="..\..\music_nativemidi.c" />
18 <ClCompile Include="..\..\music_ogg.c" />
19 <ClCompile Include="..\..\music_smpeg.c" />
20 <ClCompile Include="..\..\music_timidity.c" />
21 <ClCompile Include="..\..\music_wav.c" />
22 <ClCompile Include="..\..\timidity\common.c">
23 <Filter>Timidity</Filter>
24 </ClCompile>
25 <ClCompile Include="..\..\timidity\instrum.c">
26 <Filter>Timidity</Filter>
27 </ClCompile>
28 <ClCompile Include="..\..\timidity\mix.c">
29 <Filter>Timidity</Filter>
30 </ClCompile>
31 <ClCompile Include="..\..\timidity\output.c">
32 <Filter>Timidity</Filter>
33 </ClCompile>
34 <ClCompile Include="..\..\timidity\playmidi.c">
35 <Filter>Timidity</Filter>
36 </ClCompile>
37 <ClCompile Include="..\..\timidity\readmidi.c">
38 <Filter>Timidity</Filter>
39 </ClCompile>
40 <ClCompile Include="..\..\timidity\resample.c">
41 <Filter>Timidity</Filter>
42 </ClCompile>
43 <ClCompile Include="..\..\timidity\tables.c">
44 <Filter>Timidity</Filter>
45 </ClCompile>
46 <ClCompile Include="..\..\timidity\timidity.c">
47 <Filter>Timidity</Filter>
48 </ClCompile>
49 </ItemGroup>
50 <ItemGroup>
51 <ClInclude Include="..\..\SDL_mixer.h" />
52 <ClInclude Include="..\..\timidity\common.h">
53 <Filter>Timidity</Filter>
54 </ClInclude>
55 <ClInclude Include="..\..\timidity\instrum.h">
56 <Filter>Timidity</Filter>
57 </ClInclude>
58 <ClInclude Include="..\..\timidity\mix.h">
59 <Filter>Timidity</Filter>
60 </ClInclude>
61 <ClInclude Include="..\..\timidity\options.h">
62 <Filter>Timidity</Filter>
63 </ClInclude>
64 <ClInclude Include="..\..\timidity\output.h">
65 <Filter>Timidity</Filter>
66 </ClInclude>
67 <ClInclude Include="..\..\timidity\playmidi.h">
68 <Filter>Timidity</Filter>
69 </ClInclude>
70 <ClInclude Include="..\..\timidity\readmidi.h">
71 <Filter>Timidity</Filter>
72 </ClInclude>
73 <ClInclude Include="..\..\timidity\resample.h">
74 <Filter>Timidity</Filter>
75 </ClInclude>
76 <ClInclude Include="..\..\timidity\tables.h">
77 <Filter>Timidity</Filter>
78 </ClInclude>
79 <ClInclude Include="..\..\timidity\timidity.h">
80 <Filter>Timidity</Filter>
81 </ClInclude>
82 </ItemGroup>
83 <ItemGroup>
84 <Filter Include="Timidity">
85 <UniqueIdentifier>{660dbe57-4c07-417e-9609-12b312726942}</UniqueIdentifier>
86 </Filter>
87 </ItemGroup>
88 </Project>
0 <?xml version="1.0" encoding="utf-8"?>
1 <Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2 <ItemGroup Label="ProjectConfigurations">
3 <ProjectConfiguration Include="Debug|ARM">
4 <Configuration>Debug</Configuration>
5 <Platform>ARM</Platform>
6 </ProjectConfiguration>
7 <ProjectConfiguration Include="Debug|Win32">
8 <Configuration>Debug</Configuration>
9 <Platform>Win32</Platform>
10 </ProjectConfiguration>
11 <ProjectConfiguration Include="Debug|x64">
12 <Configuration>Debug</Configuration>
13 <Platform>x64</Platform>
14 </ProjectConfiguration>
15 <ProjectConfiguration Include="Release|ARM">
16 <Configuration>Release</Configuration>
17 <Platform>ARM</Platform>
18 </ProjectConfiguration>
19 <ProjectConfiguration Include="Release|Win32">
20 <Configuration>Release</Configuration>
21 <Platform>Win32</Platform>
22 </ProjectConfiguration>
23 <ProjectConfiguration Include="Release|x64">
24 <Configuration>Release</Configuration>
25 <Platform>x64</Platform>
26 </ProjectConfiguration>
27 </ItemGroup>
28 <ItemGroup>
29 <ClCompile Include="..\..\external\libogg-1.3.2\src\bitwise.c" />
30 <ClCompile Include="..\..\external\libogg-1.3.2\src\framing.c" />
31 </ItemGroup>
32 <ItemGroup>
33 <None Include="..\..\external\libogg-1.3.2\win32\ogg.def" />
34 </ItemGroup>
35 <ItemGroup>
36 <ClInclude Include="..\..\external\libogg-1.3.2\include\ogg\ogg.h" />
37 <ClInclude Include="..\..\external\libogg-1.3.2\include\ogg\os_types.h" />
38 </ItemGroup>
39 <PropertyGroup Label="Globals">
40 <ProjectGuid>{b14f8b7f-c9ff-4fd3-b328-7c68ab801e85}</ProjectGuid>
41 <Keyword>DynamicLibrary</Keyword>
42 <ProjectName>libogg_dynamic-UWP</ProjectName>
43 <RootNamespace>libogg_dynamic_UWP</RootNamespace>
44 <DefaultLanguage>en-US</DefaultLanguage>
45 <MinimumVisualStudioVersion>14.0</MinimumVisualStudioVersion>
46 <AppContainerApplication>true</AppContainerApplication>
47 <ApplicationType>Windows Store</ApplicationType>
48 <ApplicationTypeRevision>8.2</ApplicationTypeRevision>
49 <TargetPlatformVersion>10.0.10240.0</TargetPlatformVersion>
50 <TargetPlatformMinVersion>10.0.10240.0</TargetPlatformMinVersion>
51 <WindowsTargetPlatformVersion>10.0.10240.0</WindowsTargetPlatformVersion>
52 <WindowsTargetPlatformMinVersion>10.0.10240.0</WindowsTargetPlatformMinVersion>
53 </PropertyGroup>
54 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
55 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
56 <ConfigurationType>DynamicLibrary</ConfigurationType>
57 <UseDebugLibraries>true</UseDebugLibraries>
58 <PlatformToolset>v140</PlatformToolset>
59 </PropertyGroup>
60 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'" Label="Configuration">
61 <ConfigurationType>DynamicLibrary</ConfigurationType>
62 <UseDebugLibraries>true</UseDebugLibraries>
63 <PlatformToolset>v140</PlatformToolset>
64 </PropertyGroup>
65 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
66 <ConfigurationType>DynamicLibrary</ConfigurationType>
67 <UseDebugLibraries>true</UseDebugLibraries>
68 <PlatformToolset>v140</PlatformToolset>
69 </PropertyGroup>
70 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
71 <ConfigurationType>DynamicLibrary</ConfigurationType>
72 <UseDebugLibraries>false</UseDebugLibraries>
73 <WholeProgramOptimization>true</WholeProgramOptimization>
74 <PlatformToolset>v140</PlatformToolset>
75 </PropertyGroup>
76 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'" Label="Configuration">
77 <ConfigurationType>DynamicLibrary</ConfigurationType>
78 <UseDebugLibraries>false</UseDebugLibraries>
79 <WholeProgramOptimization>true</WholeProgramOptimization>
80 <PlatformToolset>v140</PlatformToolset>
81 </PropertyGroup>
82 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
83 <ConfigurationType>DynamicLibrary</ConfigurationType>
84 <UseDebugLibraries>false</UseDebugLibraries>
85 <WholeProgramOptimization>true</WholeProgramOptimization>
86 <PlatformToolset>v140</PlatformToolset>
87 </PropertyGroup>
88 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
89 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
90 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
91 </ImportGroup>
92 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
93 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
94 </ImportGroup>
95 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
96 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
97 </ImportGroup>
98 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
99 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
100 </ImportGroup>
101 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
102 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
103 </ImportGroup>
104 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
105 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
106 </ImportGroup>
107 <PropertyGroup Label="UserMacros" />
108 <PropertyGroup />
109 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
110 <GenerateManifest>false</GenerateManifest>
111 <IgnoreImportLibrary>false</IgnoreImportLibrary>
112 <IntDir>Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\</IntDir>
113 <TargetName>libogg</TargetName>
114 </PropertyGroup>
115 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
116 <GenerateManifest>false</GenerateManifest>
117 <IgnoreImportLibrary>false</IgnoreImportLibrary>
118 <IntDir>Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\</IntDir>
119 <TargetName>libogg</TargetName>
120 </PropertyGroup>
121 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
122 <GenerateManifest>false</GenerateManifest>
123 <IgnoreImportLibrary>false</IgnoreImportLibrary>
124 <IntDir>Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\</IntDir>
125 <TargetName>libogg</TargetName>
126 </PropertyGroup>
127 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
128 <GenerateManifest>false</GenerateManifest>
129 <IgnoreImportLibrary>false</IgnoreImportLibrary>
130 <IntDir>Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\</IntDir>
131 <TargetName>libogg</TargetName>
132 </PropertyGroup>
133 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
134 <GenerateManifest>false</GenerateManifest>
135 <IgnoreImportLibrary>false</IgnoreImportLibrary>
136 <IntDir>Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\</IntDir>
137 <TargetName>libogg</TargetName>
138 </PropertyGroup>
139 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
140 <GenerateManifest>false</GenerateManifest>
141 <IgnoreImportLibrary>false</IgnoreImportLibrary>
142 <IntDir>Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\</IntDir>
143 <TargetName>libogg</TargetName>
144 </PropertyGroup>
145 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
146 <ClCompile>
147 <PrecompiledHeader>NotUsing</PrecompiledHeader>
148 <CompileAsWinRT>false</CompileAsWinRT>
149 <AdditionalIncludeDirectories>..\..\external\libogg-1.3.2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
150 <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;LIBOGG_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
151 <DisableSpecificWarnings>4244</DisableSpecificWarnings>
152 </ClCompile>
153 <Link>
154 <SubSystem>Console</SubSystem>
155 <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
156 <GenerateWindowsMetadata>false</GenerateWindowsMetadata>
157 <ModuleDefinitionFile>..\..\external\libogg-1.3.2\win32\ogg.def</ModuleDefinitionFile>
158 </Link>
159 </ItemDefinitionGroup>
160 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
161 <ClCompile>
162 <PrecompiledHeader>NotUsing</PrecompiledHeader>
163 <CompileAsWinRT>false</CompileAsWinRT>
164 <AdditionalIncludeDirectories>..\..\external\libogg-1.3.2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
165 <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;LIBOGG_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
166 <DisableSpecificWarnings>4244</DisableSpecificWarnings>
167 </ClCompile>
168 <Link>
169 <SubSystem>Console</SubSystem>
170 <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
171 <GenerateWindowsMetadata>false</GenerateWindowsMetadata>
172 <ModuleDefinitionFile>..\..\external\libogg-1.3.2\win32\ogg.def</ModuleDefinitionFile>
173 </Link>
174 </ItemDefinitionGroup>
175 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|arm'">
176 <ClCompile>
177 <PrecompiledHeader>NotUsing</PrecompiledHeader>
178 <CompileAsWinRT>false</CompileAsWinRT>
179 <AdditionalIncludeDirectories>..\..\external\libogg-1.3.2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
180 <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;LIBOGG_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
181 <DisableSpecificWarnings>4244</DisableSpecificWarnings>
182 </ClCompile>
183 <Link>
184 <SubSystem>Console</SubSystem>
185 <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
186 <GenerateWindowsMetadata>false</GenerateWindowsMetadata>
187 <ModuleDefinitionFile>..\..\external\libogg-1.3.2\win32\ogg.def</ModuleDefinitionFile>
188 </Link>
189 </ItemDefinitionGroup>
190 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|arm'">
191 <ClCompile>
192 <PrecompiledHeader>NotUsing</PrecompiledHeader>
193 <CompileAsWinRT>false</CompileAsWinRT>
194 <AdditionalIncludeDirectories>..\..\external\libogg-1.3.2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
195 <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;LIBOGG_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
196 <DisableSpecificWarnings>4244</DisableSpecificWarnings>
197 </ClCompile>
198 <Link>
199 <SubSystem>Console</SubSystem>
200 <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
201 <GenerateWindowsMetadata>false</GenerateWindowsMetadata>
202 <ModuleDefinitionFile>..\..\external\libogg-1.3.2\win32\ogg.def</ModuleDefinitionFile>
203 </Link>
204 </ItemDefinitionGroup>
205 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
206 <ClCompile>
207 <PrecompiledHeader>NotUsing</PrecompiledHeader>
208 <CompileAsWinRT>false</CompileAsWinRT>
209 <AdditionalIncludeDirectories>..\..\external\libogg-1.3.2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
210 <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;LIBOGG_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
211 <DisableSpecificWarnings>4244</DisableSpecificWarnings>
212 </ClCompile>
213 <Link>
214 <SubSystem>Console</SubSystem>
215 <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
216 <GenerateWindowsMetadata>false</GenerateWindowsMetadata>
217 <ModuleDefinitionFile>..\..\external\libogg-1.3.2\win32\ogg.def</ModuleDefinitionFile>
218 </Link>
219 </ItemDefinitionGroup>
220 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
221 <ClCompile>
222 <PrecompiledHeader>NotUsing</PrecompiledHeader>
223 <CompileAsWinRT>false</CompileAsWinRT>
224 <AdditionalIncludeDirectories>..\..\external\libogg-1.3.2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
225 <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;LIBOGG_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
226 <DisableSpecificWarnings>4244</DisableSpecificWarnings>
227 </ClCompile>
228 <Link>
229 <SubSystem>Console</SubSystem>
230 <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
231 <GenerateWindowsMetadata>false</GenerateWindowsMetadata>
232 <ModuleDefinitionFile>..\..\external\libogg-1.3.2\win32\ogg.def</ModuleDefinitionFile>
233 </Link>
234 </ItemDefinitionGroup>
235 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
236 <ImportGroup Label="ExtensionTargets">
237 </ImportGroup>
238 </Project>
0 <?xml version="1.0" encoding="utf-8"?>
1 <Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2 <ItemGroup>
3 <ClCompile Include="..\..\external\libogg-1.3.1\src\bitwise.c" />
4 <ClCompile Include="..\..\external\libogg-1.3.1\src\framing.c" />
5 </ItemGroup>
6 <ItemGroup>
7 <None Include="..\..\external\libogg-1.3.1\win32\ogg.def" />
8 </ItemGroup>
9 <ItemGroup>
10 <ClInclude Include="..\..\external\libogg-1.3.1\include\ogg\ogg.h" />
11 <ClInclude Include="..\..\external\libogg-1.3.1\include\ogg\os_types.h" />
12 </ItemGroup>
13 </Project>
0 <?xml version="1.0" encoding="utf-8"?>
1 <Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2 <ItemGroup Label="ProjectConfigurations">
3 <ProjectConfiguration Include="Debug|ARM">
4 <Configuration>Debug</Configuration>
5 <Platform>ARM</Platform>
6 </ProjectConfiguration>
7 <ProjectConfiguration Include="Debug|Win32">
8 <Configuration>Debug</Configuration>
9 <Platform>Win32</Platform>
10 </ProjectConfiguration>
11 <ProjectConfiguration Include="Debug|x64">
12 <Configuration>Debug</Configuration>
13 <Platform>x64</Platform>
14 </ProjectConfiguration>
15 <ProjectConfiguration Include="Release|ARM">
16 <Configuration>Release</Configuration>
17 <Platform>ARM</Platform>
18 </ProjectConfiguration>
19 <ProjectConfiguration Include="Release|Win32">
20 <Configuration>Release</Configuration>
21 <Platform>Win32</Platform>
22 </ProjectConfiguration>
23 <ProjectConfiguration Include="Release|x64">
24 <Configuration>Release</Configuration>
25 <Platform>x64</Platform>
26 </ProjectConfiguration>
27 </ItemGroup>
28 <ItemGroup>
29 <ClCompile Include="..\..\external\libvorbis-1.3.5\lib\analysis.c" />
30 <ClCompile Include="..\..\external\libvorbis-1.3.5\lib\bitrate.c" />
31 <ClCompile Include="..\..\external\libvorbis-1.3.5\lib\block.c" />
32 <ClCompile Include="..\..\external\libvorbis-1.3.5\lib\codebook.c" />
33 <ClCompile Include="..\..\external\libvorbis-1.3.5\lib\envelope.c" />
34 <ClCompile Include="..\..\external\libvorbis-1.3.5\lib\floor0.c" />
35 <ClCompile Include="..\..\external\libvorbis-1.3.5\lib\floor1.c" />
36 <ClCompile Include="..\..\external\libvorbis-1.3.5\lib\info.c" />
37 <ClCompile Include="..\..\external\libvorbis-1.3.5\lib\lookup.c" />
38 <ClCompile Include="..\..\external\libvorbis-1.3.5\lib\lpc.c" />
39 <ClCompile Include="..\..\external\libvorbis-1.3.5\lib\lsp.c" />
40 <ClCompile Include="..\..\external\libvorbis-1.3.5\lib\mapping0.c" />
41 <ClCompile Include="..\..\external\libvorbis-1.3.5\lib\mdct.c" />
42 <ClCompile Include="..\..\external\libvorbis-1.3.5\lib\psy.c" />
43 <ClCompile Include="..\..\external\libvorbis-1.3.5\lib\registry.c" />
44 <ClCompile Include="..\..\external\libvorbis-1.3.5\lib\res0.c" />
45 <ClCompile Include="..\..\external\libvorbis-1.3.5\lib\sharedbook.c" />
46 <ClCompile Include="..\..\external\libvorbis-1.3.5\lib\smallft.c" />
47 <ClCompile Include="..\..\external\libvorbis-1.3.5\lib\synthesis.c" />
48 <ClCompile Include="..\..\external\libvorbis-1.3.5\lib\vorbisenc.c" />
49 <ClCompile Include="..\..\external\libvorbis-1.3.5\lib\window.c" />
50 </ItemGroup>
51 <ItemGroup>
52 <ClInclude Include="..\..\external\libvorbis-1.3.5\include\vorbis\codec.h" />
53 <ClInclude Include="..\..\external\libvorbis-1.3.5\include\vorbis\vorbisenc.h" />
54 <ClInclude Include="..\..\external\libvorbis-1.3.5\include\vorbis\vorbisfile.h" />
55 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\backends.h" />
56 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\bitrate.h" />
57 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\books\coupled\res_books_stereo.h" />
58 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\books\floor\floor_books.h" />
59 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\books\uncoupled\res_books_uncoupled.h" />
60 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\codebook.h" />
61 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\codec_internal.h" />
62 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\envelope.h" />
63 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\highlevel.h" />
64 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\lookup.h" />
65 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\lookup_data.h" />
66 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\lpc.h" />
67 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\lsp.h" />
68 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\masking.h" />
69 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\mdct.h" />
70 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\misc.h" />
71 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\modes\floor_all.h" />
72 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\modes\psych_11.h" />
73 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\modes\psych_16.h" />
74 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\modes\psych_44.h" />
75 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\modes\psych_8.h" />
76 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\modes\residue_16.h" />
77 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\modes\residue_44.h" />
78 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\modes\residue_44u.h" />
79 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\modes\residue_8.h" />
80 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\modes\setup_11.h" />
81 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\modes\setup_16.h" />
82 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\modes\setup_22.h" />
83 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\modes\setup_32.h" />
84 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\modes\setup_44.h" />
85 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\modes\setup_44u.h" />
86 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\modes\setup_8.h" />
87 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\modes\setup_X.h" />
88 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\os.h" />
89 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\psy.h" />
90 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\registry.h" />
91 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\scales.h" />
92 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\smallft.h" />
93 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\window.h" />
94 </ItemGroup>
95 <ItemGroup>
96 <None Include="..\..\external\libvorbis-1.3.5\win32\vorbis.def" />
97 </ItemGroup>
98 <ItemGroup>
99 <ProjectReference Include="libogg_dynamic-UWP.vcxproj">
100 <Project>{b14f8b7f-c9ff-4fd3-b328-7c68ab801e85}</Project>
101 </ProjectReference>
102 </ItemGroup>
103 <PropertyGroup Label="Globals">
104 <ProjectGuid>{6b6c1f59-6a82-4097-8907-04df5c95d014}</ProjectGuid>
105 <Keyword>Win32Proj</Keyword>
106 <ProjectName>libvorbis_dynamic-UWP</ProjectName>
107 <RootNamespace>libvorbis_dynamic_UWP</RootNamespace>
108 <DefaultLanguage>en-US</DefaultLanguage>
109 <MinimumVisualStudioVersion>12.0</MinimumVisualStudioVersion>
110 <AppContainerApplication>true</AppContainerApplication>
111 <ApplicationType>Windows Store</ApplicationType>
112 <ApplicationTypeRevision>8.1</ApplicationTypeRevision>
113 <TargetPlatformVersion>10.0.10240.0</TargetPlatformVersion>
114 <TargetPlatformMinVersion>10.0.10240.0</TargetPlatformMinVersion>
115 <WindowsTargetPlatformVersion>10.0.10240.0</WindowsTargetPlatformVersion>
116 <WindowsTargetPlatformMinVersion>10.0.10240.0</WindowsTargetPlatformMinVersion>
117 </PropertyGroup>
118 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
119 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
120 <ConfigurationType>DynamicLibrary</ConfigurationType>
121 <UseDebugLibraries>true</UseDebugLibraries>
122 <PlatformToolset>v140</PlatformToolset>
123 </PropertyGroup>
124 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'" Label="Configuration">
125 <ConfigurationType>DynamicLibrary</ConfigurationType>
126 <UseDebugLibraries>true</UseDebugLibraries>
127 <PlatformToolset>v140</PlatformToolset>
128 </PropertyGroup>
129 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
130 <ConfigurationType>DynamicLibrary</ConfigurationType>
131 <UseDebugLibraries>true</UseDebugLibraries>
132 <PlatformToolset>v140</PlatformToolset>
133 </PropertyGroup>
134 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
135 <ConfigurationType>DynamicLibrary</ConfigurationType>
136 <UseDebugLibraries>false</UseDebugLibraries>
137 <WholeProgramOptimization>true</WholeProgramOptimization>
138 <PlatformToolset>v140</PlatformToolset>
139 </PropertyGroup>
140 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'" Label="Configuration">
141 <ConfigurationType>DynamicLibrary</ConfigurationType>
142 <UseDebugLibraries>false</UseDebugLibraries>
143 <WholeProgramOptimization>true</WholeProgramOptimization>
144 <PlatformToolset>v140</PlatformToolset>
145 </PropertyGroup>
146 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
147 <ConfigurationType>DynamicLibrary</ConfigurationType>
148 <UseDebugLibraries>false</UseDebugLibraries>
149 <WholeProgramOptimization>true</WholeProgramOptimization>
150 <PlatformToolset>v140</PlatformToolset>
151 </PropertyGroup>
152 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
153 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
154 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
155 </ImportGroup>
156 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
157 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
158 </ImportGroup>
159 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
160 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
161 </ImportGroup>
162 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
163 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
164 </ImportGroup>
165 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
166 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
167 </ImportGroup>
168 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
169 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
170 </ImportGroup>
171 <PropertyGroup Label="UserMacros" />
172 <PropertyGroup />
173 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
174 <GenerateManifest>false</GenerateManifest>
175 <IgnoreImportLibrary>false</IgnoreImportLibrary>
176 <IntDir>Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\</IntDir>
177 <TargetName>libvorbis</TargetName>
178 </PropertyGroup>
179 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
180 <GenerateManifest>false</GenerateManifest>
181 <IgnoreImportLibrary>false</IgnoreImportLibrary>
182 <IntDir>Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\</IntDir>
183 <TargetName>libvorbis</TargetName>
184 </PropertyGroup>
185 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
186 <GenerateManifest>false</GenerateManifest>
187 <IgnoreImportLibrary>false</IgnoreImportLibrary>
188 <IntDir>Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\</IntDir>
189 <TargetName>libvorbis</TargetName>
190 </PropertyGroup>
191 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
192 <GenerateManifest>false</GenerateManifest>
193 <IgnoreImportLibrary>false</IgnoreImportLibrary>
194 <IntDir>Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\</IntDir>
195 <TargetName>libvorbis</TargetName>
196 </PropertyGroup>
197 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
198 <GenerateManifest>false</GenerateManifest>
199 <IgnoreImportLibrary>false</IgnoreImportLibrary>
200 <IntDir>Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\</IntDir>
201 <TargetName>libvorbis</TargetName>
202 </PropertyGroup>
203 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
204 <GenerateManifest>false</GenerateManifest>
205 <IgnoreImportLibrary>false</IgnoreImportLibrary>
206 <IntDir>Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\</IntDir>
207 <TargetName>libvorbis</TargetName>
208 </PropertyGroup>
209 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
210 <ClCompile>
211 <PrecompiledHeader>NotUsing</PrecompiledHeader>
212 <CompileAsWinRT>false</CompileAsWinRT>
213 <AdditionalIncludeDirectories>..\..\external\libvorbis-1.3.5\include;..\..\external\libogg-1.3.2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
214 <PreprocessorDefinitions>LIBVORBIS_EXPORTS;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
215 <DisableSpecificWarnings>4244;4100;4267;4189;4305;4127;4706</DisableSpecificWarnings>
216 </ClCompile>
217 <Link>
218 <SubSystem>Console</SubSystem>
219 <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
220 <GenerateWindowsMetadata>false</GenerateWindowsMetadata>
221 <ModuleDefinitionFile>..\..\external\libvorbis-1.3.5\win32\vorbis.def</ModuleDefinitionFile>
222 </Link>
223 </ItemDefinitionGroup>
224 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
225 <ClCompile>
226 <PrecompiledHeader>NotUsing</PrecompiledHeader>
227 <CompileAsWinRT>false</CompileAsWinRT>
228 <AdditionalIncludeDirectories>..\..\external\libvorbis-1.3.5\include;..\..\external\libogg-1.3.2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
229 <PreprocessorDefinitions>LIBVORBIS_EXPORTS;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
230 <DisableSpecificWarnings>4244;4100;4267;4189;4305;4127;4706</DisableSpecificWarnings>
231 </ClCompile>
232 <Link>
233 <SubSystem>Console</SubSystem>
234 <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
235 <GenerateWindowsMetadata>false</GenerateWindowsMetadata>
236 <ModuleDefinitionFile>..\..\external\libvorbis-1.3.5\win32\vorbis.def</ModuleDefinitionFile>
237 </Link>
238 </ItemDefinitionGroup>
239 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|arm'">
240 <ClCompile>
241 <PrecompiledHeader>NotUsing</PrecompiledHeader>
242 <CompileAsWinRT>false</CompileAsWinRT>
243 <AdditionalIncludeDirectories>..\..\external\libvorbis-1.3.5\include;..\..\external\libogg-1.3.2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
244 <PreprocessorDefinitions>LIBVORBIS_EXPORTS;_CRT_SECURE_NO_WARNINGS;_WIN32_WCE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
245 <DisableSpecificWarnings>4244;4100;4267;4189;4305;4127;4706</DisableSpecificWarnings>
246 </ClCompile>
247 <Link>
248 <SubSystem>Console</SubSystem>
249 <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
250 <GenerateWindowsMetadata>false</GenerateWindowsMetadata>
251 <ModuleDefinitionFile>..\..\external\libvorbis-1.3.5\win32\vorbis.def</ModuleDefinitionFile>
252 </Link>
253 </ItemDefinitionGroup>
254 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|arm'">
255 <ClCompile>
256 <PrecompiledHeader>NotUsing</PrecompiledHeader>
257 <CompileAsWinRT>false</CompileAsWinRT>
258 <AdditionalIncludeDirectories>..\..\external\libvorbis-1.3.5\include;..\..\external\libogg-1.3.2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
259 <PreprocessorDefinitions>LIBVORBIS_EXPORTS;_CRT_SECURE_NO_WARNINGS;_WIN32_WCE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
260 <DisableSpecificWarnings>4244;4100;4267;4189;4305;4127;4706</DisableSpecificWarnings>
261 </ClCompile>
262 <Link>
263 <SubSystem>Console</SubSystem>
264 <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
265 <GenerateWindowsMetadata>false</GenerateWindowsMetadata>
266 <ModuleDefinitionFile>..\..\external\libvorbis-1.3.5\win32\vorbis.def</ModuleDefinitionFile>
267 </Link>
268 </ItemDefinitionGroup>
269 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
270 <ClCompile>
271 <PrecompiledHeader>NotUsing</PrecompiledHeader>
272 <CompileAsWinRT>false</CompileAsWinRT>
273 <AdditionalIncludeDirectories>..\..\external\libvorbis-1.3.5\include;..\..\external\libogg-1.3.2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
274 <PreprocessorDefinitions>LIBVORBIS_EXPORTS;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
275 <DisableSpecificWarnings>4244;4100;4267;4189;4305;4127;4706</DisableSpecificWarnings>
276 </ClCompile>
277 <Link>
278 <SubSystem>Console</SubSystem>
279 <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
280 <GenerateWindowsMetadata>false</GenerateWindowsMetadata>
281 <ModuleDefinitionFile>..\..\external\libvorbis-1.3.5\win32\vorbis.def</ModuleDefinitionFile>
282 </Link>
283 </ItemDefinitionGroup>
284 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
285 <ClCompile>
286 <PrecompiledHeader>NotUsing</PrecompiledHeader>
287 <CompileAsWinRT>false</CompileAsWinRT>
288 <AdditionalIncludeDirectories>..\..\external\libvorbis-1.3.5\include;..\..\external\libogg-1.3.2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
289 <PreprocessorDefinitions>LIBVORBIS_EXPORTS;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
290 <DisableSpecificWarnings>4244;4100;4267;4189;4305;4127;4706</DisableSpecificWarnings>
291 </ClCompile>
292 <Link>
293 <SubSystem>Console</SubSystem>
294 <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
295 <GenerateWindowsMetadata>false</GenerateWindowsMetadata>
296 <ModuleDefinitionFile>..\..\external\libvorbis-1.3.5\win32\vorbis.def</ModuleDefinitionFile>
297 </Link>
298 </ItemDefinitionGroup>
299 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
300 <ImportGroup Label="ExtensionTargets">
301 </ImportGroup>
302 </Project>
0 <?xml version="1.0" encoding="utf-8"?>
1 <Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2 <ItemGroup>
3 <ClCompile Include="..\..\external\libvorbis-1.3.3\lib\analysis.c" />
4 <ClCompile Include="..\..\external\libvorbis-1.3.3\lib\bitrate.c" />
5 <ClCompile Include="..\..\external\libvorbis-1.3.3\lib\block.c" />
6 <ClCompile Include="..\..\external\libvorbis-1.3.3\lib\codebook.c" />
7 <ClCompile Include="..\..\external\libvorbis-1.3.3\lib\envelope.c" />
8 <ClCompile Include="..\..\external\libvorbis-1.3.3\lib\floor0.c" />
9 <ClCompile Include="..\..\external\libvorbis-1.3.3\lib\floor1.c" />
10 <ClCompile Include="..\..\external\libvorbis-1.3.3\lib\info.c" />
11 <ClCompile Include="..\..\external\libvorbis-1.3.3\lib\lookup.c" />
12 <ClCompile Include="..\..\external\libvorbis-1.3.3\lib\lpc.c" />
13 <ClCompile Include="..\..\external\libvorbis-1.3.3\lib\lsp.c" />
14 <ClCompile Include="..\..\external\libvorbis-1.3.3\lib\mapping0.c" />
15 <ClCompile Include="..\..\external\libvorbis-1.3.3\lib\mdct.c" />
16 <ClCompile Include="..\..\external\libvorbis-1.3.3\lib\psy.c" />
17 <ClCompile Include="..\..\external\libvorbis-1.3.3\lib\registry.c" />
18 <ClCompile Include="..\..\external\libvorbis-1.3.3\lib\res0.c" />
19 <ClCompile Include="..\..\external\libvorbis-1.3.3\lib\sharedbook.c" />
20 <ClCompile Include="..\..\external\libvorbis-1.3.3\lib\smallft.c" />
21 <ClCompile Include="..\..\external\libvorbis-1.3.3\lib\synthesis.c" />
22 <ClCompile Include="..\..\external\libvorbis-1.3.3\lib\vorbisenc.c" />
23 <ClCompile Include="..\..\external\libvorbis-1.3.3\lib\window.c" />
24 </ItemGroup>
25 <ItemGroup>
26 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\backends.h" />
27 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\bitrate.h" />
28 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\codebook.h" />
29 <ClInclude Include="..\..\external\libvorbis-1.3.3\include\vorbis\codec.h" />
30 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\codec_internal.h" />
31 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\envelope.h" />
32 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\modes\floor_all.h" />
33 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\books\floor\floor_books.h" />
34 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\highlevel.h" />
35 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\lookup.h" />
36 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\lookup_data.h" />
37 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\lpc.h" />
38 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\lsp.h" />
39 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\masking.h" />
40 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\mdct.h" />
41 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\misc.h" />
42 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\os.h" />
43 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\psy.h" />
44 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\modes\psych_8.h" />
45 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\modes\psych_11.h" />
46 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\modes\psych_16.h" />
47 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\modes\psych_44.h" />
48 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\registry.h" />
49 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\books\coupled\res_books_stereo.h" />
50 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\books\uncoupled\res_books_uncoupled.h" />
51 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\modes\residue_8.h" />
52 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\modes\residue_16.h" />
53 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\modes\residue_44.h" />
54 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\modes\residue_44u.h" />
55 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\scales.h" />
56 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\modes\setup_8.h" />
57 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\modes\setup_11.h" />
58 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\modes\setup_16.h" />
59 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\modes\setup_22.h" />
60 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\modes\setup_32.h" />
61 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\modes\setup_44.h" />
62 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\modes\setup_44u.h" />
63 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\modes\setup_X.h" />
64 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\smallft.h" />
65 <ClInclude Include="..\..\external\libvorbis-1.3.3\include\vorbis\vorbisenc.h" />
66 <ClInclude Include="..\..\external\libvorbis-1.3.3\include\vorbis\vorbisfile.h" />
67 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\window.h" />
68 </ItemGroup>
69 <ItemGroup>
70 <None Include="..\..\external\libvorbis-1.3.3\win32\vorbis.def" />
71 </ItemGroup>
72 </Project>
0 <?xml version="1.0" encoding="utf-8"?>
1 <Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2 <ItemGroup Label="ProjectConfigurations">
3 <ProjectConfiguration Include="Debug|ARM">
4 <Configuration>Debug</Configuration>
5 <Platform>ARM</Platform>
6 </ProjectConfiguration>
7 <ProjectConfiguration Include="Debug|Win32">
8 <Configuration>Debug</Configuration>
9 <Platform>Win32</Platform>
10 </ProjectConfiguration>
11 <ProjectConfiguration Include="Debug|x64">
12 <Configuration>Debug</Configuration>
13 <Platform>x64</Platform>
14 </ProjectConfiguration>
15 <ProjectConfiguration Include="Release|ARM">
16 <Configuration>Release</Configuration>
17 <Platform>ARM</Platform>
18 </ProjectConfiguration>
19 <ProjectConfiguration Include="Release|Win32">
20 <Configuration>Release</Configuration>
21 <Platform>Win32</Platform>
22 </ProjectConfiguration>
23 <ProjectConfiguration Include="Release|x64">
24 <Configuration>Release</Configuration>
25 <Platform>x64</Platform>
26 </ProjectConfiguration>
27 </ItemGroup>
28 <ItemGroup>
29 <ClCompile Include="..\..\external\libvorbis-1.3.5\lib\vorbisfile.c" />
30 </ItemGroup>
31 <ItemGroup>
32 <ClInclude Include="..\..\external\libvorbis-1.3.5\include\vorbis\vorbisfile.h" />
33 </ItemGroup>
34 <ItemGroup>
35 <ProjectReference Include="libogg_dynamic-UWP.vcxproj">
36 <Project>{b14f8b7f-c9ff-4fd3-b328-7c68ab801e85}</Project>
37 </ProjectReference>
38 <ProjectReference Include="libvorbis_dynamic-UWP.vcxproj">
39 <Project>{6b6c1f59-6a82-4097-8907-04df5c95d014}</Project>
40 </ProjectReference>
41 </ItemGroup>
42 <PropertyGroup Label="Globals">
43 <ProjectGuid>{70ef3b8f-6aaf-401b-9818-3371e950e73c}</ProjectGuid>
44 <Keyword>DynamicLibrary</Keyword>
45 <ProjectName>libvorbisfile_dynamic-UWP</ProjectName>
46 <RootNamespace>libvorbisfile_dynamic_UWP</RootNamespace>
47 <DefaultLanguage>en-US</DefaultLanguage>
48 <MinimumVisualStudioVersion>14.0</MinimumVisualStudioVersion>
49 <AppContainerApplication>true</AppContainerApplication>
50 <ApplicationType>Windows Store</ApplicationType>
51 <ApplicationTypeRevision>8.2</ApplicationTypeRevision>
52 <TargetPlatformVersion>10.0.10240.0</TargetPlatformVersion>
53 <TargetPlatformMinVersion>10.0.10240.0</TargetPlatformMinVersion>
54 <WindowsTargetPlatformVersion>10.0.10240.0</WindowsTargetPlatformVersion>
55 <WindowsTargetPlatformMinVersion>10.0.10240.0</WindowsTargetPlatformMinVersion>
56 </PropertyGroup>
57 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
58 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
59 <ConfigurationType>DynamicLibrary</ConfigurationType>
60 <UseDebugLibraries>true</UseDebugLibraries>
61 <PlatformToolset>v140</PlatformToolset>
62 </PropertyGroup>
63 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'" Label="Configuration">
64 <ConfigurationType>DynamicLibrary</ConfigurationType>
65 <UseDebugLibraries>true</UseDebugLibraries>
66 <PlatformToolset>v140</PlatformToolset>
67 </PropertyGroup>
68 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
69 <ConfigurationType>DynamicLibrary</ConfigurationType>
70 <UseDebugLibraries>true</UseDebugLibraries>
71 <PlatformToolset>v140</PlatformToolset>
72 </PropertyGroup>
73 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
74 <ConfigurationType>DynamicLibrary</ConfigurationType>
75 <UseDebugLibraries>false</UseDebugLibraries>
76 <WholeProgramOptimization>true</WholeProgramOptimization>
77 <PlatformToolset>v140</PlatformToolset>
78 </PropertyGroup>
79 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'" Label="Configuration">
80 <ConfigurationType>DynamicLibrary</ConfigurationType>
81 <UseDebugLibraries>false</UseDebugLibraries>
82 <WholeProgramOptimization>true</WholeProgramOptimization>
83 <PlatformToolset>v140</PlatformToolset>
84 </PropertyGroup>
85 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
86 <ConfigurationType>DynamicLibrary</ConfigurationType>
87 <UseDebugLibraries>false</UseDebugLibraries>
88 <WholeProgramOptimization>true</WholeProgramOptimization>
89 <PlatformToolset>v140</PlatformToolset>
90 </PropertyGroup>
91 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
92 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
93 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
94 </ImportGroup>
95 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
96 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
97 </ImportGroup>
98 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
99 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
100 </ImportGroup>
101 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
102 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
103 </ImportGroup>
104 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
105 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
106 </ImportGroup>
107 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
108 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
109 </ImportGroup>
110 <PropertyGroup Label="UserMacros" />
111 <PropertyGroup />
112 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
113 <GenerateManifest>false</GenerateManifest>
114 <IgnoreImportLibrary>false</IgnoreImportLibrary>
115 <IntDir>Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\</IntDir>
116 <TargetName>libvorbisfile</TargetName>
117 </PropertyGroup>
118 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
119 <GenerateManifest>false</GenerateManifest>
120 <IgnoreImportLibrary>false</IgnoreImportLibrary>
121 <IntDir>Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\</IntDir>
122 <TargetName>libvorbisfile</TargetName>
123 </PropertyGroup>
124 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
125 <GenerateManifest>false</GenerateManifest>
126 <IgnoreImportLibrary>false</IgnoreImportLibrary>
127 <IntDir>Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\</IntDir>
128 <TargetName>libvorbisfile</TargetName>
129 </PropertyGroup>
130 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
131 <GenerateManifest>false</GenerateManifest>
132 <IgnoreImportLibrary>false</IgnoreImportLibrary>
133 <IntDir>Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\</IntDir>
134 <TargetName>libvorbisfile</TargetName>
135 </PropertyGroup>
136 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
137 <GenerateManifest>false</GenerateManifest>
138 <IgnoreImportLibrary>false</IgnoreImportLibrary>
139 <IntDir>Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\</IntDir>
140 <TargetName>libvorbisfile</TargetName>
141 </PropertyGroup>
142 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
143 <GenerateManifest>false</GenerateManifest>
144 <IgnoreImportLibrary>false</IgnoreImportLibrary>
145 <IntDir>Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\</IntDir>
146 <TargetName>libvorbisfile</TargetName>
147 </PropertyGroup>
148 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
149 <ClCompile>
150 <PrecompiledHeader>NotUsing</PrecompiledHeader>
151 <CompileAsWinRT>false</CompileAsWinRT>
152 <AdditionalIncludeDirectories>..\..\external\libvorbis-1.3.5\include;..\..\external\libogg-1.3.2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
153 <PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;_WINDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
154 <DisableSpecificWarnings>4244;4101</DisableSpecificWarnings>
155 </ClCompile>
156 <Link>
157 <SubSystem>Console</SubSystem>
158 <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
159 <GenerateWindowsMetadata>false</GenerateWindowsMetadata>
160 <ModuleDefinitionFile>..\..\external\libvorbis-1.3.5\win32\vorbisfile.def</ModuleDefinitionFile>
161 </Link>
162 </ItemDefinitionGroup>
163 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
164 <ClCompile>
165 <PrecompiledHeader>NotUsing</PrecompiledHeader>
166 <CompileAsWinRT>false</CompileAsWinRT>
167 <AdditionalIncludeDirectories>..\..\external\libvorbis-1.3.5\include;..\..\external\libogg-1.3.2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
168 <PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
169 <DisableSpecificWarnings>4244;4101</DisableSpecificWarnings>
170 </ClCompile>
171 <Link>
172 <SubSystem>Console</SubSystem>
173 <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
174 <GenerateWindowsMetadata>false</GenerateWindowsMetadata>
175 <ModuleDefinitionFile>..\..\external\libvorbis-1.3.5\win32\vorbisfile.def</ModuleDefinitionFile>
176 </Link>
177 </ItemDefinitionGroup>
178 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|arm'">
179 <ClCompile>
180 <PrecompiledHeader>NotUsing</PrecompiledHeader>
181 <CompileAsWinRT>false</CompileAsWinRT>
182 <AdditionalIncludeDirectories>..\..\external\libvorbis-1.3.5\include;..\..\external\libogg-1.3.2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
183 <PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;_WIN32_WCE;_WINDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
184 <DisableSpecificWarnings>4244;4101</DisableSpecificWarnings>
185 </ClCompile>
186 <Link>
187 <SubSystem>Console</SubSystem>
188 <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
189 <GenerateWindowsMetadata>false</GenerateWindowsMetadata>
190 <ModuleDefinitionFile>..\..\external\libvorbis-1.3.5\win32\vorbisfile.def</ModuleDefinitionFile>
191 </Link>
192 </ItemDefinitionGroup>
193 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|arm'">
194 <ClCompile>
195 <PrecompiledHeader>NotUsing</PrecompiledHeader>
196 <CompileAsWinRT>false</CompileAsWinRT>
197 <AdditionalIncludeDirectories>..\..\external\libvorbis-1.3.5\include;..\..\external\libogg-1.3.2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
198 <PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;_WIN32_WCE;NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
199 <DisableSpecificWarnings>4244;4101</DisableSpecificWarnings>
200 </ClCompile>
201 <Link>
202 <SubSystem>Console</SubSystem>
203 <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
204 <GenerateWindowsMetadata>false</GenerateWindowsMetadata>
205 <ModuleDefinitionFile>..\..\external\libvorbis-1.3.5\win32\vorbisfile.def</ModuleDefinitionFile>
206 </Link>
207 </ItemDefinitionGroup>
208 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
209 <ClCompile>
210 <PrecompiledHeader>NotUsing</PrecompiledHeader>
211 <CompileAsWinRT>false</CompileAsWinRT>
212 <AdditionalIncludeDirectories>..\..\external\libvorbis-1.3.5\include;..\..\external\libogg-1.3.2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
213 <PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;_WINDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
214 <DisableSpecificWarnings>4244;4101</DisableSpecificWarnings>
215 </ClCompile>
216 <Link>
217 <SubSystem>Console</SubSystem>
218 <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
219 <GenerateWindowsMetadata>false</GenerateWindowsMetadata>
220 <ModuleDefinitionFile>..\..\external\libvorbis-1.3.5\win32\vorbisfile.def</ModuleDefinitionFile>
221 </Link>
222 </ItemDefinitionGroup>
223 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
224 <ClCompile>
225 <PrecompiledHeader>NotUsing</PrecompiledHeader>
226 <CompileAsWinRT>false</CompileAsWinRT>
227 <AdditionalIncludeDirectories>..\..\external\libvorbis-1.3.5\include;..\..\external\libogg-1.3.2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
228 <PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
229 <DisableSpecificWarnings>4244;4101</DisableSpecificWarnings>
230 </ClCompile>
231 <Link>
232 <SubSystem>Console</SubSystem>
233 <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
234 <GenerateWindowsMetadata>false</GenerateWindowsMetadata>
235 <ModuleDefinitionFile>..\..\external\libvorbis-1.3.5\win32\vorbisfile.def</ModuleDefinitionFile>
236 </Link>
237 </ItemDefinitionGroup>
238 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
239 <ImportGroup Label="ExtensionTargets">
240 </ImportGroup>
241 </Project>
0 <?xml version="1.0" encoding="utf-8"?>
1 <Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2 <ItemGroup>
3 <ClCompile Include="..\..\external\libvorbis-1.3.3\lib\vorbisfile.c" />
4 </ItemGroup>
5 <ItemGroup>
6 <ClInclude Include="..\..\external\libvorbis-1.3.3\include\vorbis\vorbisfile.h" />
7 </ItemGroup>
8 </Project>
0 
1 Microsoft Visual Studio Solution File, Format Version 12.00
2 # Visual Studio 2012
3 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SDL2_mixer-WinPhone80", "SDL_mixer-WinPhone80.vcxproj", "{1F710837-D5C0-4E7F-ABEA-FBFF64722E7E}"
4 EndProject
5 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libogg_dynamic-WinPhone80", "libogg_dynamic-WinPhone80.vcxproj", "{DDB6F9C3-25D1-43C1-B439-20F2016D2F2E}"
6 EndProject
7 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libvorbis_dynamic-WinPhone80", "libvorbis_dynamic-WinPhone80.vcxproj", "{8859E555-5684-436D-AD14-4E8CEB11EAD1}"
8 EndProject
9 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libvorbisfile_dynamic-WinPhone80", "libvorbisfile_dynamic-WinPhone80.vcxproj", "{E1553EFC-2C62-41AE-ABA3-D933D66D435D}"
10 EndProject
11 Global
12 GlobalSection(SolutionConfigurationPlatforms) = preSolution
13 Debug|ARM = Debug|ARM
14 Debug|Win32 = Debug|Win32
15 Release|ARM = Release|ARM
16 Release|Win32 = Release|Win32
17 EndGlobalSection
18 GlobalSection(ProjectConfigurationPlatforms) = postSolution
19 {1F710837-D5C0-4E7F-ABEA-FBFF64722E7E}.Debug|ARM.ActiveCfg = Debug|ARM
20 {1F710837-D5C0-4E7F-ABEA-FBFF64722E7E}.Debug|ARM.Build.0 = Debug|ARM
21 {1F710837-D5C0-4E7F-ABEA-FBFF64722E7E}.Debug|Win32.ActiveCfg = Debug|Win32
22 {1F710837-D5C0-4E7F-ABEA-FBFF64722E7E}.Debug|Win32.Build.0 = Debug|Win32
23 {1F710837-D5C0-4E7F-ABEA-FBFF64722E7E}.Release|ARM.ActiveCfg = Release|ARM
24 {1F710837-D5C0-4E7F-ABEA-FBFF64722E7E}.Release|ARM.Build.0 = Release|ARM
25 {1F710837-D5C0-4E7F-ABEA-FBFF64722E7E}.Release|Win32.ActiveCfg = Release|Win32
26 {1F710837-D5C0-4E7F-ABEA-FBFF64722E7E}.Release|Win32.Build.0 = Release|Win32
27 {DDB6F9C3-25D1-43C1-B439-20F2016D2F2E}.Debug|ARM.ActiveCfg = Debug|ARM
28 {DDB6F9C3-25D1-43C1-B439-20F2016D2F2E}.Debug|ARM.Build.0 = Debug|ARM
29 {DDB6F9C3-25D1-43C1-B439-20F2016D2F2E}.Debug|Win32.ActiveCfg = Debug|Win32
30 {DDB6F9C3-25D1-43C1-B439-20F2016D2F2E}.Debug|Win32.Build.0 = Debug|Win32
31 {DDB6F9C3-25D1-43C1-B439-20F2016D2F2E}.Release|ARM.ActiveCfg = Release|ARM
32 {DDB6F9C3-25D1-43C1-B439-20F2016D2F2E}.Release|ARM.Build.0 = Release|ARM
33 {DDB6F9C3-25D1-43C1-B439-20F2016D2F2E}.Release|Win32.ActiveCfg = Release|Win32
34 {DDB6F9C3-25D1-43C1-B439-20F2016D2F2E}.Release|Win32.Build.0 = Release|Win32
35 {8859E555-5684-436D-AD14-4E8CEB11EAD1}.Debug|ARM.ActiveCfg = Debug|ARM
36 {8859E555-5684-436D-AD14-4E8CEB11EAD1}.Debug|ARM.Build.0 = Debug|ARM
37 {8859E555-5684-436D-AD14-4E8CEB11EAD1}.Debug|Win32.ActiveCfg = Debug|Win32
38 {8859E555-5684-436D-AD14-4E8CEB11EAD1}.Debug|Win32.Build.0 = Debug|Win32
39 {8859E555-5684-436D-AD14-4E8CEB11EAD1}.Release|ARM.ActiveCfg = Release|ARM
40 {8859E555-5684-436D-AD14-4E8CEB11EAD1}.Release|ARM.Build.0 = Release|ARM
41 {8859E555-5684-436D-AD14-4E8CEB11EAD1}.Release|Win32.ActiveCfg = Release|Win32
42 {8859E555-5684-436D-AD14-4E8CEB11EAD1}.Release|Win32.Build.0 = Release|Win32
43 {E1553EFC-2C62-41AE-ABA3-D933D66D435D}.Debug|ARM.ActiveCfg = Debug|ARM
44 {E1553EFC-2C62-41AE-ABA3-D933D66D435D}.Debug|ARM.Build.0 = Debug|ARM
45 {E1553EFC-2C62-41AE-ABA3-D933D66D435D}.Debug|Win32.ActiveCfg = Debug|Win32
46 {E1553EFC-2C62-41AE-ABA3-D933D66D435D}.Debug|Win32.Build.0 = Debug|Win32
47 {E1553EFC-2C62-41AE-ABA3-D933D66D435D}.Release|ARM.ActiveCfg = Release|ARM
48 {E1553EFC-2C62-41AE-ABA3-D933D66D435D}.Release|ARM.Build.0 = Release|ARM
49 {E1553EFC-2C62-41AE-ABA3-D933D66D435D}.Release|Win32.ActiveCfg = Release|Win32
50 {E1553EFC-2C62-41AE-ABA3-D933D66D435D}.Release|Win32.Build.0 = Release|Win32
51 EndGlobalSection
52 GlobalSection(SolutionProperties) = preSolution
53 HideSolutionNode = FALSE
54 EndGlobalSection
55 EndGlobal
0 <?xml version="1.0" encoding="utf-8"?>
1 <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2 <ItemGroup Label="ProjectConfigurations">
3 <ProjectConfiguration Include="Debug|Win32">
4 <Configuration>Debug</Configuration>
5 <Platform>Win32</Platform>
6 </ProjectConfiguration>
7 <ProjectConfiguration Include="Debug|ARM">
8 <Configuration>Debug</Configuration>
9 <Platform>ARM</Platform>
10 </ProjectConfiguration>
11 <ProjectConfiguration Include="Release|Win32">
12 <Configuration>Release</Configuration>
13 <Platform>Win32</Platform>
14 </ProjectConfiguration>
15 <ProjectConfiguration Include="Release|ARM">
16 <Configuration>Release</Configuration>
17 <Platform>ARM</Platform>
18 </ProjectConfiguration>
19 </ItemGroup>
20 <PropertyGroup Label="Globals">
21 <ProjectGuid>{1f710837-d5c0-4e7f-abea-fbff64722e7e}</ProjectGuid>
22 <RootNamespace>SDL2_mixer_WinPhone</RootNamespace>
23 <DefaultLanguage>en-US</DefaultLanguage>
24 <MinimumVisualStudioVersion>11.0</MinimumVisualStudioVersion>
25 <ProjectName>SDL2_mixer-WinPhone80</ProjectName>
26 </PropertyGroup>
27 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
28 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
29 <ConfigurationType>DynamicLibrary</ConfigurationType>
30 <UseDebugLibraries>true</UseDebugLibraries>
31 <PlatformToolset>v110_wp80</PlatformToolset>
32 <IgnoreImportLibrary>false</IgnoreImportLibrary>
33 </PropertyGroup>
34 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'" Label="Configuration">
35 <ConfigurationType>DynamicLibrary</ConfigurationType>
36 <UseDebugLibraries>true</UseDebugLibraries>
37 <PlatformToolset>v110_wp80</PlatformToolset>
38 <IgnoreImportLibrary>false</IgnoreImportLibrary>
39 </PropertyGroup>
40 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
41 <ConfigurationType>DynamicLibrary</ConfigurationType>
42 <UseDebugLibraries>false</UseDebugLibraries>
43 <WholeProgramOptimization>true</WholeProgramOptimization>
44 <PlatformToolset>v110_wp80</PlatformToolset>
45 <IgnoreImportLibrary>false</IgnoreImportLibrary>
46 </PropertyGroup>
47 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'" Label="Configuration">
48 <ConfigurationType>DynamicLibrary</ConfigurationType>
49 <UseDebugLibraries>false</UseDebugLibraries>
50 <WholeProgramOptimization>true</WholeProgramOptimization>
51 <PlatformToolset>v110_wp80</PlatformToolset>
52 <IgnoreImportLibrary>false</IgnoreImportLibrary>
53 </PropertyGroup>
54 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
55 <ImportGroup Label="PropertySheets">
56 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
57 </ImportGroup>
58 <PropertyGroup Label="UserMacros" />
59 <PropertyGroup>
60 <GenerateManifest>false</GenerateManifest>
61 </PropertyGroup>
62 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
63 <IntDir>Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\</IntDir>
64 <TargetName>SDL2_mixer</TargetName>
65 </PropertyGroup>
66 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
67 <IntDir>Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\</IntDir>
68 <TargetName>SDL2_mixer</TargetName>
69 </PropertyGroup>
70 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
71 <IntDir>Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\</IntDir>
72 <TargetName>SDL2_mixer</TargetName>
73 </PropertyGroup>
74 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
75 <IntDir>Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\</IntDir>
76 <TargetName>SDL2_mixer</TargetName>
77 </PropertyGroup>
78 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
79 <ClCompile>
80 <PreprocessorDefinitions>_USRDLL;_CRT_SECURE_NO_WARNINGS;MUSIC_WAV;MUSIC_OGG;OGG_DYNAMIC="libvorbisfile.dll";MUSIC_MID_TIMIDITY;%(PreprocessorDefinitions)</PreprocessorDefinitions>
81 <PrecompiledHeader>NotUsing</PrecompiledHeader>
82 <PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
83 <CompileAsWinRT>false</CompileAsWinRT>
84 <AdditionalUsingDirectories>$(WindowsSDK_MetadataPath);$(AdditionalUsingDirectories)</AdditionalUsingDirectories>
85 <AdditionalIncludeDirectories>..\..\external\libogg-1.3.2\include;..\..\external\libvorbis-1.3.5\include;..\..\..\SDL\include</AdditionalIncludeDirectories>
86 </ClCompile>
87 <Link>
88 <SubSystem>Console</SubSystem>
89 <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
90 <GenerateWindowsMetadata>false</GenerateWindowsMetadata>
91 <GenerateDebugInformation>true</GenerateDebugInformation>
92 </Link>
93 </ItemDefinitionGroup>
94 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
95 <ClCompile>
96 <PreprocessorDefinitions>_USRDLL;_CRT_SECURE_NO_WARNINGS;MUSIC_WAV;MUSIC_OGG;OGG_DYNAMIC="libvorbisfile.dll";MUSIC_MID_TIMIDITY;NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
97 <PrecompiledHeader>NotUsing</PrecompiledHeader>
98 <PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
99 <CompileAsWinRT>false</CompileAsWinRT>
100 <AdditionalUsingDirectories>$(WindowsSDK_MetadataPath);$(AdditionalUsingDirectories)</AdditionalUsingDirectories>
101 <AdditionalIncludeDirectories>..\..\external\libogg-1.3.2\include;..\..\external\libvorbis-1.3.5\include;..\..\..\SDL\include</AdditionalIncludeDirectories>
102 </ClCompile>
103 <Link>
104 <SubSystem>Console</SubSystem>
105 <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
106 <GenerateWindowsMetadata>false</GenerateWindowsMetadata>
107 <GenerateDebugInformation>true</GenerateDebugInformation>
108 </Link>
109 </ItemDefinitionGroup>
110 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
111 <ClCompile>
112 <PreprocessorDefinitions>_USRDLL;_CRT_SECURE_NO_WARNINGS;MUSIC_WAV;MUSIC_OGG;OGG_DYNAMIC="libvorbisfile.dll";MUSIC_MID_TIMIDITY;%(PreprocessorDefinitions)</PreprocessorDefinitions>
113 <PrecompiledHeader>NotUsing</PrecompiledHeader>
114 <PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
115 <CompileAsWinRT>false</CompileAsWinRT>
116 <AdditionalUsingDirectories>$(WindowsSDK_MetadataPath);$(AdditionalUsingDirectories)</AdditionalUsingDirectories>
117 <AdditionalIncludeDirectories>..\..\external\libogg-1.3.2\include;..\..\external\libvorbis-1.3.5\include;..\..\..\SDL\include</AdditionalIncludeDirectories>
118 </ClCompile>
119 <Link>
120 <SubSystem>Console</SubSystem>
121 <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
122 <GenerateWindowsMetadata>false</GenerateWindowsMetadata>
123 <GenerateDebugInformation>true</GenerateDebugInformation>
124 </Link>
125 </ItemDefinitionGroup>
126 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
127 <ClCompile>
128 <PreprocessorDefinitions>_USRDLL;_CRT_SECURE_NO_WARNINGS;MUSIC_WAV;MUSIC_OGG;OGG_DYNAMIC="libvorbisfile.dll";MUSIC_MID_TIMIDITY;NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
129 <PrecompiledHeader>NotUsing</PrecompiledHeader>
130 <PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
131 <CompileAsWinRT>false</CompileAsWinRT>
132 <AdditionalUsingDirectories>$(WindowsSDK_MetadataPath);$(AdditionalUsingDirectories)</AdditionalUsingDirectories>
133 <AdditionalIncludeDirectories>..\..\external\libogg-1.3.2\include;..\..\external\libvorbis-1.3.5\include;..\..\..\SDL\include</AdditionalIncludeDirectories>
134 </ClCompile>
135 <Link>
136 <SubSystem>Console</SubSystem>
137 <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
138 <GenerateWindowsMetadata>false</GenerateWindowsMetadata>
139 <GenerateDebugInformation>true</GenerateDebugInformation>
140 </Link>
141 </ItemDefinitionGroup>
142 <ItemGroup>
143 <Reference Include="Windows">
144 <IsWinMDFile>true</IsWinMDFile>
145 </Reference>
146 <Reference Include="platform.winmd">
147 <IsWinMDFile>true</IsWinMDFile>
148 <Private>false</Private>
149 </Reference>
150 </ItemGroup>
151 <ItemGroup>
152 <ProjectReference Include="..\..\..\SDL\VisualC-WinRT\WinPhone80_VS2012\SDL-WinPhone80.vcxproj">
153 <Project>{33048af1-031a-4ce6-b61e-fad2db832e9e}</Project>
154 </ProjectReference>
155 <ProjectReference Include="libogg_dynamic-WinPhone80.vcxproj">
156 <Project>{ddb6f9c3-25d1-43c1-b439-20f2016d2f2e}</Project>
157 </ProjectReference>
158 <ProjectReference Include="libvorbisfile_dynamic-WinPhone80.vcxproj">
159 <Project>{e1553efc-2c62-41ae-aba3-d933d66d435d}</Project>
160 </ProjectReference>
161 <ProjectReference Include="libvorbis_dynamic-WinPhone80.vcxproj">
162 <Project>{8859e555-5684-436d-ad14-4e8ceb11ead1}</Project>
163 </ProjectReference>
164 </ItemGroup>
165 <ItemGroup>
166 <ClCompile Include="..\..\effects_internal.c" />
167 <ClCompile Include="..\..\effect_position.c" />
168 <ClCompile Include="..\..\effect_stereoreverse.c" />
169 <ClCompile Include="..\..\load_aiff.c" />
170 <ClCompile Include="..\..\load_voc.c" />
171 <ClCompile Include="..\..\mixer.c" />
172 <ClCompile Include="..\..\music.c" />
173 <ClCompile Include="..\..\music_cmd.c" />
174 <ClCompile Include="..\..\music_flac.c" />
175 <ClCompile Include="..\..\music_fluidsynth.c" />
176 <ClCompile Include="..\..\music_mad.c" />
177 <ClCompile Include="..\..\music_mikmod.c" />
178 <ClCompile Include="..\..\music_modplug.c" />
179 <ClCompile Include="..\..\music_mpg123.c" />
180 <ClCompile Include="..\..\music_nativemidi.c" />
181 <ClCompile Include="..\..\music_ogg.c" />
182 <ClCompile Include="..\..\music_smpeg.c" />
183 <ClCompile Include="..\..\music_timidity.c" />
184 <ClCompile Include="..\..\music_wav.c" />
185 <ClCompile Include="..\..\timidity\common.c" />
186 <ClCompile Include="..\..\timidity\instrum.c" />
187 <ClCompile Include="..\..\timidity\mix.c" />
188 <ClCompile Include="..\..\timidity\output.c" />
189 <ClCompile Include="..\..\timidity\playmidi.c" />
190 <ClCompile Include="..\..\timidity\readmidi.c" />
191 <ClCompile Include="..\..\timidity\resample.c" />
192 <ClCompile Include="..\..\timidity\tables.c" />
193 <ClCompile Include="..\..\timidity\timidity.c" />
194 </ItemGroup>
195 <ItemGroup>
196 <ClInclude Include="..\..\effects_internal.h" />
197 <ClInclude Include="..\..\load_aiff.h" />
198 <ClInclude Include="..\..\load_voc.h" />
199 <ClInclude Include="..\..\mixer.h" />
200 <ClInclude Include="..\..\music.h" />
201 <ClInclude Include="..\..\music_cmd.h" />
202 <ClInclude Include="..\..\music_flac.h" />
203 <ClInclude Include="..\..\music_fluidsynth.h" />
204 <ClInclude Include="..\..\music_mad.h" />
205 <ClInclude Include="..\..\music_mikmod.h" />
206 <ClInclude Include="..\..\music_modplug.h" />
207 <ClInclude Include="..\..\music_mpg123.h" />
208 <ClInclude Include="..\..\music_nativemidi.h" />
209 <ClInclude Include="..\..\music_ogg.h" />
210 <ClInclude Include="..\..\music_smpeg.h" />
211 <ClInclude Include="..\..\music_timidity.h" />
212 <ClInclude Include="..\..\music_wav.h" />
213 <ClInclude Include="..\..\SDL_mixer.h" />
214 <ClInclude Include="..\..\timidity\common.h" />
215 <ClInclude Include="..\..\timidity\instrum.h" />
216 <ClInclude Include="..\..\timidity\mix.h" />
217 <ClInclude Include="..\..\timidity\options.h" />
218 <ClInclude Include="..\..\timidity\output.h" />
219 <ClInclude Include="..\..\timidity\playmidi.h" />
220 <ClInclude Include="..\..\timidity\readmidi.h" />
221 <ClInclude Include="..\..\timidity\resample.h" />
222 <ClInclude Include="..\..\timidity\tables.h" />
223 <ClInclude Include="..\..\timidity\timidity.h" />
224 </ItemGroup>
225 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
226 <Import Project="$(MSBuildExtensionsPath)\Microsoft\WindowsPhone\v$(TargetPlatformVersion)\Microsoft.Cpp.WindowsPhone.$(TargetPlatformVersion).targets" />
227 <ImportGroup Label="ExtensionTargets">
228 </ImportGroup>
229 </Project>
0 <?xml version="1.0" encoding="utf-8"?>
1 <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2 <ItemGroup>
3 <ClCompile Include="..\..\effect_position.c" />
4 <ClCompile Include="..\..\effect_stereoreverse.c" />
5 <ClCompile Include="..\..\effects_internal.c" />
6 <ClCompile Include="..\..\load_aiff.c" />
7 <ClCompile Include="..\..\load_voc.c" />
8 <ClCompile Include="..\..\mixer.c" />
9 <ClCompile Include="..\..\music.c" />
10 <ClCompile Include="..\..\music_cmd.c" />
11 <ClCompile Include="..\..\music_flac.c" />
12 <ClCompile Include="..\..\music_fluidsynth.c" />
13 <ClCompile Include="..\..\music_mad.c" />
14 <ClCompile Include="..\..\music_mikmod.c" />
15 <ClCompile Include="..\..\music_modplug.c" />
16 <ClCompile Include="..\..\music_mpg123.c" />
17 <ClCompile Include="..\..\music_nativemidi.c" />
18 <ClCompile Include="..\..\music_ogg.c" />
19 <ClCompile Include="..\..\music_smpeg.c" />
20 <ClCompile Include="..\..\music_timidity.c" />
21 <ClCompile Include="..\..\music_wav.c" />
22 <ClCompile Include="..\..\timidity\common.c">
23 <Filter>Timidity</Filter>
24 </ClCompile>
25 <ClCompile Include="..\..\timidity\instrum.c">
26 <Filter>Timidity</Filter>
27 </ClCompile>
28 <ClCompile Include="..\..\timidity\mix.c">
29 <Filter>Timidity</Filter>
30 </ClCompile>
31 <ClCompile Include="..\..\timidity\output.c">
32 <Filter>Timidity</Filter>
33 </ClCompile>
34 <ClCompile Include="..\..\timidity\playmidi.c">
35 <Filter>Timidity</Filter>
36 </ClCompile>
37 <ClCompile Include="..\..\timidity\readmidi.c">
38 <Filter>Timidity</Filter>
39 </ClCompile>
40 <ClCompile Include="..\..\timidity\resample.c">
41 <Filter>Timidity</Filter>
42 </ClCompile>
43 <ClCompile Include="..\..\timidity\tables.c">
44 <Filter>Timidity</Filter>
45 </ClCompile>
46 <ClCompile Include="..\..\timidity\timidity.c">
47 <Filter>Timidity</Filter>
48 </ClCompile>
49 </ItemGroup>
50 <ItemGroup>
51 <ClInclude Include="..\..\effects_internal.h" />
52 <ClInclude Include="..\..\load_aiff.h" />
53 <ClInclude Include="..\..\load_voc.h" />
54 <ClInclude Include="..\..\mixer.h" />
55 <ClInclude Include="..\..\music.h" />
56 <ClInclude Include="..\..\music_cmd.h" />
57 <ClInclude Include="..\..\music_flac.h" />
58 <ClInclude Include="..\..\music_fluidsynth.h" />
59 <ClInclude Include="..\..\music_mad.h" />
60 <ClInclude Include="..\..\music_mikmod.h" />
61 <ClInclude Include="..\..\music_modplug.h" />
62 <ClInclude Include="..\..\music_mpg123.h" />
63 <ClInclude Include="..\..\music_nativemidi.h" />
64 <ClInclude Include="..\..\music_ogg.h" />
65 <ClInclude Include="..\..\music_smpeg.h" />
66 <ClInclude Include="..\..\music_timidity.h" />
67 <ClInclude Include="..\..\music_wav.h" />
68 <ClInclude Include="..\..\SDL_mixer.h" />
69 <ClInclude Include="..\..\timidity\common.h">
70 <Filter>Timidity</Filter>
71 </ClInclude>
72 <ClInclude Include="..\..\timidity\instrum.h">
73 <Filter>Timidity</Filter>
74 </ClInclude>
75 <ClInclude Include="..\..\timidity\mix.h">
76 <Filter>Timidity</Filter>
77 </ClInclude>
78 <ClInclude Include="..\..\timidity\options.h">
79 <Filter>Timidity</Filter>
80 </ClInclude>
81 <ClInclude Include="..\..\timidity\output.h">
82 <Filter>Timidity</Filter>
83 </ClInclude>
84 <ClInclude Include="..\..\timidity\playmidi.h">
85 <Filter>Timidity</Filter>
86 </ClInclude>
87 <ClInclude Include="..\..\timidity\readmidi.h">
88 <Filter>Timidity</Filter>
89 </ClInclude>
90 <ClInclude Include="..\..\timidity\resample.h">
91 <Filter>Timidity</Filter>
92 </ClInclude>
93 <ClInclude Include="..\..\timidity\tables.h">
94 <Filter>Timidity</Filter>
95 </ClInclude>
96 <ClInclude Include="..\..\timidity\timidity.h">
97 <Filter>Timidity</Filter>
98 </ClInclude>
99 </ItemGroup>
100 <ItemGroup>
101 <Filter Include="Timidity">
102 <UniqueIdentifier>{ba754ab5-5a7c-4e3c-9a2f-a1a8cf93fa90}</UniqueIdentifier>
103 </Filter>
104 </ItemGroup>
105 </Project>
0 <?xml version="1.0" encoding="utf-8"?>
1 <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2 <ItemGroup Label="ProjectConfigurations">
3 <ProjectConfiguration Include="Debug|Win32">
4 <Configuration>Debug</Configuration>
5 <Platform>Win32</Platform>
6 </ProjectConfiguration>
7 <ProjectConfiguration Include="Debug|ARM">
8 <Configuration>Debug</Configuration>
9 <Platform>ARM</Platform>
10 </ProjectConfiguration>
11 <ProjectConfiguration Include="Release|Win32">
12 <Configuration>Release</Configuration>
13 <Platform>Win32</Platform>
14 </ProjectConfiguration>
15 <ProjectConfiguration Include="Release|ARM">
16 <Configuration>Release</Configuration>
17 <Platform>ARM</Platform>
18 </ProjectConfiguration>
19 </ItemGroup>
20 <PropertyGroup Label="Globals">
21 <ProjectGuid>{ddb6f9c3-25d1-43c1-b439-20f2016d2f2e}</ProjectGuid>
22 <RootNamespace>libogg_WinPhone</RootNamespace>
23 <DefaultLanguage>en-US</DefaultLanguage>
24 <MinimumVisualStudioVersion>11.0</MinimumVisualStudioVersion>
25 <ProjectName>libogg_dynamic-WinPhone80</ProjectName>
26 </PropertyGroup>
27 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
28 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
29 <ConfigurationType>DynamicLibrary</ConfigurationType>
30 <UseDebugLibraries>true</UseDebugLibraries>
31 <PlatformToolset>v110_wp80</PlatformToolset>
32 <IgnoreImportLibrary>false</IgnoreImportLibrary>
33 </PropertyGroup>
34 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'" Label="Configuration">
35 <ConfigurationType>DynamicLibrary</ConfigurationType>
36 <UseDebugLibraries>true</UseDebugLibraries>
37 <PlatformToolset>v110_wp80</PlatformToolset>
38 <IgnoreImportLibrary>false</IgnoreImportLibrary>
39 </PropertyGroup>
40 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
41 <ConfigurationType>DynamicLibrary</ConfigurationType>
42 <UseDebugLibraries>false</UseDebugLibraries>
43 <WholeProgramOptimization>true</WholeProgramOptimization>
44 <PlatformToolset>v110_wp80</PlatformToolset>
45 <IgnoreImportLibrary>false</IgnoreImportLibrary>
46 </PropertyGroup>
47 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'" Label="Configuration">
48 <ConfigurationType>DynamicLibrary</ConfigurationType>
49 <UseDebugLibraries>false</UseDebugLibraries>
50 <WholeProgramOptimization>true</WholeProgramOptimization>
51 <PlatformToolset>v110_wp80</PlatformToolset>
52 <IgnoreImportLibrary>false</IgnoreImportLibrary>
53 </PropertyGroup>
54 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
55 <ImportGroup Label="PropertySheets">
56 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
57 </ImportGroup>
58 <PropertyGroup Label="UserMacros" />
59 <PropertyGroup>
60 <GenerateManifest>false</GenerateManifest>
61 </PropertyGroup>
62 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
63 <TargetName>libogg</TargetName>
64 <IntDir>Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\</IntDir>
65 </PropertyGroup>
66 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
67 <TargetName>libogg</TargetName>
68 <IntDir>Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\</IntDir>
69 </PropertyGroup>
70 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
71 <TargetName>libogg</TargetName>
72 <IntDir>Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\</IntDir>
73 </PropertyGroup>
74 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
75 <TargetName>libogg</TargetName>
76 <IntDir>Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\</IntDir>
77 </PropertyGroup>
78 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
79 <ClCompile>
80 <PreprocessorDefinitions>_USRDLL;WIN32;_DEBUG;_WINDOWS;LIBOGG_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
81 <PrecompiledHeader>NotUsing</PrecompiledHeader>
82 <PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
83 <CompileAsWinRT>false</CompileAsWinRT>
84 <AdditionalUsingDirectories>$(WindowsSDK_MetadataPath);$(AdditionalUsingDirectories)</AdditionalUsingDirectories>
85 <AdditionalIncludeDirectories>..\..\external\libogg-1.3.2\include</AdditionalIncludeDirectories>
86 <DisableSpecificWarnings>4244</DisableSpecificWarnings>
87 </ClCompile>
88 <Link>
89 <SubSystem>Console</SubSystem>
90 <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
91 <GenerateWindowsMetadata>false</GenerateWindowsMetadata>
92 <GenerateDebugInformation>true</GenerateDebugInformation>
93 <ModuleDefinitionFile>..\..\external\libogg-1.3.2\win32\ogg.def</ModuleDefinitionFile>
94 </Link>
95 </ItemDefinitionGroup>
96 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
97 <ClCompile>
98 <PreprocessorDefinitions>_USRDLL;WIN32;NDEBUG;_WINDOWS;LIBOGG_EXPORTS;NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
99 <PrecompiledHeader>NotUsing</PrecompiledHeader>
100 <PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
101 <CompileAsWinRT>false</CompileAsWinRT>
102 <AdditionalUsingDirectories>$(WindowsSDK_MetadataPath);$(AdditionalUsingDirectories)</AdditionalUsingDirectories>
103 <AdditionalIncludeDirectories>..\..\external\libogg-1.3.2\include</AdditionalIncludeDirectories>
104 <DisableSpecificWarnings>4244</DisableSpecificWarnings>
105 </ClCompile>
106 <Link>
107 <SubSystem>Console</SubSystem>
108 <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
109 <GenerateWindowsMetadata>false</GenerateWindowsMetadata>
110 <GenerateDebugInformation>true</GenerateDebugInformation>
111 <ModuleDefinitionFile>..\..\external\libogg-1.3.2\win32\ogg.def</ModuleDefinitionFile>
112 </Link>
113 </ItemDefinitionGroup>
114 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
115 <ClCompile>
116 <PreprocessorDefinitions>_USRDLL;WIN32;_DEBUG;_WINDOWS;LIBOGG_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
117 <PrecompiledHeader>NotUsing</PrecompiledHeader>
118 <PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
119 <CompileAsWinRT>false</CompileAsWinRT>
120 <AdditionalUsingDirectories>$(WindowsSDK_MetadataPath);$(AdditionalUsingDirectories)</AdditionalUsingDirectories>
121 <AdditionalIncludeDirectories>..\..\external\libogg-1.3.2\include</AdditionalIncludeDirectories>
122 <DisableSpecificWarnings>4244</DisableSpecificWarnings>
123 </ClCompile>
124 <Link>
125 <SubSystem>Console</SubSystem>
126 <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
127 <GenerateWindowsMetadata>false</GenerateWindowsMetadata>
128 <GenerateDebugInformation>true</GenerateDebugInformation>
129 <ModuleDefinitionFile>..\..\external\libogg-1.3.2\win32\ogg.def</ModuleDefinitionFile>
130 </Link>
131 </ItemDefinitionGroup>
132 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
133 <ClCompile>
134 <PreprocessorDefinitions>_USRDLL;WIN32;NDEBUG;_WINDOWS;LIBOGG_EXPORTS;NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
135 <PrecompiledHeader>NotUsing</PrecompiledHeader>
136 <PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
137 <CompileAsWinRT>false</CompileAsWinRT>
138 <AdditionalUsingDirectories>$(WindowsSDK_MetadataPath);$(AdditionalUsingDirectories)</AdditionalUsingDirectories>
139 <AdditionalIncludeDirectories>..\..\external\libogg-1.3.2\include</AdditionalIncludeDirectories>
140 <DisableSpecificWarnings>4244</DisableSpecificWarnings>
141 </ClCompile>
142 <Link>
143 <SubSystem>Console</SubSystem>
144 <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
145 <GenerateWindowsMetadata>false</GenerateWindowsMetadata>
146 <GenerateDebugInformation>true</GenerateDebugInformation>
147 <ModuleDefinitionFile>..\..\external\libogg-1.3.2\win32\ogg.def</ModuleDefinitionFile>
148 </Link>
149 </ItemDefinitionGroup>
150 <ItemGroup>
151 <Reference Include="Windows">
152 <IsWinMDFile>true</IsWinMDFile>
153 </Reference>
154 <Reference Include="platform.winmd">
155 <IsWinMDFile>true</IsWinMDFile>
156 <Private>false</Private>
157 </Reference>
158 </ItemGroup>
159 <ItemGroup>
160 <ClCompile Include="..\..\external\libogg-1.3.2\src\bitwise.c" />
161 <ClCompile Include="..\..\external\libogg-1.3.2\src\framing.c" />
162 </ItemGroup>
163 <ItemGroup>
164 <None Include="..\..\external\libogg-1.3.2\win32\ogg.def" />
165 </ItemGroup>
166 <ItemGroup>
167 <ClInclude Include="..\..\external\libogg-1.3.2\include\ogg\ogg.h" />
168 <ClInclude Include="..\..\external\libogg-1.3.2\include\ogg\os_types.h" />
169 </ItemGroup>
170 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
171 <Import Project="$(MSBuildExtensionsPath)\Microsoft\WindowsPhone\v$(TargetPlatformVersion)\Microsoft.Cpp.WindowsPhone.$(TargetPlatformVersion).targets" />
172 <ImportGroup Label="ExtensionTargets">
173 </ImportGroup>
174 </Project>
0 <?xml version="1.0" encoding="utf-8"?>
1 <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2 <ItemGroup>
3 <ClCompile Include="..\..\external\libogg-1.3.1\src\bitwise.c" />
4 <ClCompile Include="..\..\external\libogg-1.3.1\src\framing.c" />
5 </ItemGroup>
6 <ItemGroup>
7 <None Include="..\..\external\libogg-1.3.1\win32\ogg.def" />
8 </ItemGroup>
9 <ItemGroup>
10 <ClInclude Include="..\..\external\libogg-1.3.1\include\ogg\ogg.h" />
11 <ClInclude Include="..\..\external\libogg-1.3.1\include\ogg\os_types.h" />
12 </ItemGroup>
13 </Project>
0 <?xml version="1.0" encoding="utf-8"?>
1 <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2 <ItemGroup Label="ProjectConfigurations">
3 <ProjectConfiguration Include="Debug|Win32">
4 <Configuration>Debug</Configuration>
5 <Platform>Win32</Platform>
6 </ProjectConfiguration>
7 <ProjectConfiguration Include="Debug|ARM">
8 <Configuration>Debug</Configuration>
9 <Platform>ARM</Platform>
10 </ProjectConfiguration>
11 <ProjectConfiguration Include="Release|Win32">
12 <Configuration>Release</Configuration>
13 <Platform>Win32</Platform>
14 </ProjectConfiguration>
15 <ProjectConfiguration Include="Release|ARM">
16 <Configuration>Release</Configuration>
17 <Platform>ARM</Platform>
18 </ProjectConfiguration>
19 </ItemGroup>
20 <PropertyGroup Label="Globals">
21 <ProjectGuid>{8859e555-5684-436d-ad14-4e8ceb11ead1}</ProjectGuid>
22 <RootNamespace>libvorbis_dynamic_WinPhone</RootNamespace>
23 <DefaultLanguage>en-US</DefaultLanguage>
24 <MinimumVisualStudioVersion>11.0</MinimumVisualStudioVersion>
25 </PropertyGroup>
26 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
27 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
28 <ConfigurationType>DynamicLibrary</ConfigurationType>
29 <UseDebugLibraries>true</UseDebugLibraries>
30 <PlatformToolset>v110_wp80</PlatformToolset>
31 <IgnoreImportLibrary>false</IgnoreImportLibrary>
32 </PropertyGroup>
33 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'" Label="Configuration">
34 <ConfigurationType>DynamicLibrary</ConfigurationType>
35 <UseDebugLibraries>true</UseDebugLibraries>
36 <PlatformToolset>v110_wp80</PlatformToolset>
37 <IgnoreImportLibrary>false</IgnoreImportLibrary>
38 </PropertyGroup>
39 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
40 <ConfigurationType>DynamicLibrary</ConfigurationType>
41 <UseDebugLibraries>false</UseDebugLibraries>
42 <WholeProgramOptimization>true</WholeProgramOptimization>
43 <PlatformToolset>v110_wp80</PlatformToolset>
44 <IgnoreImportLibrary>false</IgnoreImportLibrary>
45 </PropertyGroup>
46 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'" Label="Configuration">
47 <ConfigurationType>DynamicLibrary</ConfigurationType>
48 <UseDebugLibraries>false</UseDebugLibraries>
49 <WholeProgramOptimization>true</WholeProgramOptimization>
50 <PlatformToolset>v110_wp80</PlatformToolset>
51 <IgnoreImportLibrary>false</IgnoreImportLibrary>
52 </PropertyGroup>
53 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
54 <ImportGroup Label="PropertySheets">
55 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
56 </ImportGroup>
57 <PropertyGroup Label="UserMacros" />
58 <PropertyGroup>
59 <GenerateManifest>false</GenerateManifest>
60 </PropertyGroup>
61 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
62 <TargetName>libvorbis</TargetName>
63 <IntDir>Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\</IntDir>
64 </PropertyGroup>
65 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
66 <TargetName>libvorbis</TargetName>
67 <IntDir>Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\</IntDir>
68 </PropertyGroup>
69 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
70 <TargetName>libvorbis</TargetName>
71 <IntDir>Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\</IntDir>
72 </PropertyGroup>
73 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
74 <TargetName>libvorbis</TargetName>
75 <IntDir>Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\</IntDir>
76 </PropertyGroup>
77 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
78 <ClCompile>
79 <PreprocessorDefinitions>_USRDLL;_DEBUG;_WINDOWS;_USRDLL;LIBVORBIS_EXPORTS;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
80 <PrecompiledHeader>NotUsing</PrecompiledHeader>
81 <PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
82 <CompileAsWinRT>false</CompileAsWinRT>
83 <AdditionalUsingDirectories>$(WindowsSDK_MetadataPath);$(AdditionalUsingDirectories)</AdditionalUsingDirectories>
84 <DisableSpecificWarnings>4244;4100;4267;4189;4305;4127;4706</DisableSpecificWarnings>
85 <AdditionalIncludeDirectories>..\..\external\libvorbis-1.3.5\include;..\..\external\libogg-1.3.2\include</AdditionalIncludeDirectories>
86 </ClCompile>
87 <Link>
88 <SubSystem>Console</SubSystem>
89 <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
90 <GenerateWindowsMetadata>false</GenerateWindowsMetadata>
91 <GenerateDebugInformation>true</GenerateDebugInformation>
92 <ModuleDefinitionFile>..\..\external\libvorbis-1.3.5\win32\vorbis.def</ModuleDefinitionFile>
93 </Link>
94 </ItemDefinitionGroup>
95 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
96 <ClCompile>
97 <PreprocessorDefinitions>_USRDLL;NDEBUG;_WINDOWS;_USRDLL;LIBVORBIS_EXPORTS;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
98 <PrecompiledHeader>NotUsing</PrecompiledHeader>
99 <PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
100 <CompileAsWinRT>false</CompileAsWinRT>
101 <AdditionalUsingDirectories>$(WindowsSDK_MetadataPath);$(AdditionalUsingDirectories)</AdditionalUsingDirectories>
102 <DisableSpecificWarnings>4244;4100;4267;4189;4305;4127;4706</DisableSpecificWarnings>
103 <AdditionalIncludeDirectories>..\..\external\libvorbis-1.3.5\include;..\..\external\libogg-1.3.2\include</AdditionalIncludeDirectories>
104 </ClCompile>
105 <Link>
106 <SubSystem>Console</SubSystem>
107 <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
108 <GenerateWindowsMetadata>false</GenerateWindowsMetadata>
109 <GenerateDebugInformation>true</GenerateDebugInformation>
110 <ModuleDefinitionFile>..\..\external\libvorbis-1.3.5\win32\vorbis.def</ModuleDefinitionFile>
111 </Link>
112 </ItemDefinitionGroup>
113 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
114 <ClCompile>
115 <PreprocessorDefinitions>_USRDLL;_WIN32_WCE;_DEBUG;_WINDOWS;_USRDLL;LIBVORBIS_EXPORTS;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
116 <PrecompiledHeader>NotUsing</PrecompiledHeader>
117 <PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
118 <CompileAsWinRT>false</CompileAsWinRT>
119 <AdditionalUsingDirectories>$(WindowsSDK_MetadataPath);$(AdditionalUsingDirectories)</AdditionalUsingDirectories>
120 <DisableSpecificWarnings>4244;4100;4267;4189;4305;4127;4706</DisableSpecificWarnings>
121 <AdditionalIncludeDirectories>..\..\external\libvorbis-1.3.5\include;..\..\external\libogg-1.3.2\include</AdditionalIncludeDirectories>
122 </ClCompile>
123 <Link>
124 <SubSystem>Console</SubSystem>
125 <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
126 <GenerateWindowsMetadata>false</GenerateWindowsMetadata>
127 <GenerateDebugInformation>true</GenerateDebugInformation>
128 <ModuleDefinitionFile>..\..\external\libvorbis-1.3.5\win32\vorbis.def</ModuleDefinitionFile>
129 </Link>
130 </ItemDefinitionGroup>
131 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
132 <ClCompile>
133 <PreprocessorDefinitions>_USRDLL;_WIN32_WCE;NDEBUG;_WINDOWS;_USRDLL;LIBVORBIS_EXPORTS;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
134 <PrecompiledHeader>NotUsing</PrecompiledHeader>
135 <PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
136 <CompileAsWinRT>false</CompileAsWinRT>
137 <AdditionalUsingDirectories>$(WindowsSDK_MetadataPath);$(AdditionalUsingDirectories)</AdditionalUsingDirectories>
138 <DisableSpecificWarnings>4244;4100;4267;4189;4305;4127;4706</DisableSpecificWarnings>
139 <AdditionalIncludeDirectories>..\..\external\libvorbis-1.3.5\include;..\..\external\libogg-1.3.2\include</AdditionalIncludeDirectories>
140 </ClCompile>
141 <Link>
142 <SubSystem>Console</SubSystem>
143 <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries>
144 <GenerateWindowsMetadata>false</GenerateWindowsMetadata>
145 <GenerateDebugInformation>true</GenerateDebugInformation>
146 <ModuleDefinitionFile>..\..\external\libvorbis-1.3.5\win32\vorbis.def</ModuleDefinitionFile>
147 </Link>
148 </ItemDefinitionGroup>
149 <ItemGroup>
150 <Reference Include="Windows">
151 <IsWinMDFile>true</IsWinMDFile>
152 </Reference>
153 <Reference Include="platform.winmd">
154 <IsWinMDFile>true</IsWinMDFile>
155 <Private>false</Private>
156 </Reference>
157 </ItemGroup>
158 <ItemGroup>
159 <ClCompile Include="..\..\external\libvorbis-1.3.5\lib\analysis.c" />
160 <ClCompile Include="..\..\external\libvorbis-1.3.5\lib\bitrate.c" />
161 <ClCompile Include="..\..\external\libvorbis-1.3.5\lib\block.c" />
162 <ClCompile Include="..\..\external\libvorbis-1.3.5\lib\codebook.c" />
163 <ClCompile Include="..\..\external\libvorbis-1.3.5\lib\envelope.c" />
164 <ClCompile Include="..\..\external\libvorbis-1.3.5\lib\floor0.c" />
165 <ClCompile Include="..\..\external\libvorbis-1.3.5\lib\floor1.c" />
166 <ClCompile Include="..\..\external\libvorbis-1.3.5\lib\info.c" />
167 <ClCompile Include="..\..\external\libvorbis-1.3.5\lib\lookup.c" />
168 <ClCompile Include="..\..\external\libvorbis-1.3.5\lib\lpc.c" />
169 <ClCompile Include="..\..\external\libvorbis-1.3.5\lib\lsp.c" />
170 <ClCompile Include="..\..\external\libvorbis-1.3.5\lib\mapping0.c" />
171 <ClCompile Include="..\..\external\libvorbis-1.3.5\lib\mdct.c" />
172 <ClCompile Include="..\..\external\libvorbis-1.3.5\lib\psy.c" />
173 <ClCompile Include="..\..\external\libvorbis-1.3.5\lib\registry.c" />
174 <ClCompile Include="..\..\external\libvorbis-1.3.5\lib\res0.c" />
175 <ClCompile Include="..\..\external\libvorbis-1.3.5\lib\sharedbook.c" />
176 <ClCompile Include="..\..\external\libvorbis-1.3.5\lib\smallft.c" />
177 <ClCompile Include="..\..\external\libvorbis-1.3.5\lib\synthesis.c" />
178 <ClCompile Include="..\..\external\libvorbis-1.3.5\lib\vorbisenc.c" />
179 <ClCompile Include="..\..\external\libvorbis-1.3.5\lib\window.c" />
180 </ItemGroup>
181 <ItemGroup>
182 <ClInclude Include="..\..\external\libvorbis-1.3.5\include\vorbis\codec.h" />
183 <ClInclude Include="..\..\external\libvorbis-1.3.5\include\vorbis\vorbisenc.h" />
184 <ClInclude Include="..\..\external\libvorbis-1.3.5\include\vorbis\vorbisfile.h" />
185 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\backends.h" />
186 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\bitrate.h" />
187 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\books\coupled\res_books_stereo.h" />
188 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\books\floor\floor_books.h" />
189 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\books\uncoupled\res_books_uncoupled.h" />
190 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\codebook.h" />
191 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\codec_internal.h" />
192 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\envelope.h" />
193 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\highlevel.h" />
194 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\lookup.h" />
195 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\lookup_data.h" />
196 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\lpc.h" />
197 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\lsp.h" />
198 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\masking.h" />
199 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\mdct.h" />
200 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\misc.h" />
201 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\modes\floor_all.h" />
202 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\modes\psych_11.h" />
203 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\modes\psych_16.h" />
204 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\modes\psych_44.h" />
205 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\modes\psych_8.h" />
206 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\modes\residue_16.h" />
207 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\modes\residue_44.h" />
208 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\modes\residue_44u.h" />
209 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\modes\residue_8.h" />
210 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\modes\setup_11.h" />
211 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\modes\setup_16.h" />
212 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\modes\setup_22.h" />
213 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\modes\setup_32.h" />
214 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\modes\setup_44.h" />
215 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\modes\setup_44u.h" />
216 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\modes\setup_8.h" />
217 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\modes\setup_X.h" />
218 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\os.h" />
219 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\psy.h" />
220 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\registry.h" />
221 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\scales.h" />
222 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\smallft.h" />
223 <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\window.h" />
224 </ItemGroup>
225 <ItemGroup>
226 <None Include="..\..\external\libvorbis-1.3.5\win32\vorbis.def" />
227 </ItemGroup>
228 <ItemGroup>
229 <ProjectReference Include="libogg_dynamic-WinPhone80.vcxproj">
230 <Project>{ddb6f9c3-25d1-43c1-b439-20f2016d2f2e}</Project>
231 </ProjectReference>
232 </ItemGroup>
233 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
234 <Import Project="$(MSBuildExtensionsPath)\Microsoft\WindowsPhone\v$(TargetPlatformVersion)\Microsoft.Cpp.WindowsPhone.$(TargetPlatformVersion).targets" />
235 <ImportGroup Label="ExtensionTargets">
236 </ImportGroup>
237 </Project>
0 <?xml version="1.0" encoding="utf-8"?>
1 <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2 <ItemGroup>
3 <ClCompile Include="..\..\external\libvorbis-1.3.3\lib\analysis.c" />
4 <ClCompile Include="..\..\external\libvorbis-1.3.3\lib\bitrate.c" />
5 <ClCompile Include="..\..\external\libvorbis-1.3.3\lib\block.c" />
6 <ClCompile Include="..\..\external\libvorbis-1.3.3\lib\codebook.c" />
7 <ClCompile Include="..\..\external\libvorbis-1.3.3\lib\envelope.c" />
8 <ClCompile Include="..\..\external\libvorbis-1.3.3\lib\floor0.c" />
9 <ClCompile Include="..\..\external\libvorbis-1.3.3\lib\floor1.c" />
10 <ClCompile Include="..\..\external\libvorbis-1.3.3\lib\info.c" />
11 <ClCompile Include="..\..\external\libvorbis-1.3.3\lib\lookup.c" />
12 <ClCompile Include="..\..\external\libvorbis-1.3.3\lib\lpc.c" />
13 <ClCompile Include="..\..\external\libvorbis-1.3.3\lib\lsp.c" />
14 <ClCompile Include="..\..\external\libvorbis-1.3.3\lib\mapping0.c" />
15 <ClCompile Include="..\..\external\libvorbis-1.3.3\lib\mdct.c" />
16 <ClCompile Include="..\..\external\libvorbis-1.3.3\lib\psy.c" />
17 <ClCompile Include="..\..\external\libvorbis-1.3.3\lib\registry.c" />
18 <ClCompile Include="..\..\external\libvorbis-1.3.3\lib\res0.c" />
19 <ClCompile Include="..\..\external\libvorbis-1.3.3\lib\sharedbook.c" />
20 <ClCompile Include="..\..\external\libvorbis-1.3.3\lib\smallft.c" />
21 <ClCompile Include="..\..\external\libvorbis-1.3.3\lib\synthesis.c" />
22 <ClCompile Include="..\..\external\libvorbis-1.3.3\lib\vorbisenc.c" />
23 <ClCompile Include="..\..\external\libvorbis-1.3.3\lib\window.c" />
24 </ItemGroup>
25 <ItemGroup>
26 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\backends.h" />
27 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\bitrate.h" />
28 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\codebook.h" />
29 <ClInclude Include="..\..\external\libvorbis-1.3.3\include\vorbis\codec.h" />
30 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\codec_internal.h" />
31 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\envelope.h" />
32 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\modes\floor_all.h" />
33 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\books\floor\floor_books.h" />
34 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\highlevel.h" />
35 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\lookup.h" />
36 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\lookup_data.h" />
37 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\lpc.h" />
38 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\lsp.h" />
39 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\masking.h" />
40 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\mdct.h" />
41 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\misc.h" />
42 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\os.h" />
43 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\psy.h" />
44 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\modes\psych_11.h" />
45 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\modes\psych_16.h" />
46 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\modes\psych_44.h" />
47 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\modes\psych_8.h" />
48 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\registry.h" />
49 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\books\coupled\res_books_stereo.h" />
50 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\books\uncoupled\res_books_uncoupled.h" />
51 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\modes\residue_16.h" />
52 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\modes\residue_44.h" />
53 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\modes\residue_44u.h" />
54 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\modes\residue_8.h" />
55 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\scales.h" />
56 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\modes\setup_11.h" />
57 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\modes\setup_16.h" />
58 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\modes\setup_22.h" />
59 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\modes\setup_32.h" />
60 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\modes\setup_44.h" />
61 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\modes\setup_44u.h" />
62 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\modes\setup_8.h" />
63 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\modes\setup_X.h" />
64 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\smallft.h" />
65 <ClInclude Include="..\..\external\libvorbis-1.3.3\include\vorbis\vorbisenc.h" />
66 <ClInclude Include="..\..\external\libvorbis-1.3.3\include\vorbis\vorbisfile.h" />
67 <ClInclude Include="..\..\external\libvorbis-1.3.3\lib\window.h" />
68 </ItemGroup>
69 <ItemGroup>
70 <None Include="..\..\external\libvorbis-1.3.3\win32\vorbis.def" />
71 </ItemGroup>
72 </Project>
0 <?xml version="1.0" encoding="utf-8"?>
1 <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2 <ItemGroup Label="ProjectConfigurations">
3 <ProjectConfiguration Include="Debug|Win32">
4 <Configuration>Debug</Configuration>
5 <Platform>Win32</Platform>
6 </ProjectConfiguration>
7 <ProjectConfiguration Include="Debug|ARM">
8 <Configuration>Debug</Configuration>
9 <Platform>ARM</Platform>
10 </ProjectConfiguration>
11 <ProjectConfiguration Include="Release|Win32">
12 <Configuration>Release</Configuration>
13 <Platform>Win32</Platform>
14 </ProjectConfiguration>
15 <ProjectConfiguration Include="Release|ARM">
16 <Configuration>Release</Configuration>
17 <Platform>ARM</Platform>
18 </ProjectConfiguration>
19 </ItemGroup>
20 <PropertyGroup Label="Globals">
21 <ProjectGuid>{e1553efc-2c62-41ae-aba3-d933d66d435d}</ProjectGuid>
22 <RootNamespace>libvorbisfile_dynamic_WinPhone</RootNamespace>
23 <DefaultLanguage>en-US</DefaultLanguage>
24 <MinimumVisualStudioVersion>11.0</MinimumVisualStudioVersion>
25 </PropertyGroup>
26 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
27 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
28 <ConfigurationType>DynamicLibrary</ConfigurationType>
29 <UseDebugLibraries>true</UseDebugLibraries>
30 <PlatformToolset>v110_wp80</PlatformToolset>
31 <IgnoreImportLibrary>false</IgnoreImportLibrary>
32 </PropertyGroup>
33 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'" Label="Configuration">
34 <ConfigurationType>DynamicLibrary</ConfigurationType>
35 <UseDebugLibraries>true</UseDebugLibraries>
36 <PlatformToolset>v110_wp80</PlatformToolset>
37 <IgnoreImportLibrary>false</IgnoreImportLibrary>
38 </PropertyGroup>
39 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
40 <ConfigurationType>DynamicLibrary</ConfigurationType>
41 <UseDebugLibraries>false</UseDebugLibraries>
42 <WholeProgramOptimization>true</WholeProgramOptimization>
43 <PlatformToolset>v110_wp80</PlatformToolset>
44 <IgnoreImportLibrary>false</IgnoreImportLibrary>
45 </PropertyGroup>
46 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'" Label="Configuration">
47 <ConfigurationType>DynamicLibrary</ConfigurationType>
48 <UseDebugLibraries>false</UseDebugLibraries>
49 <WholeProgramOptimization>true</WholeProgramOptimization>
50 <PlatformToolset>v110_wp80</PlatformToolset>
51 <IgnoreImportLibrary>false</IgnoreImportLibrary>
52 </PropertyGroup>
53 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
54 <ImportGroup Label="PropertySheets">
55 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
56 </ImportGroup>
57 <PropertyGroup Label="UserMacros" />
58 <PropertyGroup>
59 <GenerateManifest>false</GenerateManifest>
60 </PropertyGroup>
61 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
62 <TargetName>libvorbisfile</TargetName>
63 <IntDir>Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\</IntDir>
64 </PropertyGroup>
65 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
66 <TargetName>libvorbisfile</TargetName>
67 <IntDir>Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\</IntDir>
68 </PropertyGroup>
69 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
70 <TargetName>libvorbisfile</TargetName>
71 <IntDir>Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\</IntDir>
72 </PropertyGroup>
73 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
74 <TargetName>libvorbisfile</TargetName>
75 <IntDir>Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\</IntDir>
76 </PropertyGroup>
77 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
78 <ClCompile>
79 <PreprocessorDefinitions>_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
80 <PrecompiledHeader>NotUsing</PrecompiledHeader>
81 <PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
82 <CompileAsWinRT>false</CompileAsWinRT>
83 <AdditionalUsingDirectories>$(WindowsSDK_MetadataPath);$(AdditionalUsingDirectories)</AdditionalUsingDirectories>