Update upstream source from tag 'upstream/2.0.4+dfsg1'
Update to upstream version '2.0.4+dfsg1'
with Debian dir 5f8d7214a074f67b7fd71cf85bd08959364c9512
Felix Geyer
4 years ago
0 | 0 | # Save the local path |
1 | MY_LOCAL_PATH := $(call my-dir) | |
1 | SDL_MIXER_LOCAL_PATH := $(call my-dir) | |
2 | 2 | |
3 | 3 | |
4 | 4 | # Enable this if you want to support loading FLAC music with libFLAC |
19 | 19 | MODPLUG_LIBRARY_PATH := external/libmodplug-0.8.9.0 |
20 | 20 | |
21 | 21 | # Enable this if you want to support TiMidity |
22 | SUPPORT_TIMIDITY ?= true | |
22 | SUPPORT_MID_TIMIDITY ?= true | |
23 | 23 | TIMIDITY_LIBRARY_PATH := timidity |
24 | 24 | |
25 | 25 | |
26 | 26 | # Build the library |
27 | 27 | ifeq ($(SUPPORT_FLAC),true) |
28 | include $(MY_LOCAL_PATH)/$(FLAC_LIBRARY_PATH)/Android.mk | |
28 | include $(SDL_MIXER_LOCAL_PATH)/$(FLAC_LIBRARY_PATH)/Android.mk | |
29 | 29 | endif |
30 | 30 | |
31 | 31 | # Build the library |
32 | 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 | |
33 | include $(SDL_MIXER_LOCAL_PATH)/$(OGG_LIBRARY_PATH)/Android.mk | |
34 | include $(SDL_MIXER_LOCAL_PATH)/$(VORBIS_LIBRARY_PATH)/Android.mk | |
35 | 35 | endif |
36 | 36 | |
37 | 37 | # Build the library |
38 | 38 | ifeq ($(SUPPORT_MP3_MPG123),true) |
39 | include $(MY_LOCAL_PATH)/$(MPG123_LIBRARY_PATH)/Android.mk | |
39 | include $(SDL_MIXER_LOCAL_PATH)/$(MPG123_LIBRARY_PATH)/Android.mk | |
40 | 40 | endif |
41 | 41 | |
42 | 42 | # Build the library |
43 | 43 | ifeq ($(SUPPORT_MOD_MODPLUG),true) |
44 | include $(MY_LOCAL_PATH)/$(MODPLUG_LIBRARY_PATH)/Android.mk | |
44 | include $(SDL_MIXER_LOCAL_PATH)/$(MODPLUG_LIBRARY_PATH)/Android.mk | |
45 | 45 | endif |
46 | 46 | |
47 | 47 | # Build the library |
48 | ifeq ($(SUPPORT_TIMIDITY),true) | |
49 | include $(MY_LOCAL_PATH)/$(TIMIDITY_LIBRARY_PATH)/Android.mk | |
48 | ifeq ($(SUPPORT_MID_TIMIDITY),true) | |
49 | include $(SDL_MIXER_LOCAL_PATH)/$(TIMIDITY_LIBRARY_PATH)/Android.mk | |
50 | 50 | endif |
51 | 51 | |
52 | 52 | |
53 | 53 | # Restore local path |
54 | LOCAL_PATH := $(MY_LOCAL_PATH) | |
54 | LOCAL_PATH := $(SDL_MIXER_LOCAL_PATH) | |
55 | 55 | |
56 | 56 | include $(CLEAR_VARS) |
57 | 57 | |
91 | 91 | LOCAL_STATIC_LIBRARIES += modplug |
92 | 92 | endif |
93 | 93 | |
94 | ifeq ($(SUPPORT_TIMIDITY),true) | |
94 | ifeq ($(SUPPORT_MID_TIMIDITY),true) | |
95 | 95 | LOCAL_C_INCLUDES += $(LOCAL_PATH)/$(TIMIDITY_LIBRARY_PATH) |
96 | 96 | LOCAL_CFLAGS += -DMUSIC_MID_TIMIDITY |
97 | 97 | LOCAL_STATIC_LIBRARIES += timidity |
0 | 2.0.4: | |
1 | Ozkan Sezer - Wed, 10 Oct 2018 14:56:10 | |
2 | * Removed smpeg support for mp3 music, now that it's replaced by libmpg123 | |
3 | Ozkan Sezer - Sun, 07 Oct 2018 08:50:02 | |
4 | * Fixed mp3 mad decoder to skip tags, which otherwise would lead to crashes | |
5 | Ozkan Sezer - Fri, 15 Jun 2018 05:32:56 | |
6 | * Added support for Opus music playback using opusfile library | |
7 | ||
8 | 2.0.3: | |
9 | Sam Lantinga - Thu, Mar 1, 2018 9:06:58 AM | |
10 | * Fixed regression where Mix_Init() would return 0 for available music formats | |
11 | ||
0 | 12 | 2.0.2: |
1 | 13 | Sam Lantinga - Fri Oct 20 22:04:50 PDT 2017 |
2 | 14 | * Implemented 24-bit and surround sound support for FLAC audio files |
0 | 0 | /* |
1 | 1 | SDL_mixer: An audio mixer library based on the SDL library |
2 | Copyright (C) 1997-2017 Sam Lantinga <slouken@libsdl.org> | |
2 | Copyright (C) 1997-2018 Sam Lantinga <slouken@libsdl.org> | |
3 | 3 | |
4 | 4 | This software is provided 'as-is', without any express or implied |
5 | 5 | warranty. In no event will the authors be held liable for any damages |
37 | 37 | PLAYWAVE_OBJECTS = @PLAYWAVE_OBJECTS@ |
38 | 38 | PLAYMUS_OBJECTS = @PLAYMUS_OBJECTS@ |
39 | 39 | |
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 | |
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_opus.c music_opus.h music_timidity.c music_timidity.h music_wav.c music_wav.h native_midi playmus.c playwave.c timidity version.rc | |
41 | 41 | |
42 | 42 | LT_AGE = @LT_AGE@ |
43 | 43 | LT_CURRENT = @LT_CURRENT@ |
13 | 13 | The mixer can currently load Microsoft WAVE files and Creative Labs VOC |
14 | 14 | files as audio samples, it can load FLAC files with libFLAC, it can load |
15 | 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, | |
16 | using mpg123 or libmad, and it can load MIDI files with Timidity, | |
17 | 17 | FluidSynth, and natively on Windows, Mac OSX, and Linux, and finally it can |
18 | 18 | load the following file formats via ModPlug or MikMod: .MOD .S3M .IT .XM. |
19 | 19 |
15 | 15 | Due to popular demand, here is a simple multi-channel audio mixer. |
16 | 16 | It supports 4 channels of 16 bit stereo audio, plus a single channel |
17 | 17 | of music, mixed by the popular MikMod MOD, Timidity MIDI, Ogg Vorbis, |
18 | Tremor, SMPEG MP3, and libmad MP3 libraries. | |
18 | Tremor, libmpg123 and libmad MP3 libraries. | |
19 | 19 | |
20 | 20 | %package devel |
21 | 21 | Summary: Libraries, includes and more to develop SDL applications. |
26 | 26 | Due to popular demand, here is a simple multi-channel audio mixer. |
27 | 27 | It supports 4 channels of 16 bit stereo audio, plus a single channel |
28 | 28 | of music, mixed by the popular MikMod MOD, Timidity MIDI, Ogg Vorbis, |
29 | Tremor, SMPEG MP3, and libmad MP3 libraries. | |
29 | Tremor, libmpg123 and libmad MP3 libraries. | |
30 | 30 | |
31 | 31 | %prep |
32 | 32 | %setup |
0 | 0 | /* |
1 | 1 | SDL_mixer: An audio mixer library based on the SDL library |
2 | Copyright (C) 1997-2017 Sam Lantinga <slouken@libsdl.org> | |
2 | Copyright (C) 1997-2018 Sam Lantinga <slouken@libsdl.org> | |
3 | 3 | |
4 | 4 | This software is provided 'as-is', without any express or implied |
5 | 5 | warranty. In no event will the authors be held liable for any damages |
37 | 37 | */ |
38 | 38 | #define SDL_MIXER_MAJOR_VERSION 2 |
39 | 39 | #define SDL_MIXER_MINOR_VERSION 0 |
40 | #define SDL_MIXER_PATCHLEVEL 2 | |
40 | #define SDL_MIXER_PATCHLEVEL 4 | |
41 | 41 | |
42 | 42 | /* This macro can be used to fill a version structure with the compile-time |
43 | 43 | * version of the SDL_mixer library. |
79 | 79 | MIX_INIT_MOD = 0x00000002, |
80 | 80 | MIX_INIT_MP3 = 0x00000008, |
81 | 81 | MIX_INIT_OGG = 0x00000010, |
82 | MIX_INIT_MID = 0x00000020 | |
82 | MIX_INIT_MID = 0x00000020, | |
83 | MIX_INIT_OPUS = 0x00000040 | |
83 | 84 | } MIX_InitFlags; |
84 | 85 | |
85 | 86 | /* Loads dynamic libraries and prepares them for use. Flags should be |
133 | 134 | MUS_MP3, |
134 | 135 | MUS_MP3_MAD_UNUSED, |
135 | 136 | MUS_FLAC, |
136 | MUS_MODPLUG_UNUSED | |
137 | MUS_MODPLUG_UNUSED, | |
138 | MUS_OPUS | |
137 | 139 | } Mix_MusicType; |
138 | 140 | |
139 | 141 | /* The internal format for a music chunk interpreted via mikmod */ |
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> | |
84 | <AdditionalIncludeDirectories>..\..\external\libvorbis-1.3.5\include;..\..\external\libogg-1.3.2\include</AdditionalIncludeDirectories> | |
85 | </ClCompile> | |
86 | <Link> | |
87 | <SubSystem>Console</SubSystem> | |
88 | <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries> | |
89 | <GenerateWindowsMetadata>false</GenerateWindowsMetadata> | |
90 | <GenerateDebugInformation>true</GenerateDebugInformation> | |
91 | <ModuleDefinitionFile>..\..\external\libvorbis-1.3.5\win32\vorbisfile.def</ModuleDefinitionFile> | |
92 | </Link> | |
93 | </ItemDefinitionGroup> | |
94 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> | |
95 | <ClCompile> | |
96 | <PreprocessorDefinitions>_USRDLL;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\libvorbis-1.3.5\include;..\..\external\libogg-1.3.2\include</AdditionalIncludeDirectories> | |
102 | </ClCompile> | |
103 | <Link> | |
104 | <SubSystem>Console</SubSystem> | |
105 | <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries> | |
106 | <GenerateWindowsMetadata>false</GenerateWindowsMetadata> | |
107 | <GenerateDebugInformation>true</GenerateDebugInformation> | |
108 | <ModuleDefinitionFile>..\..\external\libvorbis-1.3.5\win32\vorbisfile.def</ModuleDefinitionFile> | |
109 | </Link> | |
110 | </ItemDefinitionGroup> | |
111 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'"> | |
112 | <ClCompile> | |
113 | <PreprocessorDefinitions>_USRDLL;_WIN32_WCE;%(PreprocessorDefinitions)</PreprocessorDefinitions> | |
114 | <PrecompiledHeader>NotUsing</PrecompiledHeader> | |
115 | <PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile> | |
116 | <CompileAsWinRT>false</CompileAsWinRT> | |
117 | <AdditionalUsingDirectories>$(WindowsSDK_MetadataPath);$(AdditionalUsingDirectories)</AdditionalUsingDirectories> | |
118 | <AdditionalIncludeDirectories>..\..\external\libvorbis-1.3.5\include;..\..\external\libogg-1.3.2\include</AdditionalIncludeDirectories> | |
119 | </ClCompile> | |
120 | <Link> | |
121 | <SubSystem>Console</SubSystem> | |
122 | <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries> | |
123 | <GenerateWindowsMetadata>false</GenerateWindowsMetadata> | |
124 | <GenerateDebugInformation>true</GenerateDebugInformation> | |
125 | <ModuleDefinitionFile>..\..\external\libvorbis-1.3.5\win32\vorbisfile.def</ModuleDefinitionFile> | |
126 | </Link> | |
127 | </ItemDefinitionGroup> | |
128 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'"> | |
129 | <ClCompile> | |
130 | <PreprocessorDefinitions>_USRDLL;_WIN32_WCE;NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> | |
131 | <PrecompiledHeader>NotUsing</PrecompiledHeader> | |
132 | <PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile> | |
133 | <CompileAsWinRT>false</CompileAsWinRT> | |
134 | <AdditionalUsingDirectories>$(WindowsSDK_MetadataPath);$(AdditionalUsingDirectories)</AdditionalUsingDirectories> | |
135 | <AdditionalIncludeDirectories>..\..\external\libvorbis-1.3.5\include;..\..\external\libogg-1.3.2\include</AdditionalIncludeDirectories> | |
136 | </ClCompile> | |
137 | <Link> | |
138 | <SubSystem>Console</SubSystem> | |
139 | <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries> | |
140 | <GenerateWindowsMetadata>false</GenerateWindowsMetadata> | |
141 | <GenerateDebugInformation>true</GenerateDebugInformation> | |
142 | <ModuleDefinitionFile>..\..\external\libvorbis-1.3.5\win32\vorbisfile.def</ModuleDefinitionFile> | |
143 | </Link> | |
144 | </ItemDefinitionGroup> | |
145 | <ItemGroup> | |
146 | <Reference Include="Windows"> | |
147 | <IsWinMDFile>true</IsWinMDFile> | |
148 | </Reference> | |
149 | <Reference Include="platform.winmd"> | |
150 | <IsWinMDFile>true</IsWinMDFile> | |
151 | <Private>false</Private> | |
152 | </Reference> | |
153 | </ItemGroup> | |
154 | <ItemGroup> | |
155 | <ClCompile Include="..\..\external\libvorbis-1.3.5\lib\vorbisfile.c" /> | |
156 | </ItemGroup> | |
157 | <ItemGroup> | |
158 | <ClInclude Include="..\..\external\libvorbis-1.3.5\include\vorbis\vorbisfile.h" /> | |
159 | </ItemGroup> | |
160 | <ItemGroup> | |
161 | <ProjectReference Include="libogg_dynamic-WinPhone80.vcxproj"> | |
162 | <Project>{ddb6f9c3-25d1-43c1-b439-20f2016d2f2e}</Project> | |
163 | </ProjectReference> | |
164 | <ProjectReference Include="libvorbis_dynamic-WinPhone80.vcxproj"> | |
165 | <Project>{8859e555-5684-436d-ad14-4e8ceb11ead1}</Project> | |
166 | </ProjectReference> | |
167 | </ItemGroup> | |
168 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | |
169 | <Import Project="$(MSBuildExtensionsPath)\Microsoft\WindowsPhone\v$(TargetPlatformVersion)\Microsoft.Cpp.WindowsPhone.$(TargetPlatformVersion).targets" /> | |
170 | <ImportGroup Label="ExtensionTargets"> | |
171 | </ImportGroup> | |
172 | </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\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 2013 | |
3 | VisualStudioVersion = 12.0.40629.0 | |
4 | MinimumVisualStudioVersion = 10.0.40219.1 | |
5 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SDL2_mixer-WinPhone81", "SDL_mixer-WinPhone81.vcxproj", "{FB75C3D3-D261-4575-9D17-9E88E09568BA}" | |
6 | EndProject | |
7 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libogg_dynamic-WinPhone81", "libogg_dynamic-WinPhone81.vcxproj", "{0CCC2E56-E3A4-4CD7-92BA-0C6F99440753}" | |
8 | EndProject | |
9 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libvorbis_dynamic-WinPhone81", "libvorbis_dynamic-WinPhone81.vcxproj", "{C943DBC9-4EB0-4684-BE3E-334342A7EE2C}" | |
10 | EndProject | |
11 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libvorbisfile_dynamic-WinPhone81", "libvorbisfile_dynamic-WinPhone81.vcxproj", "{203EFCC5-CE11-4A75-92F4-C3DBF7609376}" | |
12 | EndProject | |
13 | Global | |
14 | GlobalSection(SolutionConfigurationPlatforms) = preSolution | |
15 | Debug|ARM = Debug|ARM | |
16 | Debug|Win32 = Debug|Win32 | |
17 | Release|ARM = Release|ARM | |
18 | Release|Win32 = Release|Win32 | |
19 | EndGlobalSection | |
20 | GlobalSection(ProjectConfigurationPlatforms) = postSolution | |
21 | {FB75C3D3-D261-4575-9D17-9E88E09568BA}.Debug|ARM.ActiveCfg = Debug|ARM | |
22 | {FB75C3D3-D261-4575-9D17-9E88E09568BA}.Debug|ARM.Build.0 = Debug|ARM | |
23 | {FB75C3D3-D261-4575-9D17-9E88E09568BA}.Debug|Win32.ActiveCfg = Debug|Win32 | |
24 | {FB75C3D3-D261-4575-9D17-9E88E09568BA}.Debug|Win32.Build.0 = Debug|Win32 | |
25 | {FB75C3D3-D261-4575-9D17-9E88E09568BA}.Release|ARM.ActiveCfg = Release|ARM | |
26 | {FB75C3D3-D261-4575-9D17-9E88E09568BA}.Release|ARM.Build.0 = Release|ARM | |
27 | {FB75C3D3-D261-4575-9D17-9E88E09568BA}.Release|Win32.ActiveCfg = Release|Win32 | |
28 | {FB75C3D3-D261-4575-9D17-9E88E09568BA}.Release|Win32.Build.0 = Release|Win32 | |
29 | {0CCC2E56-E3A4-4CD7-92BA-0C6F99440753}.Debug|ARM.ActiveCfg = Debug|ARM | |
30 | {0CCC2E56-E3A4-4CD7-92BA-0C6F99440753}.Debug|ARM.Build.0 = Debug|ARM | |
31 | {0CCC2E56-E3A4-4CD7-92BA-0C6F99440753}.Debug|Win32.ActiveCfg = Debug|Win32 | |
32 | {0CCC2E56-E3A4-4CD7-92BA-0C6F99440753}.Debug|Win32.Build.0 = Debug|Win32 | |
33 | {0CCC2E56-E3A4-4CD7-92BA-0C6F99440753}.Release|ARM.ActiveCfg = Release|ARM | |
34 | {0CCC2E56-E3A4-4CD7-92BA-0C6F99440753}.Release|ARM.Build.0 = Release|ARM | |
35 | {0CCC2E56-E3A4-4CD7-92BA-0C6F99440753}.Release|Win32.ActiveCfg = Release|Win32 | |
36 | {0CCC2E56-E3A4-4CD7-92BA-0C6F99440753}.Release|Win32.Build.0 = Release|Win32 | |
37 | {C943DBC9-4EB0-4684-BE3E-334342A7EE2C}.Debug|ARM.ActiveCfg = Debug|ARM | |
38 | {C943DBC9-4EB0-4684-BE3E-334342A7EE2C}.Debug|ARM.Build.0 = Debug|ARM | |
39 | {C943DBC9-4EB0-4684-BE3E-334342A7EE2C}.Debug|Win32.ActiveCfg = Debug|Win32 | |
40 | {C943DBC9-4EB0-4684-BE3E-334342A7EE2C}.Debug|Win32.Build.0 = Debug|Win32 | |
41 | {C943DBC9-4EB0-4684-BE3E-334342A7EE2C}.Release|ARM.ActiveCfg = Release|ARM | |
42 | {C943DBC9-4EB0-4684-BE3E-334342A7EE2C}.Release|ARM.Build.0 = Release|ARM | |
43 | {C943DBC9-4EB0-4684-BE3E-334342A7EE2C}.Release|Win32.ActiveCfg = Release|Win32 | |
44 | {C943DBC9-4EB0-4684-BE3E-334342A7EE2C}.Release|Win32.Build.0 = Release|Win32 | |
45 | {203EFCC5-CE11-4A75-92F4-C3DBF7609376}.Debug|ARM.ActiveCfg = Debug|ARM | |
46 | {203EFCC5-CE11-4A75-92F4-C3DBF7609376}.Debug|ARM.Build.0 = Debug|ARM | |
47 | {203EFCC5-CE11-4A75-92F4-C3DBF7609376}.Debug|Win32.ActiveCfg = Debug|Win32 | |
48 | {203EFCC5-CE11-4A75-92F4-C3DBF7609376}.Debug|Win32.Build.0 = Debug|Win32 | |
49 | {203EFCC5-CE11-4A75-92F4-C3DBF7609376}.Release|ARM.ActiveCfg = Release|ARM | |
50 | {203EFCC5-CE11-4A75-92F4-C3DBF7609376}.Release|ARM.Build.0 = Release|ARM | |
51 | {203EFCC5-CE11-4A75-92F4-C3DBF7609376}.Release|Win32.ActiveCfg = Release|Win32 | |
52 | {203EFCC5-CE11-4A75-92F4-C3DBF7609376}.Release|Win32.Build.0 = Release|Win32 | |
53 | EndGlobalSection | |
54 | GlobalSection(SolutionProperties) = preSolution | |
55 | HideSolutionNode = FALSE | |
56 | EndGlobalSection | |
57 | 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|Win32"> | |
4 | <Configuration>Debug</Configuration> | |
5 | <Platform>Win32</Platform> | |
6 | </ProjectConfiguration> | |
7 | <ProjectConfiguration Include="Release|Win32"> | |
8 | <Configuration>Release</Configuration> | |
9 | <Platform>Win32</Platform> | |
10 | </ProjectConfiguration> | |
11 | <ProjectConfiguration Include="Debug|ARM"> | |
12 | <Configuration>Debug</Configuration> | |
13 | <Platform>ARM</Platform> | |
14 | </ProjectConfiguration> | |
15 | <ProjectConfiguration Include="Release|ARM"> | |
16 | <Configuration>Release</Configuration> | |
17 | <Platform>ARM</Platform> | |
18 | </ProjectConfiguration> | |
19 | </ItemGroup> | |
20 | <ItemGroup> | |
21 | <ProjectReference Include="..\..\..\SDL\VisualC-WinRT\WinPhone81_VS2013\SDL-WinPhone81.vcxproj"> | |
22 | <Project>{48fadc0e-964d-4dab-bced-372e0ad19577}</Project> | |
23 | </ProjectReference> | |
24 | <ProjectReference Include="libogg_dynamic-WinPhone81.vcxproj"> | |
25 | <Project>{0ccc2e56-e3a4-4cd7-92ba-0c6f99440753}</Project> | |
26 | </ProjectReference> | |
27 | <ProjectReference Include="libvorbisfile_dynamic-WinPhone81.vcxproj"> | |
28 | <Project>{203efcc5-ce11-4a75-92f4-c3dbf7609376}</Project> | |
29 | </ProjectReference> | |
30 | <ProjectReference Include="libvorbis_dynamic-WinPhone81.vcxproj"> | |
31 | <Project>{c943dbc9-4eb0-4684-be3e-334342a7ee2c}</Project> | |
32 | </ProjectReference> | |
33 | </ItemGroup> | |
34 | <ItemGroup> | |
35 | <ClCompile Include="..\..\effects_internal.c" /> | |
36 | <ClCompile Include="..\..\effect_position.c" /> | |
37 | <ClCompile Include="..\..\effect_stereoreverse.c" /> | |
38 | <ClCompile Include="..\..\load_aiff.c" /> | |
39 | <ClCompile Include="..\..\load_voc.c" /> | |
40 | <ClCompile Include="..\..\mixer.c" /> | |
41 | <ClCompile Include="..\..\music.c" /> | |
42 | <ClCompile Include="..\..\music_cmd.c" /> | |
43 | <ClCompile Include="..\..\music_flac.c" /> | |
44 | <ClCompile Include="..\..\music_fluidsynth.c" /> | |
45 | <ClCompile Include="..\..\music_mad.c" /> | |
46 | <ClCompile Include="..\..\music_mikmod.c" /> | |
47 | <ClCompile Include="..\..\music_modplug.c" /> | |
48 | <ClCompile Include="..\..\music_mpg123.c" /> | |
49 | <ClCompile Include="..\..\music_nativemidi.c" /> | |
50 | <ClCompile Include="..\..\music_ogg.c" /> | |
51 | <ClCompile Include="..\..\music_smpeg.c" /> | |
52 | <ClCompile Include="..\..\music_timidity.c" /> | |
53 | <ClCompile Include="..\..\music_wav.c" /> | |
54 | <ClCompile Include="..\..\timidity\common.c" /> | |
55 | <ClCompile Include="..\..\timidity\instrum.c" /> | |
56 | <ClCompile Include="..\..\timidity\mix.c" /> | |
57 | <ClCompile Include="..\..\timidity\output.c" /> | |
58 | <ClCompile Include="..\..\timidity\playmidi.c" /> | |
59 | <ClCompile Include="..\..\timidity\readmidi.c" /> | |
60 | <ClCompile Include="..\..\timidity\resample.c" /> | |
61 | <ClCompile Include="..\..\timidity\tables.c" /> | |
62 | <ClCompile Include="..\..\timidity\timidity.c" /> | |
63 | </ItemGroup> | |
64 | <ItemGroup> | |
65 | <ClInclude Include="..\..\effects_internal.h" /> | |
66 | <ClInclude Include="..\..\load_aiff.h" /> | |
67 | <ClInclude Include="..\..\load_voc.h" /> | |
68 | <ClInclude Include="..\..\mixer.h" /> | |
69 | <ClInclude Include="..\..\music.h" /> | |
70 | <ClInclude Include="..\..\music_cmd.h" /> | |
71 | <ClInclude Include="..\..\music_flac.h" /> | |
72 | <ClInclude Include="..\..\music_fluidsynth.h" /> | |
73 | <ClInclude Include="..\..\music_mad.h" /> | |
74 | <ClInclude Include="..\..\music_mikmod.h" /> | |
75 | <ClInclude Include="..\..\music_modplug.h" /> | |
76 | <ClInclude Include="..\..\music_mpg123.h" /> | |
77 | <ClInclude Include="..\..\music_nativemidi.h" /> | |
78 | <ClInclude Include="..\..\music_ogg.h" /> | |
79 | <ClInclude Include="..\..\music_smpeg.h" /> | |
80 | <ClInclude Include="..\..\music_timidity.h" /> | |
81 | <ClInclude Include="..\..\music_wav.h" /> | |
82 | <ClInclude Include="..\..\SDL_mixer.h" /> | |
83 | <ClInclude Include="..\..\timidity\common.h" /> | |
84 | <ClInclude Include="..\..\timidity\instrum.h" /> | |
85 | <ClInclude Include="..\..\timidity\mix.h" /> | |
86 | <ClInclude Include="..\..\timidity\options.h" /> | |
87 | <ClInclude Include="..\..\timidity\output.h" /> | |
88 | <ClInclude Include="..\..\timidity\playmidi.h" /> | |
89 | <ClInclude Include="..\..\timidity\readmidi.h" /> | |
90 | <ClInclude Include="..\..\timidity\resample.h" /> | |
91 | <ClInclude Include="..\..\timidity\tables.h" /> | |
92 | <ClInclude Include="..\..\timidity\timidity.h" /> | |
93 | </ItemGroup> | |
94 | <PropertyGroup Label="Globals"> | |
95 | <ProjectGuid>{fb75c3d3-d261-4575-9d17-9e88e09568ba}</ProjectGuid> | |
96 | <Keyword>Win32Proj</Keyword> | |
97 | <ProjectName>SDL2_mixer-WinPhone81</ProjectName> | |
98 | <RootNamespace>SDL2_mixer_WinPhone81</RootNamespace> | |
99 | <DefaultLanguage>en-US</DefaultLanguage> | |
100 | <MinimumVisualStudioVersion>12.0</MinimumVisualStudioVersion> | |
101 | <AppContainerApplication>true</AppContainerApplication> | |
102 | <ApplicationType>Windows Phone</ApplicationType> | |
103 | <ApplicationTypeRevision>8.1</ApplicationTypeRevision> | |
104 | </PropertyGroup> | |
105 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> | |
106 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> | |
107 | <ConfigurationType>DynamicLibrary</ConfigurationType> | |
108 | <UseDebugLibraries>true</UseDebugLibraries> | |
109 | <PlatformToolset>v120_wp81</PlatformToolset> | |
110 | </PropertyGroup> | |
111 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> | |
112 | <ConfigurationType>DynamicLibrary</ConfigurationType> | |
113 | <UseDebugLibraries>false</UseDebugLibraries> | |
114 | <WholeProgramOptimization>true</WholeProgramOptimization> | |
115 | <PlatformToolset>v120_wp81</PlatformToolset> | |
116 | </PropertyGroup> | |
117 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'" Label="Configuration"> | |
118 | <ConfigurationType>DynamicLibrary</ConfigurationType> | |
119 | <UseDebugLibraries>true</UseDebugLibraries> | |
120 | <PlatformToolset>v120_wp81</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>v120_wp81</PlatformToolset> | |
127 | </PropertyGroup> | |
128 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> | |
129 | <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> | |
130 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | |
131 | </ImportGroup> | |
132 | <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> | |
133 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | |
134 | </ImportGroup> | |
135 | <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'"> | |
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|ARM'"> | |
139 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | |
140 | </ImportGroup> | |
141 | <PropertyGroup Label="UserMacros" /> | |
142 | <PropertyGroup /> | |
143 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> | |
144 | <IgnoreImportLibrary>false</IgnoreImportLibrary> | |
145 | <IntDir>Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\</IntDir> | |
146 | <TargetName>SDL2_mixer</TargetName> | |
147 | </PropertyGroup> | |
148 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> | |
149 | <IgnoreImportLibrary>false</IgnoreImportLibrary> | |
150 | <IntDir>Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\</IntDir> | |
151 | <TargetName>SDL2_mixer</TargetName> | |
152 | </PropertyGroup> | |
153 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'"> | |
154 | <IgnoreImportLibrary>false</IgnoreImportLibrary> | |
155 | <IntDir>Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\</IntDir> | |
156 | <TargetName>SDL2_mixer</TargetName> | |
157 | </PropertyGroup> | |
158 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'"> | |
159 | <IgnoreImportLibrary>false</IgnoreImportLibrary> | |
160 | <IntDir>Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\</IntDir> | |
161 | <TargetName>SDL2_mixer</TargetName> | |
162 | </PropertyGroup> | |
163 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> | |
164 | <ClCompile> | |
165 | <PrecompiledHeader>NotUsing</PrecompiledHeader> | |
166 | <CompileAsWinRT>false</CompileAsWinRT> | |
167 | <SDLCheck>true</SDLCheck> | |
168 | <AdditionalIncludeDirectories>..\..\external\libogg-1.3.2\include;..\..\external\libvorbis-1.3.5\include;..\..\..\SDL\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | |
169 | <PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;MUSIC_WAV;MUSIC_OGG;OGG_DYNAMIC="libvorbisfile.dll";MUSIC_MID_TIMIDITY;%(PreprocessorDefinitions)</PreprocessorDefinitions> | |
170 | </ClCompile> | |
171 | <Link> | |
172 | <SubSystem>Console</SubSystem> | |
173 | <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries> | |
174 | <GenerateWindowsMetadata>false</GenerateWindowsMetadata> | |
175 | </Link> | |
176 | </ItemDefinitionGroup> | |
177 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> | |
178 | <ClCompile> | |
179 | <PrecompiledHeader>NotUsing</PrecompiledHeader> | |
180 | <CompileAsWinRT>false</CompileAsWinRT> | |
181 | <SDLCheck>true</SDLCheck> | |
182 | <AdditionalIncludeDirectories>..\..\external\libogg-1.3.2\include;..\..\external\libvorbis-1.3.5\include;..\..\..\SDL\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | |
183 | <PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;MUSIC_WAV;MUSIC_OGG;OGG_DYNAMIC="libvorbisfile.dll";MUSIC_MID_TIMIDITY;NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> | |
184 | </ClCompile> | |
185 | <Link> | |
186 | <SubSystem>Console</SubSystem> | |
187 | <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries> | |
188 | <GenerateWindowsMetadata>false</GenerateWindowsMetadata> | |
189 | </Link> | |
190 | </ItemDefinitionGroup> | |
191 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'"> | |
192 | <ClCompile> | |
193 | <PrecompiledHeader>NotUsing</PrecompiledHeader> | |
194 | <CompileAsWinRT>false</CompileAsWinRT> | |
195 | <SDLCheck>true</SDLCheck> | |
196 | <AdditionalIncludeDirectories>..\..\external\libogg-1.3.2\include;..\..\external\libvorbis-1.3.5\include;..\..\..\SDL\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | |
197 | <PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;MUSIC_WAV;MUSIC_OGG;OGG_DYNAMIC="libvorbisfile.dll";MUSIC_MID_TIMIDITY;%(PreprocessorDefinitions)</PreprocessorDefinitions> | |
198 | </ClCompile> | |
199 | <Link> | |
200 | <SubSystem>Console</SubSystem> | |
201 | <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries> | |
202 | <GenerateWindowsMetadata>false</GenerateWindowsMetadata> | |
203 | </Link> | |
204 | </ItemDefinitionGroup> | |
205 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'"> | |
206 | <ClCompile> | |
207 | <PrecompiledHeader>NotUsing</PrecompiledHeader> | |
208 | <CompileAsWinRT>false</CompileAsWinRT> | |
209 | <SDLCheck>true</SDLCheck> | |
210 | <AdditionalIncludeDirectories>..\..\external\libogg-1.3.2\include;..\..\external\libvorbis-1.3.5\include;..\..\..\SDL\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | |
211 | <PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;MUSIC_WAV;MUSIC_OGG;OGG_DYNAMIC="libvorbisfile.dll";MUSIC_MID_TIMIDITY;NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> | |
212 | </ClCompile> | |
213 | <Link> | |
214 | <SubSystem>Console</SubSystem> | |
215 | <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries> | |
216 | <GenerateWindowsMetadata>false</GenerateWindowsMetadata> | |
217 | </Link> | |
218 | </ItemDefinitionGroup> | |
219 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | |
220 | <ImportGroup Label="ExtensionTargets"> | |
221 | </ImportGroup> | |
222 | </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="..\..\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>{3f55d8a7-802e-40cd-8b4e-b87e9fe24589}</UniqueIdentifier> | |
103 | </Filter> | |
104 | </ItemGroup> | |
105 | </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|Win32"> | |
4 | <Configuration>Debug</Configuration> | |
5 | <Platform>Win32</Platform> | |
6 | </ProjectConfiguration> | |
7 | <ProjectConfiguration Include="Release|Win32"> | |
8 | <Configuration>Release</Configuration> | |
9 | <Platform>Win32</Platform> | |
10 | </ProjectConfiguration> | |
11 | <ProjectConfiguration Include="Debug|ARM"> | |
12 | <Configuration>Debug</Configuration> | |
13 | <Platform>ARM</Platform> | |
14 | </ProjectConfiguration> | |
15 | <ProjectConfiguration Include="Release|ARM"> | |
16 | <Configuration>Release</Configuration> | |
17 | <Platform>ARM</Platform> | |
18 | </ProjectConfiguration> | |
19 | </ItemGroup> | |
20 | <ItemGroup> | |
21 | <ClCompile Include="..\..\external\libogg-1.3.2\src\bitwise.c" /> | |
22 | <ClCompile Include="..\..\external\libogg-1.3.2\src\framing.c" /> | |
23 | </ItemGroup> | |
24 | <ItemGroup> | |
25 | <None Include="..\..\external\libogg-1.3.2\win32\ogg.def" /> | |
26 | </ItemGroup> | |
27 | <ItemGroup> | |
28 | <ClInclude Include="..\..\external\libogg-1.3.2\include\ogg\ogg.h" /> | |
29 | <ClInclude Include="..\..\external\libogg-1.3.2\include\ogg\os_types.h" /> | |
30 | </ItemGroup> | |
31 | <PropertyGroup Label="Globals"> | |
32 | <ProjectGuid>{0ccc2e56-e3a4-4cd7-92ba-0c6f99440753}</ProjectGuid> | |
33 | <Keyword>Win32Proj</Keyword> | |
34 | <ProjectName>libogg_dynamic-WinPhone81</ProjectName> | |
35 | <RootNamespace>libogg_dynamic_WinPhone81</RootNamespace> | |
36 | <DefaultLanguage>en-US</DefaultLanguage> | |
37 | <MinimumVisualStudioVersion>12.0</MinimumVisualStudioVersion> | |
38 | <AppContainerApplication>true</AppContainerApplication> | |
39 | <ApplicationType>Windows Phone</ApplicationType> | |
40 | <ApplicationTypeRevision>8.1</ApplicationTypeRevision> | |
41 | </PropertyGroup> | |
42 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> | |
43 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> | |
44 | <ConfigurationType>DynamicLibrary</ConfigurationType> | |
45 | <UseDebugLibraries>true</UseDebugLibraries> | |
46 | <PlatformToolset>v120_wp81</PlatformToolset> | |
47 | </PropertyGroup> | |
48 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> | |
49 | <ConfigurationType>DynamicLibrary</ConfigurationType> | |
50 | <UseDebugLibraries>false</UseDebugLibraries> | |
51 | <WholeProgramOptimization>true</WholeProgramOptimization> | |
52 | <PlatformToolset>v120_wp81</PlatformToolset> | |
53 | </PropertyGroup> | |
54 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'" Label="Configuration"> | |
55 | <ConfigurationType>DynamicLibrary</ConfigurationType> | |
56 | <UseDebugLibraries>true</UseDebugLibraries> | |
57 | <PlatformToolset>v120_wp81</PlatformToolset> | |
58 | </PropertyGroup> | |
59 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'" Label="Configuration"> | |
60 | <ConfigurationType>DynamicLibrary</ConfigurationType> | |
61 | <UseDebugLibraries>false</UseDebugLibraries> | |
62 | <WholeProgramOptimization>true</WholeProgramOptimization> | |
63 | <PlatformToolset>v120_wp81</PlatformToolset> | |
64 | </PropertyGroup> | |
65 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> | |
66 | <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> | |
67 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | |
68 | </ImportGroup> | |
69 | <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> | |
70 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | |
71 | </ImportGroup> | |
72 | <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'"> | |
73 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | |
74 | </ImportGroup> | |
75 | <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|ARM'"> | |
76 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | |
77 | </ImportGroup> | |
78 | <PropertyGroup Label="UserMacros" /> | |
79 | <PropertyGroup /> | |
80 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> | |
81 | <IgnoreImportLibrary>false</IgnoreImportLibrary> | |
82 | <IntDir>Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\</IntDir> | |
83 | <TargetName>libogg</TargetName> | |
84 | </PropertyGroup> | |
85 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> | |
86 | <IgnoreImportLibrary>false</IgnoreImportLibrary> | |
87 | <IntDir>Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\</IntDir> | |
88 | <TargetName>libogg</TargetName> | |
89 | </PropertyGroup> | |
90 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'"> | |
91 | <IgnoreImportLibrary>false</IgnoreImportLibrary> | |
92 | <IntDir>Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\</IntDir> | |
93 | <TargetName>libogg</TargetName> | |
94 | </PropertyGroup> | |
95 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'"> | |
96 | <IgnoreImportLibrary>false</IgnoreImportLibrary> | |
97 | <IntDir>Objs\$(Platform)\$(Configuration)\$(MSBuildProjectName)\</IntDir> | |
98 | <TargetName>libogg</TargetName> | |
99 | </PropertyGroup> | |
100 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> | |
101 | <ClCompile> | |
102 | <PrecompiledHeader>NotUsing</PrecompiledHeader> | |
103 | <CompileAsWinRT>false</CompileAsWinRT> | |
104 | <SDLCheck>true</SDLCheck> | |
105 | <AdditionalIncludeDirectories>..\..\external\libogg-1.3.2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | |
106 | <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;LIBOGG_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions> | |
107 | <DisableSpecificWarnings>4244</DisableSpecificWarnings> | |
108 | </ClCompile> | |
109 | <Link> | |
110 | <SubSystem>Console</SubSystem> | |
111 | <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries> | |
112 | <GenerateWindowsMetadata>false</GenerateWindowsMetadata> | |
113 | <ModuleDefinitionFile>..\..\external\libogg-1.3.2\win32\ogg.def</ModuleDefinitionFile> | |
114 | </Link> | |
115 | </ItemDefinitionGroup> | |
116 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> | |
117 | <ClCompile> | |
118 | <PrecompiledHeader>NotUsing</PrecompiledHeader> | |
119 | <CompileAsWinRT>false</CompileAsWinRT> | |
120 | <SDLCheck>true</SDLCheck> | |
121 | <AdditionalIncludeDirectories>..\..\external\libogg-1.3.2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | |
122 | <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;LIBOGG_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions> | |
123 | <DisableSpecificWarnings>4244</DisableSpecificWarnings> | |
124 | </ClCompile> | |
125 | <Link> | |
126 | <SubSystem>Console</SubSystem> | |
127 | <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries> | |
128 | <GenerateWindowsMetadata>false</GenerateWindowsMetadata> | |
129 | <ModuleDefinitionFile>..\..\external\libogg-1.3.2\win32\ogg.def</ModuleDefinitionFile> | |
130 | </Link> | |
131 | </ItemDefinitionGroup> | |
132 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'"> | |
133 | <ClCompile> | |
134 | <PrecompiledHeader>NotUsing</PrecompiledHeader> | |
135 | <CompileAsWinRT>false</CompileAsWinRT> | |
136 | <SDLCheck>true</SDLCheck> | |
137 | <AdditionalIncludeDirectories>..\..\external\libogg-1.3.2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | |
138 | <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;LIBOGG_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions> | |
139 | <DisableSpecificWarnings>4244</DisableSpecificWarnings> | |
140 | </ClCompile> | |
141 | <Link> | |
142 | <SubSystem>Console</SubSystem> | |
143 | <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries> | |
144 | <GenerateWindowsMetadata>false</GenerateWindowsMetadata> | |
145 | <ModuleDefinitionFile>..\..\external\libogg-1.3.2\win32\ogg.def</ModuleDefinitionFile> | |
146 | </Link> | |
147 | </ItemDefinitionGroup> | |
148 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'"> | |
149 | <ClCompile> | |
150 | <PrecompiledHeader>NotUsing</PrecompiledHeader> | |
151 | <CompileAsWinRT>false</CompileAsWinRT> | |
152 | <SDLCheck>true</SDLCheck> | |
153 | <AdditionalIncludeDirectories>..\..\external\libogg-1.3.2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> | |
154 | <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;LIBOGG_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions> | |
155 | <DisableSpecificWarnings>4244</DisableSpecificWarnings> | |
156 | </ClCompile> | |
157 | <Link> | |
158 | <SubSystem>Console</SubSystem> | |
159 | <IgnoreAllDefaultLibraries>false</IgnoreAllDefaultLibraries> | |
160 | <GenerateWindowsMetadata>false</GenerateWindowsMetadata> | |
161 | <ModuleDefinitionFile>..\..\external\libogg-1.3.2\win32\ogg.def</ModuleDefinitionFile> | |
162 | </Link> | |
163 | </ItemDefinitionGroup> | |
164 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | |
165 | <ImportGroup Label="ExtensionTargets"> | |
166 | </ImportGroup> | |
167 | </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|Win32"> | |
4 | <Configuration>Debug</Configuration> | |
5 | <Platform>Win32</Platform> | |
6 | </ProjectConfiguration> | |
7 | <ProjectConfiguration Include="Release|Win32"> | |
8 | <Configuration>Release</Configuration> | |
9 | <Platform>Win32</Platform> | |
10 | </ProjectConfiguration> | |
11 | <ProjectConfiguration Include="Debug|ARM"> | |
12 | <Configuration>Debug</Configuration> | |
13 | <Platform>ARM</Platform> | |
14 | </ProjectConfiguration> | |
15 | <ProjectConfiguration Include="Release|ARM"> | |
16 | <Configuration>Release</Configuration> | |
17 | <Platform>ARM</Platform> | |
18 | </ProjectConfiguration> | |
19 | </ItemGroup> | |
20 | <ItemGroup> | |
21 | <ClCompile Include="..\..\external\libvorbis-1.3.5\lib\analysis.c" /> | |
22 | <ClCompile Include="..\..\external\libvorbis-1.3.5\lib\bitrate.c" /> | |
23 | <ClCompile Include="..\..\external\libvorbis-1.3.5\lib\block.c" /> | |
24 | <ClCompile Include="..\..\external\libvorbis-1.3.5\lib\codebook.c" /> | |
25 | <ClCompile Include="..\..\external\libvorbis-1.3.5\lib\envelope.c" /> | |
26 | <ClCompile Include="..\..\external\libvorbis-1.3.5\lib\floor0.c" /> | |
27 | <ClCompile Include="..\..\external\libvorbis-1.3.5\lib\floor1.c" /> | |
28 | <ClCompile Include="..\..\external\libvorbis-1.3.5\lib\info.c" /> | |
29 | <ClCompile Include="..\..\external\libvorbis-1.3.5\lib\lookup.c" /> | |
30 | <ClCompile Include="..\..\external\libvorbis-1.3.5\lib\lpc.c" /> | |
31 | <ClCompile Include="..\..\external\libvorbis-1.3.5\lib\lsp.c" /> | |
32 | <ClCompile Include="..\..\external\libvorbis-1.3.5\lib\mapping0.c" /> | |
33 | <ClCompile Include="..\..\external\libvorbis-1.3.5\lib\mdct.c" /> | |
34 | <ClCompile Include="..\..\external\libvorbis-1.3.5\lib\psy.c" /> | |
35 | <ClCompile Include="..\..\external\libvorbis-1.3.5\lib\registry.c" /> | |
36 | <ClCompile Include="..\..\external\libvorbis-1.3.5\lib\res0.c" /> | |
37 | <ClCompile Include="..\..\external\libvorbis-1.3.5\lib\sharedbook.c" /> | |
38 | <ClCompile Include="..\..\external\libvorbis-1.3.5\lib\smallft.c" /> | |
39 | <ClCompile Include="..\..\external\libvorbis-1.3.5\lib\synthesis.c" /> | |
40 | <ClCompile Include="..\..\external\libvorbis-1.3.5\lib\vorbisenc.c" /> | |
41 | <ClCompile Include="..\..\external\libvorbis-1.3.5\lib\window.c" /> | |
42 | </ItemGroup> | |
43 | <ItemGroup> | |
44 | <ClInclude Include="..\..\external\libvorbis-1.3.5\include\vorbis\codec.h" /> | |
45 | <ClInclude Include="..\..\external\libvorbis-1.3.5\include\vorbis\vorbisenc.h" /> | |
46 | <ClInclude Include="..\..\external\libvorbis-1.3.5\include\vorbis\vorbisfile.h" /> | |
47 | <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\backends.h" /> | |
48 | <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\bitrate.h" /> | |
49 | <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\books\coupled\res_books_stereo.h" /> | |
50 | <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\books\floor\floor_books.h" /> | |
51 | <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\books\uncoupled\res_books_uncoupled.h" /> | |
52 | <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\codebook.h" /> | |
53 | <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\codec_internal.h" /> | |
54 | <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\envelope.h" /> | |
55 | <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\highlevel.h" /> | |
56 | <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\lookup.h" /> | |
57 | <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\lookup_data.h" /> | |
58 | <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\lpc.h" /> | |
59 | <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\lsp.h" /> | |
60 | <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\masking.h" /> | |
61 | <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\mdct.h" /> | |
62 | <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\misc.h" /> | |
63 | <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\modes\floor_all.h" /> | |
64 | <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\modes\psych_11.h" /> | |
65 | <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\modes\psych_16.h" /> | |
66 | <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\modes\psych_44.h" /> | |
67 | <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\modes\psych_8.h" /> | |
68 | <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\modes\residue_16.h" /> | |
69 | <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\modes\residue_44.h" /> | |
70 | <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\modes\residue_44u.h" /> | |
71 | <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\modes\residue_8.h" /> | |
72 | <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\modes\setup_11.h" /> | |
73 | <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\modes\setup_16.h" /> | |
74 | <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\modes\setup_22.h" /> | |
75 | <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\modes\setup_32.h" /> | |
76 | <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\modes\setup_44.h" /> | |
77 | <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\modes\setup_44u.h" /> | |
78 | <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\modes\setup_8.h" /> | |
79 | <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\modes\setup_X.h" /> | |
80 | <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\os.h" /> | |
81 | <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\psy.h" /> | |
82 | <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\registry.h" /> | |
83 | <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\scales.h" /> | |
84 | <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\smallft.h" /> | |
85 | <ClInclude Include="..\..\external\libvorbis-1.3.5\lib\window.h" /> | |
86 | </ItemGroup> | |
87 | <ItemGroup> | |
88 | <None Include="..\..\external\libvorbis-1.3.5\win32\vorbis.def" /> | |
89 | </ItemGroup> | |
90 | <ItemGroup> | |
91 | <ProjectReference Include="libogg_dynamic-WinPhone81.vcxproj"> | |
92 | <Project>{0ccc2e56-e3a4-4cd7-92ba-0c6f99440753}</Project> | |
93 | </ProjectReference> | |
94 | </ItemGroup> | |
95 | <PropertyGroup Label="Globals"> | |
96 | <ProjectGuid>{c943dbc9-4eb0-4684-be3e-334342a7ee2c}</ProjectGuid> | |
97 | <Keyword>Win32Proj</Keyword> | |
98 | <ProjectName>libvorbis_dynamic-WinPhone81</ProjectName> | |
99 | <RootNamespace>libvorbis_dynamic_WinPhone81</RootNamespace> | |
100 | <DefaultLanguage>en-US</DefaultLanguage> | |
101 | <MinimumVisualStudioVersion>12.0</MinimumVisualStudioVersion> | |
102 | <AppContainerApplication>true</AppContainerApplication> | |
103 | <ApplicationType>Windows Phone</ApplicationType> | |
104 | <ApplicationTypeRevision>8.1</ApplicationTypeRevision> | |
105 | </PropertyGroup> | |
106 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> | |
107 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> | |
108 | <ConfigurationType>DynamicLibrary</ConfigurationType> | |
109 | <UseDebugLibraries>true</UseDebugLibraries> | |
110 | <PlatformToolset>v120_wp81</PlatformToolset> | |
111 | </PropertyGroup> | |
112 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> | |
113 | <ConfigurationType>DynamicLibrary</ConfigurationType> | |
114 | <UseDebugLibraries>false</UseDebugLibraries> | |
115 | <WholeProgramOptimization>true</WholeProgramOptimization> | |
116 | <PlatformToolset>v120_wp81</PlatformToolset> | |
117 | </PropertyGroup> | |
118 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'" Label="Configuration"> | |
119 | <ConfigurationType>DynamicLibrary</ConfigurationType> | |
120 | <UseDebugLibraries>true</UseDebugLibraries> | |
121 | <PlatformToolset>v120_wp81</PlatformToolset> | |
122 | </PropertyGroup> | |
123 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'" Label="Configuration"> | |
124 | <ConfigurationType>DynamicLibrary</ConfigurationType> | |
125 | <UseDebugLibraries>false</UseDebugLibraries> | |
126 | <WholeProgramOptimization>true</WholeProgramOptimization> | |
127 | <PlatformToolset>v120_wp81</PlatformToolset> | |
128 | </PropertyGroup> | |
129 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> | |
130 | <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> | |
131 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | |
132 | </ImportGroup> | |
133 | <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> | |
134 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | |
135 | </ImportGroup> | |
136 | <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'"> | |
137 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> | |
138 | </ImportGroup> | |
139 | <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|ARM'"> | |
140 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> |