|
@@ -1,10 +1,18 @@
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
<ItemGroup Label="ProjectConfigurations">
|
|
|
+ <ProjectConfiguration Include="Debug_DLL|Win32">
|
|
|
+ <Configuration>Debug_DLL</Configuration>
|
|
|
+ <Platform>Win32</Platform>
|
|
|
+ </ProjectConfiguration>
|
|
|
<ProjectConfiguration Include="Debug|Win32">
|
|
|
<Configuration>Debug</Configuration>
|
|
|
<Platform>Win32</Platform>
|
|
|
</ProjectConfiguration>
|
|
|
+ <ProjectConfiguration Include="Release_DLL|Win32">
|
|
|
+ <Configuration>Release_DLL</Configuration>
|
|
|
+ <Platform>Win32</Platform>
|
|
|
+ </ProjectConfiguration>
|
|
|
<ProjectConfiguration Include="Release|Win32">
|
|
|
<Configuration>Release</Configuration>
|
|
|
<Platform>Win32</Platform>
|
|
@@ -23,6 +31,12 @@
|
|
|
<PlatformToolset>v141</PlatformToolset>
|
|
|
<CharacterSet>Unicode</CharacterSet>
|
|
|
</PropertyGroup>
|
|
|
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug_DLL|Win32'" Label="Configuration">
|
|
|
+ <ConfigurationType>DynamicLibrary</ConfigurationType>
|
|
|
+ <UseDebugLibraries>true</UseDebugLibraries>
|
|
|
+ <PlatformToolset>v141</PlatformToolset>
|
|
|
+ <CharacterSet>Unicode</CharacterSet>
|
|
|
+ </PropertyGroup>
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
|
|
<ConfigurationType>StaticLibrary</ConfigurationType>
|
|
|
<UseDebugLibraries>false</UseDebugLibraries>
|
|
@@ -30,6 +44,13 @@
|
|
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
|
|
<CharacterSet>Unicode</CharacterSet>
|
|
|
</PropertyGroup>
|
|
|
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release_DLL|Win32'" Label="Configuration">
|
|
|
+ <ConfigurationType>DynamicLibrary</ConfigurationType>
|
|
|
+ <UseDebugLibraries>false</UseDebugLibraries>
|
|
|
+ <PlatformToolset>v141</PlatformToolset>
|
|
|
+ <WholeProgramOptimization>true</WholeProgramOptimization>
|
|
|
+ <CharacterSet>Unicode</CharacterSet>
|
|
|
+ </PropertyGroup>
|
|
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
|
<ImportGroup Label="ExtensionSettings">
|
|
|
</ImportGroup>
|
|
@@ -38,17 +59,30 @@
|
|
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
|
</ImportGroup>
|
|
|
+ <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug_DLL|Win32'" Label="PropertySheets">
|
|
|
+ <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
|
+ </ImportGroup>
|
|
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
|
</ImportGroup>
|
|
|
+ <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release_DLL|Win32'" Label="PropertySheets">
|
|
|
+ <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
|
+ </ImportGroup>
|
|
|
<PropertyGroup Label="UserMacros" />
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
|
<OutDir>$(SolutionDir)$(ProjectName)\$(Configuration)\</OutDir>
|
|
|
</PropertyGroup>
|
|
|
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release_DLL|Win32'">
|
|
|
+ <OutDir>$(SolutionDir)$(ProjectName)\$(Configuration)\</OutDir>
|
|
|
+ </PropertyGroup>
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
|
<OutDir>$(SolutionDir)$(ProjectName)\$(Configuration)\</OutDir>
|
|
|
<IntDir>$(SolutionDir)$(ProjectName)\$(Configuration)\temp</IntDir>
|
|
|
</PropertyGroup>
|
|
|
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug_DLL|Win32'">
|
|
|
+ <OutDir>$(SolutionDir)$(ProjectName)\$(Configuration)\</OutDir>
|
|
|
+ <IntDir>$(SolutionDir)$(ProjectName)\$(Configuration)\temp</IntDir>
|
|
|
+ </PropertyGroup>
|
|
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
|
<ClCompile>
|
|
|
<PrecompiledHeader>
|
|
@@ -57,7 +91,25 @@
|
|
|
<Optimization>Disabled</Optimization>
|
|
|
<PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions);GRAPHICS_API_OPENGL_33;PLATFORM_DESKTOP</PreprocessorDefinitions>
|
|
|
<CompileAs>CompileAsC</CompileAs>
|
|
|
- <AdditionalIncludeDirectories>$(SolutionDir)..\..\release\include</AdditionalIncludeDirectories>
|
|
|
+ <AdditionalIncludeDirectories>$(SolutionDir)..\..\release\include;$(SolutionDir)..\..\src\external\glfw\include</AdditionalIncludeDirectories>
|
|
|
+ </ClCompile>
|
|
|
+ <Link>
|
|
|
+ <SubSystem>Windows</SubSystem>
|
|
|
+ </Link>
|
|
|
+ <Lib>
|
|
|
+ <AdditionalLibraryDirectories>%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
|
|
+ </Lib>
|
|
|
+ </ItemDefinitionGroup>
|
|
|
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug_DLL|Win32'">
|
|
|
+ <ClCompile>
|
|
|
+ <PrecompiledHeader>
|
|
|
+ </PrecompiledHeader>
|
|
|
+ <WarningLevel>Level3</WarningLevel>
|
|
|
+ <Optimization>Disabled</Optimization>
|
|
|
+ <PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions);GRAPHICS_API_OPENGL_33;PLATFORM_DESKTOP;BUILD_LIBTYPE_SHARED</PreprocessorDefinitions>
|
|
|
+ <CompileAs>CompileAsC</CompileAs>
|
|
|
+ <AdditionalIncludeDirectories>$(SolutionDir)..\..\release\include;$(SolutionDir)..\..\src\external\glfw\include</AdditionalIncludeDirectories>
|
|
|
+ <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
|
|
</ClCompile>
|
|
|
<Link>
|
|
|
<SubSystem>Windows</SubSystem>
|
|
@@ -75,8 +127,27 @@
|
|
|
<FunctionLevelLinking>true</FunctionLevelLinking>
|
|
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
|
|
<PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions);GRAPHICS_API_OPENGL_33;PLATFORM_DESKTOP</PreprocessorDefinitions>
|
|
|
- <AdditionalIncludeDirectories>$(SolutionDir)..\..\release\include</AdditionalIncludeDirectories>
|
|
|
+ <AdditionalIncludeDirectories>$(SolutionDir)..\..\release\include;$(SolutionDir)..\..\src\external\glfw\include</AdditionalIncludeDirectories>
|
|
|
+ <CompileAs>CompileAsC</CompileAs>
|
|
|
+ </ClCompile>
|
|
|
+ <Link>
|
|
|
+ <SubSystem>Windows</SubSystem>
|
|
|
+ <EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|
|
+ <OptimizeReferences>true</OptimizeReferences>
|
|
|
+ </Link>
|
|
|
+ </ItemDefinitionGroup>
|
|
|
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release_DLL|Win32'">
|
|
|
+ <ClCompile>
|
|
|
+ <WarningLevel>Level3</WarningLevel>
|
|
|
+ <PrecompiledHeader>
|
|
|
+ </PrecompiledHeader>
|
|
|
+ <Optimization>MaxSpeed</Optimization>
|
|
|
+ <FunctionLevelLinking>true</FunctionLevelLinking>
|
|
|
+ <IntrinsicFunctions>true</IntrinsicFunctions>
|
|
|
+ <PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions);GRAPHICS_API_OPENGL_33;PLATFORM_DESKTOP;BUILD_LIBTYPE_SHARED</PreprocessorDefinitions>
|
|
|
+ <AdditionalIncludeDirectories>$(SolutionDir)..\..\release\include;$(SolutionDir)..\..\src\external\glfw\include</AdditionalIncludeDirectories>
|
|
|
<CompileAs>CompileAsC</CompileAs>
|
|
|
+ <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
|
|
</ClCompile>
|
|
|
<Link>
|
|
|
<SubSystem>Windows</SubSystem>
|
|
@@ -90,8 +161,10 @@
|
|
|
<ItemGroup>
|
|
|
<ClCompile Include="..\..\..\src\audio.c" />
|
|
|
<ClCompile Include="..\..\..\src\core.c" />
|
|
|
+ <ClCompile Include="..\..\..\src\external\mini_al.c" />
|
|
|
<ClCompile Include="..\..\..\src\external\stb_vorbis.c" />
|
|
|
<ClCompile Include="..\..\..\src\models.c" />
|
|
|
+ <ClCompile Include="..\..\..\src\rglfw.c" />
|
|
|
<ClCompile Include="..\..\..\src\rlgl.c" />
|
|
|
<ClCompile Include="..\..\..\src\shapes.c" />
|
|
|
<ClCompile Include="..\..\..\src\text.c" />
|
|
@@ -103,6 +176,7 @@
|
|
|
<ClInclude Include="..\..\..\src\external\glad.h" />
|
|
|
<ClInclude Include="..\..\..\src\external\jar_mod.h" />
|
|
|
<ClInclude Include="..\..\..\src\external\jar_xm.h" />
|
|
|
+ <ClInclude Include="..\..\..\src\external\mini_al.h" />
|
|
|
<ClInclude Include="..\..\..\src\external\stb_image.h" />
|
|
|
<ClInclude Include="..\..\..\src\external\stb_image_resize.h" />
|
|
|
<ClInclude Include="..\..\..\src\external\stb_image_write.h" />
|