diff --git a/.gitignore b/.gitignore
index b4cdf38ce..e848a85f4 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,11 @@
-Compressonator/Build
-Compressonator/Examples/VS2015/.vs
-Compressonator/VS2015/.vs
\ No newline at end of file
+Compressonator/Build/*
+Compressonator/Applications/_Plugins/C3DModel_viewers/glTF_DX12_EX/GeneratedFiles/*
+Compressonator/Applications/_Plugins/C3DModel_viewers/glTF_OpenGL/GeneratedFiles/*
+Compressonator/Applications/CompressonatorGUI/GeneratedFiles/Release_MD/*
+Compressonator/Applications/CompressonatorGUI/GeneratedFiles/Debug_MD/*
+Compressonator/Applications/CompressonatorGUI/GeneratedFiles/qrc_CompressonatorGUI.cpp
+*vcxproj.user
+*.vs
+*.log
+*.VC.db
+*.VC.VC.opendb
diff --git a/BuildCLI.bat b/BuildCLI.bat
index e0b69cb76..04557e04d 100644
--- a/BuildCLI.bat
+++ b/BuildCLI.bat
@@ -43,7 +43,7 @@ echo --4
set PATH=%MSBUILDDIR%;%PATH%
echo --5
echo -----------------------------------------------------------------------------
-echo Get MSBUILD prop path for VS2010
+echo Get MSBUILD prop path
echo -----------------------------------------------------------------------------
reg.exe query "HKLM\SOFTWARE\Microsoft\MSBuild\ToolsVersions\12.0" /v MSBuildToolsRoot > nul 2>&1
if ERRORLEVEL 1 goto MSBuildTest2
@@ -52,9 +52,9 @@ for /f "skip=2 tokens=2,*" %%A in ('reg.exe query "HKLM\SOFTWARE\Microsoft\MSBui
echo --2
set PATH=%MSBUILDROOT%\Microsoft.Cpp\v4.0\;%PATH%
echo -----------------------------------------------------------------------------
-echo Set MSBUILD prop path for VS2012, VS2013, VS2015
+echo Set MSBUILD prop path for VS2015
echo -----------------------------------------------------------------------------
-set PATH=%MSBUILDROOT%\Microsoft.Cpp\v4.0\V110\;%MSBUILDROOT%\Microsoft.Cpp\v4.0\V120\;%MSBUILDROOT%\Microsoft.Cpp\v4.0\V140\;%PATH%
+set PATH=C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE;C:\Program Files (x86)\MSBuild\14.0\Bin;C:\Program Files\CMake\bin;C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\bin;%MSBUILDROOT%\Microsoft.Cpp\v4.0\V140\;%PATH%
echo --1
PATH >> %OUTPUT_LOG%
echo --2
@@ -97,11 +97,11 @@ echo VS2015 Build CompressonatorCLI Exe
echo ------------------------------------------------------------
cd %COMPRESSONATOR_ROOT%\Applications\CompressonatorCLI\VS2015
::
-set Building="STEP a2: VS2015 Build CompressonatorCLI Win32:Release -----------------------"
+set Building="STEP a2: VS2015 Build CompressonatorCLI x64:Release -----------------------"
echo --1
echo %Building% >> %OUTPUT_LOG%
echo --2
-MSBUILD VS2015.sln /p:Configuration=release_md /t:rebuild /p:Platform=win32 /p:VCTargetsPath="%MSBUILDROOT%\Microsoft.Cpp\v4.0\V140/" >> %OUTPUT_LOG%
+msbuild /m:6 /t:rebuild /p:Configuration=Release_MD /p:Platform=x64 "VS2015.sln" >> %OUTPUT_LOG%
IF %ERRORLEVEL% GTR 0 goto Error
::
Goto Done
diff --git a/BuildGUI.bat b/BuildGUI.bat
index ec92bb6fd..5f0df78e4 100644
--- a/BuildGUI.bat
+++ b/BuildGUI.bat
@@ -43,7 +43,7 @@ echo --4
set PATH=%MSBUILDDIR%;%PATH%
echo --5
echo -----------------------------------------------------------------------------
-echo Get MSBUILD prop path for VS2010
+echo Get MSBUILD prop path
echo -----------------------------------------------------------------------------
reg.exe query "HKLM\SOFTWARE\Microsoft\MSBuild\ToolsVersions\12.0" /v MSBuildToolsRoot > nul 2>&1
if ERRORLEVEL 1 goto MSBuildTest2
@@ -52,9 +52,9 @@ for /f "skip=2 tokens=2,*" %%A in ('reg.exe query "HKLM\SOFTWARE\Microsoft\MSBui
echo --2
set PATH=%MSBUILDROOT%\Microsoft.Cpp\v4.0\;%PATH%
echo -----------------------------------------------------------------------------
-echo Set MSBUILD prop path for VS2012, VS2013, VS2015
+echo Set MSBUILD prop path for VS2015
echo -----------------------------------------------------------------------------
-set PATH=%MSBUILDROOT%\Microsoft.Cpp\v4.0\V110\;%MSBUILDROOT%\Microsoft.Cpp\v4.0\V120\;%MSBUILDROOT%\Microsoft.Cpp\v4.0\V140\;%PATH%
+set PATH=C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE;C:\Program Files (x86)\MSBuild\14.0\Bin;C:\Program Files\CMake\bin;C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\bin;%MSBUILDROOT%\Microsoft.Cpp\v4.0\V140\;%PATH%
echo --1
PATH >> %OUTPUT_LOG%
echo --2
@@ -97,11 +97,11 @@ echo VS2015 Build Compressonator GUI Exe
echo ------------------------------------------------------------
cd %COMPRESSONATOR_ROOT%\Applications\CompressonatorGUI\VS2015
::
-set Building="STEP a2: VS2015 Build CompressonatorGUI Win32:Release_MD -----------------------"
+set Building="STEP a2: VS2015 Build CompressonatorGUI x64:Release_MD -----------------------"
echo --1
echo %Building% >> %OUTPUT_LOG%
echo --2
-MSBUILD VS2015.sln /p:Configuration=release_md /t:rebuild /p:Platform=win32 /p:VCTargetsPath="%MSBUILDROOT%\Microsoft.Cpp\v4.0\V140/" >> %OUTPUT_LOG%
+msbuild /m:6 /t:rebuild /p:Configuration=Release_MD /p:Platform=x64 "VS2015.sln" >> %OUTPUT_LOG%
IF %ERRORLEVEL% GTR 0 goto Error
diff --git a/Compressonator/Applications/CompressonatorCLI/VS2015/Compressonator.vcxproj b/Compressonator/Applications/CompressonatorCLI/VS2015/Compressonator.vcxproj
index 4c591e87d..37017ded6 100644
--- a/Compressonator/Applications/CompressonatorCLI/VS2015/Compressonator.vcxproj
+++ b/Compressonator/Applications/CompressonatorCLI/VS2015/Compressonator.vcxproj
@@ -217,7 +217,6 @@
-
diff --git a/Compressonator/Applications/CompressonatorCLI/VS2015/Compressonator.vcxproj.filters b/Compressonator/Applications/CompressonatorCLI/VS2015/Compressonator.vcxproj.filters
index 02e2dc1e6..31560f4a6 100644
--- a/Compressonator/Applications/CompressonatorCLI/VS2015/Compressonator.vcxproj.filters
+++ b/Compressonator/Applications/CompressonatorCLI/VS2015/Compressonator.vcxproj.filters
@@ -29,9 +29,6 @@
Source Files
-
- Source Files
-
Source Files
diff --git a/Compressonator/Applications/CompressonatorGUI/VS2015/VS2015.sln b/Compressonator/Applications/CompressonatorGUI/VS2015/VS2015.sln
index a7f079eb8..f9f7b660c 100644
--- a/Compressonator/Applications/CompressonatorGUI/VS2015/VS2015.sln
+++ b/Compressonator/Applications/CompressonatorGUI/VS2015/VS2015.sln
@@ -150,430 +150,218 @@ Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug_MD|Win32 = Debug_MD|Win32
Debug_MD|x64 = Debug_MD|x64
- Debug|Win32 = Debug|Win32
- Debug|x64 = Debug|x64
Release_MD|Win32 = Release_MD|Win32
Release_MD|x64 = Release_MD|x64
- Release|Win32 = Release|Win32
- Release|x64 = Release|x64
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{F9834E0C-3037-4AAB-B7A2-2E0265BC0211}.Debug_MD|Win32.ActiveCfg = Debug_MD|Win32
{F9834E0C-3037-4AAB-B7A2-2E0265BC0211}.Debug_MD|Win32.Build.0 = Debug_MD|Win32
{F9834E0C-3037-4AAB-B7A2-2E0265BC0211}.Debug_MD|x64.ActiveCfg = Debug_MD|x64
{F9834E0C-3037-4AAB-B7A2-2E0265BC0211}.Debug_MD|x64.Build.0 = Debug_MD|x64
- {F9834E0C-3037-4AAB-B7A2-2E0265BC0211}.Debug|Win32.ActiveCfg = Debug|Win32
- {F9834E0C-3037-4AAB-B7A2-2E0265BC0211}.Debug|Win32.Build.0 = Debug|Win32
- {F9834E0C-3037-4AAB-B7A2-2E0265BC0211}.Debug|x64.ActiveCfg = Debug|x64
- {F9834E0C-3037-4AAB-B7A2-2E0265BC0211}.Debug|x64.Build.0 = Debug|x64
{F9834E0C-3037-4AAB-B7A2-2E0265BC0211}.Release_MD|Win32.ActiveCfg = Release_MD|Win32
{F9834E0C-3037-4AAB-B7A2-2E0265BC0211}.Release_MD|Win32.Build.0 = Release_MD|Win32
{F9834E0C-3037-4AAB-B7A2-2E0265BC0211}.Release_MD|x64.ActiveCfg = Release_MD|x64
{F9834E0C-3037-4AAB-B7A2-2E0265BC0211}.Release_MD|x64.Build.0 = Release_MD|x64
- {F9834E0C-3037-4AAB-B7A2-2E0265BC0211}.Release|Win32.ActiveCfg = Release|Win32
- {F9834E0C-3037-4AAB-B7A2-2E0265BC0211}.Release|Win32.Build.0 = Release|Win32
- {F9834E0C-3037-4AAB-B7A2-2E0265BC0211}.Release|x64.ActiveCfg = Release|x64
- {F9834E0C-3037-4AAB-B7A2-2E0265BC0211}.Release|x64.Build.0 = Release|x64
{0671333B-4D11-43EE-BBEE-9F96E54DACAE}.Debug_MD|Win32.ActiveCfg = Debug_MD|Win32
{0671333B-4D11-43EE-BBEE-9F96E54DACAE}.Debug_MD|Win32.Build.0 = Debug_MD|Win32
{0671333B-4D11-43EE-BBEE-9F96E54DACAE}.Debug_MD|x64.ActiveCfg = Debug_MD|x64
{0671333B-4D11-43EE-BBEE-9F96E54DACAE}.Debug_MD|x64.Build.0 = Debug_MD|x64
- {0671333B-4D11-43EE-BBEE-9F96E54DACAE}.Debug|Win32.ActiveCfg = Debug|Win32
- {0671333B-4D11-43EE-BBEE-9F96E54DACAE}.Debug|Win32.Build.0 = Debug|Win32
- {0671333B-4D11-43EE-BBEE-9F96E54DACAE}.Debug|x64.ActiveCfg = Debug|x64
- {0671333B-4D11-43EE-BBEE-9F96E54DACAE}.Debug|x64.Build.0 = Debug|x64
{0671333B-4D11-43EE-BBEE-9F96E54DACAE}.Release_MD|Win32.ActiveCfg = Release_MD|Win32
{0671333B-4D11-43EE-BBEE-9F96E54DACAE}.Release_MD|Win32.Build.0 = Release_MD|Win32
{0671333B-4D11-43EE-BBEE-9F96E54DACAE}.Release_MD|x64.ActiveCfg = Release_MD|x64
{0671333B-4D11-43EE-BBEE-9F96E54DACAE}.Release_MD|x64.Build.0 = Release_MD|x64
- {0671333B-4D11-43EE-BBEE-9F96E54DACAE}.Release|Win32.ActiveCfg = Release|Win32
- {0671333B-4D11-43EE-BBEE-9F96E54DACAE}.Release|Win32.Build.0 = Release|Win32
- {0671333B-4D11-43EE-BBEE-9F96E54DACAE}.Release|x64.ActiveCfg = Release|x64
- {0671333B-4D11-43EE-BBEE-9F96E54DACAE}.Release|x64.Build.0 = Release|x64
{E19A9BE7-2E54-4475-B484-03434E03A7DB}.Debug_MD|Win32.ActiveCfg = Debug_MD|Win32
{E19A9BE7-2E54-4475-B484-03434E03A7DB}.Debug_MD|Win32.Build.0 = Debug_MD|Win32
{E19A9BE7-2E54-4475-B484-03434E03A7DB}.Debug_MD|x64.ActiveCfg = Debug_MD|x64
{E19A9BE7-2E54-4475-B484-03434E03A7DB}.Debug_MD|x64.Build.0 = Debug_MD|x64
- {E19A9BE7-2E54-4475-B484-03434E03A7DB}.Debug|Win32.ActiveCfg = Debug|Win32
- {E19A9BE7-2E54-4475-B484-03434E03A7DB}.Debug|Win32.Build.0 = Debug|Win32
- {E19A9BE7-2E54-4475-B484-03434E03A7DB}.Debug|x64.ActiveCfg = Debug|x64
- {E19A9BE7-2E54-4475-B484-03434E03A7DB}.Debug|x64.Build.0 = Debug|x64
{E19A9BE7-2E54-4475-B484-03434E03A7DB}.Release_MD|Win32.ActiveCfg = Release_MD|Win32
{E19A9BE7-2E54-4475-B484-03434E03A7DB}.Release_MD|Win32.Build.0 = Release_MD|Win32
{E19A9BE7-2E54-4475-B484-03434E03A7DB}.Release_MD|x64.ActiveCfg = Release_MD|x64
{E19A9BE7-2E54-4475-B484-03434E03A7DB}.Release_MD|x64.Build.0 = Release_MD|x64
- {E19A9BE7-2E54-4475-B484-03434E03A7DB}.Release|Win32.ActiveCfg = Release|Win32
- {E19A9BE7-2E54-4475-B484-03434E03A7DB}.Release|Win32.Build.0 = Release|Win32
- {E19A9BE7-2E54-4475-B484-03434E03A7DB}.Release|x64.ActiveCfg = Release|x64
- {E19A9BE7-2E54-4475-B484-03434E03A7DB}.Release|x64.Build.0 = Release|x64
{B9809E47-2BA9-44F4-A91D-29D2493509A2}.Debug_MD|Win32.ActiveCfg = Debug_MD|Win32
{B9809E47-2BA9-44F4-A91D-29D2493509A2}.Debug_MD|Win32.Build.0 = Debug_MD|Win32
{B9809E47-2BA9-44F4-A91D-29D2493509A2}.Debug_MD|x64.ActiveCfg = Debug_MD|x64
{B9809E47-2BA9-44F4-A91D-29D2493509A2}.Debug_MD|x64.Build.0 = Debug_MD|x64
- {B9809E47-2BA9-44F4-A91D-29D2493509A2}.Debug|Win32.ActiveCfg = Debug|Win32
- {B9809E47-2BA9-44F4-A91D-29D2493509A2}.Debug|Win32.Build.0 = Debug|Win32
- {B9809E47-2BA9-44F4-A91D-29D2493509A2}.Debug|x64.ActiveCfg = Debug|x64
- {B9809E47-2BA9-44F4-A91D-29D2493509A2}.Debug|x64.Build.0 = Debug|x64
{B9809E47-2BA9-44F4-A91D-29D2493509A2}.Release_MD|Win32.ActiveCfg = Release_MD|Win32
{B9809E47-2BA9-44F4-A91D-29D2493509A2}.Release_MD|Win32.Build.0 = Release_MD|Win32
{B9809E47-2BA9-44F4-A91D-29D2493509A2}.Release_MD|x64.ActiveCfg = Release_MD|x64
{B9809E47-2BA9-44F4-A91D-29D2493509A2}.Release_MD|x64.Build.0 = Release_MD|x64
- {B9809E47-2BA9-44F4-A91D-29D2493509A2}.Release|Win32.ActiveCfg = Release|Win32
- {B9809E47-2BA9-44F4-A91D-29D2493509A2}.Release|Win32.Build.0 = Release|Win32
- {B9809E47-2BA9-44F4-A91D-29D2493509A2}.Release|x64.ActiveCfg = Release|x64
- {B9809E47-2BA9-44F4-A91D-29D2493509A2}.Release|x64.Build.0 = Release|x64
{411CD7F5-D04B-456A-8B30-631170C7445A}.Debug_MD|Win32.ActiveCfg = Debug_MD|Win32
{411CD7F5-D04B-456A-8B30-631170C7445A}.Debug_MD|Win32.Build.0 = Debug_MD|Win32
{411CD7F5-D04B-456A-8B30-631170C7445A}.Debug_MD|x64.ActiveCfg = Debug_MD|x64
{411CD7F5-D04B-456A-8B30-631170C7445A}.Debug_MD|x64.Build.0 = Debug_MD|x64
- {411CD7F5-D04B-456A-8B30-631170C7445A}.Debug|Win32.ActiveCfg = Debug|Win32
- {411CD7F5-D04B-456A-8B30-631170C7445A}.Debug|Win32.Build.0 = Debug|Win32
- {411CD7F5-D04B-456A-8B30-631170C7445A}.Debug|x64.ActiveCfg = Debug|x64
- {411CD7F5-D04B-456A-8B30-631170C7445A}.Debug|x64.Build.0 = Debug|x64
{411CD7F5-D04B-456A-8B30-631170C7445A}.Release_MD|Win32.ActiveCfg = Release_MD|Win32
{411CD7F5-D04B-456A-8B30-631170C7445A}.Release_MD|Win32.Build.0 = Release_MD|Win32
{411CD7F5-D04B-456A-8B30-631170C7445A}.Release_MD|x64.ActiveCfg = Release_MD|x64
{411CD7F5-D04B-456A-8B30-631170C7445A}.Release_MD|x64.Build.0 = Release_MD|x64
- {411CD7F5-D04B-456A-8B30-631170C7445A}.Release|Win32.ActiveCfg = Release|Win32
- {411CD7F5-D04B-456A-8B30-631170C7445A}.Release|Win32.Build.0 = Release|Win32
- {411CD7F5-D04B-456A-8B30-631170C7445A}.Release|x64.ActiveCfg = Release|x64
- {411CD7F5-D04B-456A-8B30-631170C7445A}.Release|x64.Build.0 = Release|x64
{264311A9-B59C-3F7F-AEDA-461868822FE4}.Debug_MD|Win32.ActiveCfg = Debug_MD|Win32
{264311A9-B59C-3F7F-AEDA-461868822FE4}.Debug_MD|Win32.Build.0 = Debug_MD|Win32
{264311A9-B59C-3F7F-AEDA-461868822FE4}.Debug_MD|x64.ActiveCfg = Debug_MD|x64
{264311A9-B59C-3F7F-AEDA-461868822FE4}.Debug_MD|x64.Build.0 = Debug_MD|x64
- {264311A9-B59C-3F7F-AEDA-461868822FE4}.Debug|Win32.ActiveCfg = Debug_MD|Win32
- {264311A9-B59C-3F7F-AEDA-461868822FE4}.Debug|Win32.Build.0 = Debug_MD|Win32
- {264311A9-B59C-3F7F-AEDA-461868822FE4}.Debug|x64.ActiveCfg = Debug_MD|x64
- {264311A9-B59C-3F7F-AEDA-461868822FE4}.Debug|x64.Build.0 = Debug_MD|x64
{264311A9-B59C-3F7F-AEDA-461868822FE4}.Release_MD|Win32.ActiveCfg = Release_MD|Win32
{264311A9-B59C-3F7F-AEDA-461868822FE4}.Release_MD|Win32.Build.0 = Release_MD|Win32
{264311A9-B59C-3F7F-AEDA-461868822FE4}.Release_MD|x64.ActiveCfg = Release_MD|x64
{264311A9-B59C-3F7F-AEDA-461868822FE4}.Release_MD|x64.Build.0 = Release_MD|x64
- {264311A9-B59C-3F7F-AEDA-461868822FE4}.Release|Win32.ActiveCfg = Release_MD|Win32
- {264311A9-B59C-3F7F-AEDA-461868822FE4}.Release|Win32.Build.0 = Release_MD|Win32
- {264311A9-B59C-3F7F-AEDA-461868822FE4}.Release|x64.ActiveCfg = Release_MD|x64
- {264311A9-B59C-3F7F-AEDA-461868822FE4}.Release|x64.Build.0 = Release_MD|x64
{9EE67DB2-4AD8-4B9A-AE58-2E536412033C}.Debug_MD|Win32.ActiveCfg = Debug_MD|Win32
{9EE67DB2-4AD8-4B9A-AE58-2E536412033C}.Debug_MD|Win32.Build.0 = Debug_MD|Win32
{9EE67DB2-4AD8-4B9A-AE58-2E536412033C}.Debug_MD|x64.ActiveCfg = Debug_MD|x64
{9EE67DB2-4AD8-4B9A-AE58-2E536412033C}.Debug_MD|x64.Build.0 = Debug_MD|x64
- {9EE67DB2-4AD8-4B9A-AE58-2E536412033C}.Debug|Win32.ActiveCfg = Debug|Win32
- {9EE67DB2-4AD8-4B9A-AE58-2E536412033C}.Debug|Win32.Build.0 = Debug|Win32
- {9EE67DB2-4AD8-4B9A-AE58-2E536412033C}.Debug|x64.ActiveCfg = Debug|x64
- {9EE67DB2-4AD8-4B9A-AE58-2E536412033C}.Debug|x64.Build.0 = Debug|x64
{9EE67DB2-4AD8-4B9A-AE58-2E536412033C}.Release_MD|Win32.ActiveCfg = Release_MD|Win32
{9EE67DB2-4AD8-4B9A-AE58-2E536412033C}.Release_MD|Win32.Build.0 = Release_MD|Win32
{9EE67DB2-4AD8-4B9A-AE58-2E536412033C}.Release_MD|x64.ActiveCfg = Release_MD|x64
{9EE67DB2-4AD8-4B9A-AE58-2E536412033C}.Release_MD|x64.Build.0 = Release_MD|x64
- {9EE67DB2-4AD8-4B9A-AE58-2E536412033C}.Release|Win32.ActiveCfg = Release|Win32
- {9EE67DB2-4AD8-4B9A-AE58-2E536412033C}.Release|Win32.Build.0 = Release|Win32
- {9EE67DB2-4AD8-4B9A-AE58-2E536412033C}.Release|x64.ActiveCfg = Release|x64
- {9EE67DB2-4AD8-4B9A-AE58-2E536412033C}.Release|x64.Build.0 = Release|x64
{51581D29-8097-49A6-A692-0C16D56B5D9A}.Debug_MD|Win32.ActiveCfg = Debug_MD|Win32
{51581D29-8097-49A6-A692-0C16D56B5D9A}.Debug_MD|Win32.Build.0 = Debug_MD|Win32
{51581D29-8097-49A6-A692-0C16D56B5D9A}.Debug_MD|x64.ActiveCfg = Debug_MD|x64
{51581D29-8097-49A6-A692-0C16D56B5D9A}.Debug_MD|x64.Build.0 = Debug_MD|x64
- {51581D29-8097-49A6-A692-0C16D56B5D9A}.Debug|Win32.ActiveCfg = Debug_MD|Win32
- {51581D29-8097-49A6-A692-0C16D56B5D9A}.Debug|Win32.Build.0 = Debug_MD|Win32
- {51581D29-8097-49A6-A692-0C16D56B5D9A}.Debug|x64.ActiveCfg = Debug_MD|x64
- {51581D29-8097-49A6-A692-0C16D56B5D9A}.Debug|x64.Build.0 = Debug_MD|x64
{51581D29-8097-49A6-A692-0C16D56B5D9A}.Release_MD|Win32.ActiveCfg = Release_MD|Win32
{51581D29-8097-49A6-A692-0C16D56B5D9A}.Release_MD|Win32.Build.0 = Release_MD|Win32
{51581D29-8097-49A6-A692-0C16D56B5D9A}.Release_MD|x64.ActiveCfg = Release_MD|x64
{51581D29-8097-49A6-A692-0C16D56B5D9A}.Release_MD|x64.Build.0 = Release_MD|x64
- {51581D29-8097-49A6-A692-0C16D56B5D9A}.Release|Win32.ActiveCfg = Release_MD|Win32
- {51581D29-8097-49A6-A692-0C16D56B5D9A}.Release|Win32.Build.0 = Release_MD|Win32
- {51581D29-8097-49A6-A692-0C16D56B5D9A}.Release|x64.ActiveCfg = Release_MD|x64
- {51581D29-8097-49A6-A692-0C16D56B5D9A}.Release|x64.Build.0 = Release_MD|x64
{17CCD4C6-5E35-404C-8613-32775F250A92}.Debug_MD|Win32.ActiveCfg = Debug_MD|Win32
{17CCD4C6-5E35-404C-8613-32775F250A92}.Debug_MD|Win32.Build.0 = Debug_MD|Win32
{17CCD4C6-5E35-404C-8613-32775F250A92}.Debug_MD|x64.ActiveCfg = Debug_MD|x64
{17CCD4C6-5E35-404C-8613-32775F250A92}.Debug_MD|x64.Build.0 = Debug_MD|x64
- {17CCD4C6-5E35-404C-8613-32775F250A92}.Debug|Win32.ActiveCfg = Debug|Win32
- {17CCD4C6-5E35-404C-8613-32775F250A92}.Debug|Win32.Build.0 = Debug|Win32
- {17CCD4C6-5E35-404C-8613-32775F250A92}.Debug|x64.ActiveCfg = Debug|x64
- {17CCD4C6-5E35-404C-8613-32775F250A92}.Debug|x64.Build.0 = Debug|x64
{17CCD4C6-5E35-404C-8613-32775F250A92}.Release_MD|Win32.ActiveCfg = Release_MD|Win32
{17CCD4C6-5E35-404C-8613-32775F250A92}.Release_MD|Win32.Build.0 = Release_MD|Win32
{17CCD4C6-5E35-404C-8613-32775F250A92}.Release_MD|x64.ActiveCfg = Release_MD|x64
{17CCD4C6-5E35-404C-8613-32775F250A92}.Release_MD|x64.Build.0 = Release_MD|x64
- {17CCD4C6-5E35-404C-8613-32775F250A92}.Release|Win32.ActiveCfg = Release|Win32
- {17CCD4C6-5E35-404C-8613-32775F250A92}.Release|Win32.Build.0 = Release|Win32
- {17CCD4C6-5E35-404C-8613-32775F250A92}.Release|x64.ActiveCfg = Release|x64
- {17CCD4C6-5E35-404C-8613-32775F250A92}.Release|x64.Build.0 = Release|x64
{B03FBDF1-2518-444A-B1BD-BF60336393EC}.Debug_MD|Win32.ActiveCfg = Debug_MD|Win32
{B03FBDF1-2518-444A-B1BD-BF60336393EC}.Debug_MD|Win32.Build.0 = Debug_MD|Win32
{B03FBDF1-2518-444A-B1BD-BF60336393EC}.Debug_MD|x64.ActiveCfg = Debug_MD|x64
{B03FBDF1-2518-444A-B1BD-BF60336393EC}.Debug_MD|x64.Build.0 = Debug_MD|x64
- {B03FBDF1-2518-444A-B1BD-BF60336393EC}.Debug|Win32.ActiveCfg = Debug|Win32
- {B03FBDF1-2518-444A-B1BD-BF60336393EC}.Debug|Win32.Build.0 = Debug|Win32
- {B03FBDF1-2518-444A-B1BD-BF60336393EC}.Debug|x64.ActiveCfg = Debug|x64
- {B03FBDF1-2518-444A-B1BD-BF60336393EC}.Debug|x64.Build.0 = Debug|x64
{B03FBDF1-2518-444A-B1BD-BF60336393EC}.Release_MD|Win32.ActiveCfg = Release_MD|Win32
{B03FBDF1-2518-444A-B1BD-BF60336393EC}.Release_MD|Win32.Build.0 = Release_MD|Win32
{B03FBDF1-2518-444A-B1BD-BF60336393EC}.Release_MD|x64.ActiveCfg = Release_MD|x64
{B03FBDF1-2518-444A-B1BD-BF60336393EC}.Release_MD|x64.Build.0 = Release_MD|x64
- {B03FBDF1-2518-444A-B1BD-BF60336393EC}.Release|Win32.ActiveCfg = Release|Win32
- {B03FBDF1-2518-444A-B1BD-BF60336393EC}.Release|Win32.Build.0 = Release|Win32
- {B03FBDF1-2518-444A-B1BD-BF60336393EC}.Release|x64.ActiveCfg = Release|x64
- {B03FBDF1-2518-444A-B1BD-BF60336393EC}.Release|x64.Build.0 = Release|x64
{45206ACC-71FA-4B87-943A-79420F1194C0}.Debug_MD|Win32.ActiveCfg = Debug_MD|Win32
{45206ACC-71FA-4B87-943A-79420F1194C0}.Debug_MD|Win32.Build.0 = Debug_MD|Win32
{45206ACC-71FA-4B87-943A-79420F1194C0}.Debug_MD|x64.ActiveCfg = Debug_MD|x64
{45206ACC-71FA-4B87-943A-79420F1194C0}.Debug_MD|x64.Build.0 = Debug_MD|x64
- {45206ACC-71FA-4B87-943A-79420F1194C0}.Debug|Win32.ActiveCfg = Debug|Win32
- {45206ACC-71FA-4B87-943A-79420F1194C0}.Debug|Win32.Build.0 = Debug|Win32
- {45206ACC-71FA-4B87-943A-79420F1194C0}.Debug|x64.ActiveCfg = Debug|x64
- {45206ACC-71FA-4B87-943A-79420F1194C0}.Debug|x64.Build.0 = Debug|x64
{45206ACC-71FA-4B87-943A-79420F1194C0}.Release_MD|Win32.ActiveCfg = Release_MD|Win32
{45206ACC-71FA-4B87-943A-79420F1194C0}.Release_MD|Win32.Build.0 = Release_MD|Win32
{45206ACC-71FA-4B87-943A-79420F1194C0}.Release_MD|x64.ActiveCfg = Release_MD|x64
{45206ACC-71FA-4B87-943A-79420F1194C0}.Release_MD|x64.Build.0 = Release_MD|x64
- {45206ACC-71FA-4B87-943A-79420F1194C0}.Release|Win32.ActiveCfg = Release|Win32
- {45206ACC-71FA-4B87-943A-79420F1194C0}.Release|Win32.Build.0 = Release|Win32
- {45206ACC-71FA-4B87-943A-79420F1194C0}.Release|x64.ActiveCfg = Release|x64
- {45206ACC-71FA-4B87-943A-79420F1194C0}.Release|x64.Build.0 = Release|x64
{313D2435-9D4D-44A0-A205-8BA86E9D7E3A}.Debug_MD|Win32.ActiveCfg = Debug_MD|Win32
{313D2435-9D4D-44A0-A205-8BA86E9D7E3A}.Debug_MD|Win32.Build.0 = Debug_MD|Win32
{313D2435-9D4D-44A0-A205-8BA86E9D7E3A}.Debug_MD|x64.ActiveCfg = Debug_MD|x64
{313D2435-9D4D-44A0-A205-8BA86E9D7E3A}.Debug_MD|x64.Build.0 = Debug_MD|x64
- {313D2435-9D4D-44A0-A205-8BA86E9D7E3A}.Debug|Win32.ActiveCfg = Debug|Win32
- {313D2435-9D4D-44A0-A205-8BA86E9D7E3A}.Debug|Win32.Build.0 = Debug|Win32
- {313D2435-9D4D-44A0-A205-8BA86E9D7E3A}.Debug|x64.ActiveCfg = Debug|x64
- {313D2435-9D4D-44A0-A205-8BA86E9D7E3A}.Debug|x64.Build.0 = Debug|x64
{313D2435-9D4D-44A0-A205-8BA86E9D7E3A}.Release_MD|Win32.ActiveCfg = Release_MD|Win32
{313D2435-9D4D-44A0-A205-8BA86E9D7E3A}.Release_MD|Win32.Build.0 = Release_MD|Win32
{313D2435-9D4D-44A0-A205-8BA86E9D7E3A}.Release_MD|x64.ActiveCfg = Release_MD|x64
{313D2435-9D4D-44A0-A205-8BA86E9D7E3A}.Release_MD|x64.Build.0 = Release_MD|x64
- {313D2435-9D4D-44A0-A205-8BA86E9D7E3A}.Release|Win32.ActiveCfg = Release|Win32
- {313D2435-9D4D-44A0-A205-8BA86E9D7E3A}.Release|Win32.Build.0 = Release|Win32
- {313D2435-9D4D-44A0-A205-8BA86E9D7E3A}.Release|x64.ActiveCfg = Release|x64
- {313D2435-9D4D-44A0-A205-8BA86E9D7E3A}.Release|x64.Build.0 = Release|x64
{631200B6-C8F9-4069-A365-C1A43E420157}.Debug_MD|Win32.ActiveCfg = Debug_MD|Win32
{631200B6-C8F9-4069-A365-C1A43E420157}.Debug_MD|Win32.Build.0 = Debug_MD|Win32
{631200B6-C8F9-4069-A365-C1A43E420157}.Debug_MD|x64.ActiveCfg = Debug_MD|x64
{631200B6-C8F9-4069-A365-C1A43E420157}.Debug_MD|x64.Build.0 = Debug_MD|x64
- {631200B6-C8F9-4069-A365-C1A43E420157}.Debug|Win32.ActiveCfg = Debug|Win32
- {631200B6-C8F9-4069-A365-C1A43E420157}.Debug|Win32.Build.0 = Debug|Win32
- {631200B6-C8F9-4069-A365-C1A43E420157}.Debug|x64.ActiveCfg = Debug|x64
- {631200B6-C8F9-4069-A365-C1A43E420157}.Debug|x64.Build.0 = Debug|x64
{631200B6-C8F9-4069-A365-C1A43E420157}.Release_MD|Win32.ActiveCfg = Release_MD|Win32
{631200B6-C8F9-4069-A365-C1A43E420157}.Release_MD|Win32.Build.0 = Release_MD|Win32
{631200B6-C8F9-4069-A365-C1A43E420157}.Release_MD|x64.ActiveCfg = Release_MD|x64
{631200B6-C8F9-4069-A365-C1A43E420157}.Release_MD|x64.Build.0 = Release_MD|x64
- {631200B6-C8F9-4069-A365-C1A43E420157}.Release|Win32.ActiveCfg = Release|Win32
- {631200B6-C8F9-4069-A365-C1A43E420157}.Release|Win32.Build.0 = Release|Win32
- {631200B6-C8F9-4069-A365-C1A43E420157}.Release|x64.ActiveCfg = Release|x64
- {631200B6-C8F9-4069-A365-C1A43E420157}.Release|x64.Build.0 = Release|x64
{E6CBBEE1-7ADC-4C2C-BDC1-E79F3C03509C}.Debug_MD|Win32.ActiveCfg = Debug_MD|Win32
{E6CBBEE1-7ADC-4C2C-BDC1-E79F3C03509C}.Debug_MD|Win32.Build.0 = Debug_MD|Win32
{E6CBBEE1-7ADC-4C2C-BDC1-E79F3C03509C}.Debug_MD|x64.ActiveCfg = Debug_MD|x64
{E6CBBEE1-7ADC-4C2C-BDC1-E79F3C03509C}.Debug_MD|x64.Build.0 = Debug_MD|x64
- {E6CBBEE1-7ADC-4C2C-BDC1-E79F3C03509C}.Debug|Win32.ActiveCfg = Debug|Win32
- {E6CBBEE1-7ADC-4C2C-BDC1-E79F3C03509C}.Debug|Win32.Build.0 = Debug|Win32
- {E6CBBEE1-7ADC-4C2C-BDC1-E79F3C03509C}.Debug|x64.ActiveCfg = Debug|x64
- {E6CBBEE1-7ADC-4C2C-BDC1-E79F3C03509C}.Debug|x64.Build.0 = Debug|x64
{E6CBBEE1-7ADC-4C2C-BDC1-E79F3C03509C}.Release_MD|Win32.ActiveCfg = Release_MD|Win32
{E6CBBEE1-7ADC-4C2C-BDC1-E79F3C03509C}.Release_MD|Win32.Build.0 = Release_MD|Win32
{E6CBBEE1-7ADC-4C2C-BDC1-E79F3C03509C}.Release_MD|x64.ActiveCfg = Release_MD|x64
{E6CBBEE1-7ADC-4C2C-BDC1-E79F3C03509C}.Release_MD|x64.Build.0 = Release_MD|x64
- {E6CBBEE1-7ADC-4C2C-BDC1-E79F3C03509C}.Release|Win32.ActiveCfg = Release|Win32
- {E6CBBEE1-7ADC-4C2C-BDC1-E79F3C03509C}.Release|Win32.Build.0 = Release|Win32
- {E6CBBEE1-7ADC-4C2C-BDC1-E79F3C03509C}.Release|x64.ActiveCfg = Release|x64
- {E6CBBEE1-7ADC-4C2C-BDC1-E79F3C03509C}.Release|x64.Build.0 = Release|x64
{F1F85DF9-BD72-42F3-B11D-C5A29A252414}.Debug_MD|Win32.ActiveCfg = Debug_MD|Win32
{F1F85DF9-BD72-42F3-B11D-C5A29A252414}.Debug_MD|Win32.Build.0 = Debug_MD|Win32
{F1F85DF9-BD72-42F3-B11D-C5A29A252414}.Debug_MD|x64.ActiveCfg = Debug_MD|x64
{F1F85DF9-BD72-42F3-B11D-C5A29A252414}.Debug_MD|x64.Build.0 = Debug_MD|x64
- {F1F85DF9-BD72-42F3-B11D-C5A29A252414}.Debug|Win32.ActiveCfg = Debug|Win32
- {F1F85DF9-BD72-42F3-B11D-C5A29A252414}.Debug|Win32.Build.0 = Debug|Win32
- {F1F85DF9-BD72-42F3-B11D-C5A29A252414}.Debug|x64.ActiveCfg = Debug|x64
- {F1F85DF9-BD72-42F3-B11D-C5A29A252414}.Debug|x64.Build.0 = Debug|x64
{F1F85DF9-BD72-42F3-B11D-C5A29A252414}.Release_MD|Win32.ActiveCfg = Release_MD|Win32
{F1F85DF9-BD72-42F3-B11D-C5A29A252414}.Release_MD|Win32.Build.0 = Release_MD|Win32
{F1F85DF9-BD72-42F3-B11D-C5A29A252414}.Release_MD|x64.ActiveCfg = Release_MD|x64
{F1F85DF9-BD72-42F3-B11D-C5A29A252414}.Release_MD|x64.Build.0 = Release_MD|x64
- {F1F85DF9-BD72-42F3-B11D-C5A29A252414}.Release|Win32.ActiveCfg = Release|Win32
- {F1F85DF9-BD72-42F3-B11D-C5A29A252414}.Release|Win32.Build.0 = Release|Win32
- {F1F85DF9-BD72-42F3-B11D-C5A29A252414}.Release|x64.ActiveCfg = Release|x64
- {F1F85DF9-BD72-42F3-B11D-C5A29A252414}.Release|x64.Build.0 = Release|x64
{7A363E0B-9153-4BFF-88D8-E324966D5824}.Debug_MD|Win32.ActiveCfg = Debug_MD|Win32
{7A363E0B-9153-4BFF-88D8-E324966D5824}.Debug_MD|Win32.Build.0 = Debug_MD|Win32
{7A363E0B-9153-4BFF-88D8-E324966D5824}.Debug_MD|x64.ActiveCfg = Debug_MD|x64
{7A363E0B-9153-4BFF-88D8-E324966D5824}.Debug_MD|x64.Build.0 = Debug_MD|x64
- {7A363E0B-9153-4BFF-88D8-E324966D5824}.Debug|Win32.ActiveCfg = Debug|Win32
- {7A363E0B-9153-4BFF-88D8-E324966D5824}.Debug|Win32.Build.0 = Debug|Win32
- {7A363E0B-9153-4BFF-88D8-E324966D5824}.Debug|x64.ActiveCfg = Debug|x64
- {7A363E0B-9153-4BFF-88D8-E324966D5824}.Debug|x64.Build.0 = Debug|x64
{7A363E0B-9153-4BFF-88D8-E324966D5824}.Release_MD|Win32.ActiveCfg = Release_MD|Win32
{7A363E0B-9153-4BFF-88D8-E324966D5824}.Release_MD|Win32.Build.0 = Release_MD|Win32
{7A363E0B-9153-4BFF-88D8-E324966D5824}.Release_MD|x64.ActiveCfg = Release_MD|x64
{7A363E0B-9153-4BFF-88D8-E324966D5824}.Release_MD|x64.Build.0 = Release_MD|x64
- {7A363E0B-9153-4BFF-88D8-E324966D5824}.Release|Win32.ActiveCfg = Release|Win32
- {7A363E0B-9153-4BFF-88D8-E324966D5824}.Release|Win32.Build.0 = Release|Win32
- {7A363E0B-9153-4BFF-88D8-E324966D5824}.Release|x64.ActiveCfg = Release|x64
- {7A363E0B-9153-4BFF-88D8-E324966D5824}.Release|x64.Build.0 = Release|x64
{6B59AE3F-DE64-485C-990F-041349971B0F}.Debug_MD|Win32.ActiveCfg = Debug_MD|Win32
{6B59AE3F-DE64-485C-990F-041349971B0F}.Debug_MD|Win32.Build.0 = Debug_MD|Win32
{6B59AE3F-DE64-485C-990F-041349971B0F}.Debug_MD|x64.ActiveCfg = Debug_MD|x64
{6B59AE3F-DE64-485C-990F-041349971B0F}.Debug_MD|x64.Build.0 = Debug_MD|x64
- {6B59AE3F-DE64-485C-990F-041349971B0F}.Debug|Win32.ActiveCfg = Debug|Win32
- {6B59AE3F-DE64-485C-990F-041349971B0F}.Debug|Win32.Build.0 = Debug|Win32
- {6B59AE3F-DE64-485C-990F-041349971B0F}.Debug|x64.ActiveCfg = Debug|x64
- {6B59AE3F-DE64-485C-990F-041349971B0F}.Debug|x64.Build.0 = Debug|x64
{6B59AE3F-DE64-485C-990F-041349971B0F}.Release_MD|Win32.ActiveCfg = Release_MD|Win32
{6B59AE3F-DE64-485C-990F-041349971B0F}.Release_MD|Win32.Build.0 = Release_MD|Win32
{6B59AE3F-DE64-485C-990F-041349971B0F}.Release_MD|x64.ActiveCfg = Release_MD|x64
{6B59AE3F-DE64-485C-990F-041349971B0F}.Release_MD|x64.Build.0 = Release_MD|x64
- {6B59AE3F-DE64-485C-990F-041349971B0F}.Release|Win32.ActiveCfg = Release|Win32
- {6B59AE3F-DE64-485C-990F-041349971B0F}.Release|Win32.Build.0 = Release|Win32
- {6B59AE3F-DE64-485C-990F-041349971B0F}.Release|x64.ActiveCfg = Release|x64
- {6B59AE3F-DE64-485C-990F-041349971B0F}.Release|x64.Build.0 = Release|x64
{6DFF37E8-F886-4E97-A672-2085F2A548E3}.Debug_MD|Win32.ActiveCfg = Debug_MD|Win32
{6DFF37E8-F886-4E97-A672-2085F2A548E3}.Debug_MD|Win32.Build.0 = Debug_MD|Win32
{6DFF37E8-F886-4E97-A672-2085F2A548E3}.Debug_MD|x64.ActiveCfg = Debug_MD|x64
{6DFF37E8-F886-4E97-A672-2085F2A548E3}.Debug_MD|x64.Build.0 = Debug_MD|x64
- {6DFF37E8-F886-4E97-A672-2085F2A548E3}.Debug|Win32.ActiveCfg = Debug|Win32
- {6DFF37E8-F886-4E97-A672-2085F2A548E3}.Debug|Win32.Build.0 = Debug|Win32
- {6DFF37E8-F886-4E97-A672-2085F2A548E3}.Debug|x64.ActiveCfg = Debug|x64
- {6DFF37E8-F886-4E97-A672-2085F2A548E3}.Debug|x64.Build.0 = Debug|x64
{6DFF37E8-F886-4E97-A672-2085F2A548E3}.Release_MD|Win32.ActiveCfg = Release_MD|Win32
{6DFF37E8-F886-4E97-A672-2085F2A548E3}.Release_MD|Win32.Build.0 = Release_MD|Win32
{6DFF37E8-F886-4E97-A672-2085F2A548E3}.Release_MD|x64.ActiveCfg = Release_MD|x64
{6DFF37E8-F886-4E97-A672-2085F2A548E3}.Release_MD|x64.Build.0 = Release_MD|x64
- {6DFF37E8-F886-4E97-A672-2085F2A548E3}.Release|Win32.ActiveCfg = Release|Win32
- {6DFF37E8-F886-4E97-A672-2085F2A548E3}.Release|Win32.Build.0 = Release|Win32
- {6DFF37E8-F886-4E97-A672-2085F2A548E3}.Release|x64.ActiveCfg = Release|x64
- {6DFF37E8-F886-4E97-A672-2085F2A548E3}.Release|x64.Build.0 = Release|x64
{04B67AED-3877-3F7D-9FDE-B609FDA38419}.Debug_MD|Win32.ActiveCfg = Debug_MD|Win32
{04B67AED-3877-3F7D-9FDE-B609FDA38419}.Debug_MD|Win32.Build.0 = Debug_MD|Win32
{04B67AED-3877-3F7D-9FDE-B609FDA38419}.Debug_MD|x64.ActiveCfg = Debug_MD|x64
{04B67AED-3877-3F7D-9FDE-B609FDA38419}.Debug_MD|x64.Build.0 = Debug_MD|x64
- {04B67AED-3877-3F7D-9FDE-B609FDA38419}.Debug|Win32.ActiveCfg = Debug|Win32
- {04B67AED-3877-3F7D-9FDE-B609FDA38419}.Debug|Win32.Build.0 = Debug|Win32
- {04B67AED-3877-3F7D-9FDE-B609FDA38419}.Debug|x64.ActiveCfg = Debug|x64
- {04B67AED-3877-3F7D-9FDE-B609FDA38419}.Debug|x64.Build.0 = Debug|x64
- {04B67AED-3877-3F7D-9FDE-B609FDA38419}.Release_MD|Win32.ActiveCfg = Release_MD|Win32
- {04B67AED-3877-3F7D-9FDE-B609FDA38419}.Release_MD|Win32.Build.0 = Release_MD|Win32
+ {04B67AED-3877-3F7D-9FDE-B609FDA38419}.Release_MD|Win32.ActiveCfg = Debug_MD|Win32
+ {04B67AED-3877-3F7D-9FDE-B609FDA38419}.Release_MD|Win32.Build.0 = Debug_MD|Win32
{04B67AED-3877-3F7D-9FDE-B609FDA38419}.Release_MD|x64.ActiveCfg = Release_MD|x64
{04B67AED-3877-3F7D-9FDE-B609FDA38419}.Release_MD|x64.Build.0 = Release_MD|x64
- {04B67AED-3877-3F7D-9FDE-B609FDA38419}.Release|Win32.ActiveCfg = Release|Win32
- {04B67AED-3877-3F7D-9FDE-B609FDA38419}.Release|Win32.Build.0 = Release|Win32
- {04B67AED-3877-3F7D-9FDE-B609FDA38419}.Release|x64.ActiveCfg = Release|x64
- {04B67AED-3877-3F7D-9FDE-B609FDA38419}.Release|x64.Build.0 = Release|x64
{CD31122A-5A5E-4A18-93EA-418F4F963F4E}.Debug_MD|Win32.ActiveCfg = Debug_MD|Win32
{CD31122A-5A5E-4A18-93EA-418F4F963F4E}.Debug_MD|Win32.Build.0 = Debug_MD|Win32
{CD31122A-5A5E-4A18-93EA-418F4F963F4E}.Debug_MD|x64.ActiveCfg = Debug_MD|x64
{CD31122A-5A5E-4A18-93EA-418F4F963F4E}.Debug_MD|x64.Build.0 = Debug_MD|x64
- {CD31122A-5A5E-4A18-93EA-418F4F963F4E}.Debug|Win32.ActiveCfg = Debug_MD|Win32
- {CD31122A-5A5E-4A18-93EA-418F4F963F4E}.Debug|Win32.Build.0 = Debug_MD|Win32
- {CD31122A-5A5E-4A18-93EA-418F4F963F4E}.Debug|x64.ActiveCfg = Debug_MD|x64
- {CD31122A-5A5E-4A18-93EA-418F4F963F4E}.Debug|x64.Build.0 = Debug_MD|x64
{CD31122A-5A5E-4A18-93EA-418F4F963F4E}.Release_MD|Win32.ActiveCfg = Release_MD|Win32
{CD31122A-5A5E-4A18-93EA-418F4F963F4E}.Release_MD|Win32.Build.0 = Release_MD|Win32
{CD31122A-5A5E-4A18-93EA-418F4F963F4E}.Release_MD|x64.ActiveCfg = Release_MD|x64
{CD31122A-5A5E-4A18-93EA-418F4F963F4E}.Release_MD|x64.Build.0 = Release_MD|x64
- {CD31122A-5A5E-4A18-93EA-418F4F963F4E}.Release|Win32.ActiveCfg = Release_MD|Win32
- {CD31122A-5A5E-4A18-93EA-418F4F963F4E}.Release|Win32.Build.0 = Release_MD|Win32
- {CD31122A-5A5E-4A18-93EA-418F4F963F4E}.Release|x64.ActiveCfg = Release_MD|x64
- {CD31122A-5A5E-4A18-93EA-418F4F963F4E}.Release|x64.Build.0 = Release_MD|x64
{DB46606A-4605-4642-900C-6C438A588F3E}.Debug_MD|Win32.ActiveCfg = Debug_MD|Win32
{DB46606A-4605-4642-900C-6C438A588F3E}.Debug_MD|Win32.Build.0 = Debug_MD|Win32
{DB46606A-4605-4642-900C-6C438A588F3E}.Debug_MD|x64.ActiveCfg = Debug_MD|x64
{DB46606A-4605-4642-900C-6C438A588F3E}.Debug_MD|x64.Build.0 = Debug_MD|x64
- {DB46606A-4605-4642-900C-6C438A588F3E}.Debug|Win32.ActiveCfg = Debug_MD|Win32
- {DB46606A-4605-4642-900C-6C438A588F3E}.Debug|Win32.Build.0 = Debug_MD|Win32
- {DB46606A-4605-4642-900C-6C438A588F3E}.Debug|x64.ActiveCfg = Debug_MD|x64
- {DB46606A-4605-4642-900C-6C438A588F3E}.Debug|x64.Build.0 = Debug_MD|x64
{DB46606A-4605-4642-900C-6C438A588F3E}.Release_MD|Win32.ActiveCfg = Release_MD|Win32
{DB46606A-4605-4642-900C-6C438A588F3E}.Release_MD|Win32.Build.0 = Release_MD|Win32
{DB46606A-4605-4642-900C-6C438A588F3E}.Release_MD|x64.ActiveCfg = Release_MD|x64
{DB46606A-4605-4642-900C-6C438A588F3E}.Release_MD|x64.Build.0 = Release_MD|x64
- {DB46606A-4605-4642-900C-6C438A588F3E}.Release|Win32.ActiveCfg = Release_MD|Win32
- {DB46606A-4605-4642-900C-6C438A588F3E}.Release|Win32.Build.0 = Release_MD|Win32
- {DB46606A-4605-4642-900C-6C438A588F3E}.Release|x64.ActiveCfg = Release_MD|x64
- {DB46606A-4605-4642-900C-6C438A588F3E}.Release|x64.Build.0 = Release_MD|x64
{B57F9EE8-1325-43B6-909F-9168D40BD203}.Debug_MD|Win32.ActiveCfg = Debug_MD|Win32
{B57F9EE8-1325-43B6-909F-9168D40BD203}.Debug_MD|Win32.Build.0 = Debug_MD|Win32
{B57F9EE8-1325-43B6-909F-9168D40BD203}.Debug_MD|x64.ActiveCfg = Debug_MD|x64
{B57F9EE8-1325-43B6-909F-9168D40BD203}.Debug_MD|x64.Build.0 = Debug_MD|x64
- {B57F9EE8-1325-43B6-909F-9168D40BD203}.Debug|Win32.ActiveCfg = Debug|Win32
- {B57F9EE8-1325-43B6-909F-9168D40BD203}.Debug|Win32.Build.0 = Debug|Win32
- {B57F9EE8-1325-43B6-909F-9168D40BD203}.Debug|x64.ActiveCfg = Debug|x64
- {B57F9EE8-1325-43B6-909F-9168D40BD203}.Debug|x64.Build.0 = Debug|x64
{B57F9EE8-1325-43B6-909F-9168D40BD203}.Release_MD|Win32.ActiveCfg = Release_MD|Win32
{B57F9EE8-1325-43B6-909F-9168D40BD203}.Release_MD|Win32.Build.0 = Release_MD|Win32
{B57F9EE8-1325-43B6-909F-9168D40BD203}.Release_MD|x64.ActiveCfg = Release_MD|x64
{B57F9EE8-1325-43B6-909F-9168D40BD203}.Release_MD|x64.Build.0 = Release_MD|x64
- {B57F9EE8-1325-43B6-909F-9168D40BD203}.Release|Win32.ActiveCfg = Release|Win32
- {B57F9EE8-1325-43B6-909F-9168D40BD203}.Release|Win32.Build.0 = Release|Win32
- {B57F9EE8-1325-43B6-909F-9168D40BD203}.Release|x64.ActiveCfg = Release|x64
- {B57F9EE8-1325-43B6-909F-9168D40BD203}.Release|x64.Build.0 = Release|x64
{7C0BBA01-021D-4B42-9070-00FA9B635167}.Debug_MD|Win32.ActiveCfg = Debug_MD|Win32
{7C0BBA01-021D-4B42-9070-00FA9B635167}.Debug_MD|Win32.Build.0 = Debug_MD|Win32
{7C0BBA01-021D-4B42-9070-00FA9B635167}.Debug_MD|x64.ActiveCfg = Debug_MD|x64
{7C0BBA01-021D-4B42-9070-00FA9B635167}.Debug_MD|x64.Build.0 = Debug_MD|x64
- {7C0BBA01-021D-4B42-9070-00FA9B635167}.Debug|Win32.ActiveCfg = Debug|Win32
- {7C0BBA01-021D-4B42-9070-00FA9B635167}.Debug|Win32.Build.0 = Debug|Win32
- {7C0BBA01-021D-4B42-9070-00FA9B635167}.Debug|x64.ActiveCfg = Debug|x64
- {7C0BBA01-021D-4B42-9070-00FA9B635167}.Debug|x64.Build.0 = Debug|x64
{7C0BBA01-021D-4B42-9070-00FA9B635167}.Release_MD|Win32.ActiveCfg = Release_MD|Win32
{7C0BBA01-021D-4B42-9070-00FA9B635167}.Release_MD|Win32.Build.0 = Release_MD|Win32
{7C0BBA01-021D-4B42-9070-00FA9B635167}.Release_MD|x64.ActiveCfg = Release_MD|x64
{7C0BBA01-021D-4B42-9070-00FA9B635167}.Release_MD|x64.Build.0 = Release_MD|x64
- {7C0BBA01-021D-4B42-9070-00FA9B635167}.Release|Win32.ActiveCfg = Release|Win32
- {7C0BBA01-021D-4B42-9070-00FA9B635167}.Release|Win32.Build.0 = Release|Win32
- {7C0BBA01-021D-4B42-9070-00FA9B635167}.Release|x64.ActiveCfg = Release|x64
- {7C0BBA01-021D-4B42-9070-00FA9B635167}.Release|x64.Build.0 = Release|x64
{0C50E549-D9BE-4279-910F-038BFCDA094B}.Debug_MD|Win32.ActiveCfg = Debug_MD|Win32
{0C50E549-D9BE-4279-910F-038BFCDA094B}.Debug_MD|Win32.Build.0 = Debug_MD|Win32
{0C50E549-D9BE-4279-910F-038BFCDA094B}.Debug_MD|x64.ActiveCfg = Debug_MD|x64
{0C50E549-D9BE-4279-910F-038BFCDA094B}.Debug_MD|x64.Build.0 = Debug_MD|x64
- {0C50E549-D9BE-4279-910F-038BFCDA094B}.Debug|Win32.ActiveCfg = Debug|Win32
- {0C50E549-D9BE-4279-910F-038BFCDA094B}.Debug|Win32.Build.0 = Debug|Win32
- {0C50E549-D9BE-4279-910F-038BFCDA094B}.Debug|x64.ActiveCfg = Debug|x64
- {0C50E549-D9BE-4279-910F-038BFCDA094B}.Debug|x64.Build.0 = Debug|x64
{0C50E549-D9BE-4279-910F-038BFCDA094B}.Release_MD|Win32.ActiveCfg = Release_MD|Win32
{0C50E549-D9BE-4279-910F-038BFCDA094B}.Release_MD|Win32.Build.0 = Release_MD|Win32
{0C50E549-D9BE-4279-910F-038BFCDA094B}.Release_MD|x64.ActiveCfg = Release_MD|x64
{0C50E549-D9BE-4279-910F-038BFCDA094B}.Release_MD|x64.Build.0 = Release_MD|x64
- {0C50E549-D9BE-4279-910F-038BFCDA094B}.Release|Win32.ActiveCfg = Release|Win32
- {0C50E549-D9BE-4279-910F-038BFCDA094B}.Release|Win32.Build.0 = Release|Win32
- {0C50E549-D9BE-4279-910F-038BFCDA094B}.Release|x64.ActiveCfg = Release|x64
- {0C50E549-D9BE-4279-910F-038BFCDA094B}.Release|x64.Build.0 = Release|x64
{E5615E66-7E8F-46C2-8E26-CC8546915A27}.Debug_MD|Win32.ActiveCfg = Debug_MD|Win32
{E5615E66-7E8F-46C2-8E26-CC8546915A27}.Debug_MD|Win32.Build.0 = Debug_MD|Win32
{E5615E66-7E8F-46C2-8E26-CC8546915A27}.Debug_MD|x64.ActiveCfg = Debug_MD|x64
{E5615E66-7E8F-46C2-8E26-CC8546915A27}.Debug_MD|x64.Build.0 = Debug_MD|x64
- {E5615E66-7E8F-46C2-8E26-CC8546915A27}.Debug|Win32.ActiveCfg = Debug|Win32
- {E5615E66-7E8F-46C2-8E26-CC8546915A27}.Debug|Win32.Build.0 = Debug|Win32
- {E5615E66-7E8F-46C2-8E26-CC8546915A27}.Debug|x64.ActiveCfg = Debug|x64
- {E5615E66-7E8F-46C2-8E26-CC8546915A27}.Debug|x64.Build.0 = Debug|x64
{E5615E66-7E8F-46C2-8E26-CC8546915A27}.Release_MD|Win32.ActiveCfg = Release_MD|Win32
{E5615E66-7E8F-46C2-8E26-CC8546915A27}.Release_MD|Win32.Build.0 = Release_MD|Win32
{E5615E66-7E8F-46C2-8E26-CC8546915A27}.Release_MD|x64.ActiveCfg = Release_MD|x64
{E5615E66-7E8F-46C2-8E26-CC8546915A27}.Release_MD|x64.Build.0 = Release_MD|x64
- {E5615E66-7E8F-46C2-8E26-CC8546915A27}.Release|Win32.ActiveCfg = Release|Win32
- {E5615E66-7E8F-46C2-8E26-CC8546915A27}.Release|Win32.Build.0 = Release|Win32
- {E5615E66-7E8F-46C2-8E26-CC8546915A27}.Release|x64.ActiveCfg = Release|x64
- {E5615E66-7E8F-46C2-8E26-CC8546915A27}.Release|x64.Build.0 = Release|x64
{1565B9EC-358E-46FF-924D-7BD31D1798CF}.Debug_MD|Win32.ActiveCfg = Debug_MD|Win32
{1565B9EC-358E-46FF-924D-7BD31D1798CF}.Debug_MD|Win32.Build.0 = Debug_MD|Win32
{1565B9EC-358E-46FF-924D-7BD31D1798CF}.Debug_MD|x64.ActiveCfg = Debug_MD|x64
{1565B9EC-358E-46FF-924D-7BD31D1798CF}.Debug_MD|x64.Build.0 = Debug_MD|x64
- {1565B9EC-358E-46FF-924D-7BD31D1798CF}.Debug|Win32.ActiveCfg = Debug|Win32
- {1565B9EC-358E-46FF-924D-7BD31D1798CF}.Debug|Win32.Build.0 = Debug|Win32
- {1565B9EC-358E-46FF-924D-7BD31D1798CF}.Debug|x64.ActiveCfg = Debug|x64
- {1565B9EC-358E-46FF-924D-7BD31D1798CF}.Debug|x64.Build.0 = Debug|x64
{1565B9EC-358E-46FF-924D-7BD31D1798CF}.Release_MD|Win32.ActiveCfg = Release_MD|Win32
{1565B9EC-358E-46FF-924D-7BD31D1798CF}.Release_MD|Win32.Build.0 = Release_MD|Win32
{1565B9EC-358E-46FF-924D-7BD31D1798CF}.Release_MD|x64.ActiveCfg = Release_MD|x64
{1565B9EC-358E-46FF-924D-7BD31D1798CF}.Release_MD|x64.Build.0 = Release_MD|x64
- {1565B9EC-358E-46FF-924D-7BD31D1798CF}.Release|Win32.ActiveCfg = Release|Win32
- {1565B9EC-358E-46FF-924D-7BD31D1798CF}.Release|Win32.Build.0 = Release|Win32
- {1565B9EC-358E-46FF-924D-7BD31D1798CF}.Release|x64.ActiveCfg = Release|x64
- {1565B9EC-358E-46FF-924D-7BD31D1798CF}.Release|x64.Build.0 = Release|x64
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
diff --git a/Compressonator/VS2015/CMP_MathLib.vcxproj b/Compressonator/VS2015/CMP_MathLib.vcxproj
index c91d32bf1..9730ea82a 100644
--- a/Compressonator/VS2015/CMP_MathLib.vcxproj
+++ b/Compressonator/VS2015/CMP_MathLib.vcxproj
@@ -1,22 +1,6 @@
-
- Debug_DLL
- Win32
-
-
- Debug_DLL
- x64
-
-
- Debug_MD_DLL
- Win32
-
-
- Debug_MD_DLL
- x64
-
Debug_MD
Win32
@@ -25,30 +9,6 @@
Debug_MD
x64
-
- Debug
- Win32
-
-
- Debug
- x64
-
-
- Release_DLL
- Win32
-
-
- Release_DLL
- x64
-
-
- Release_MD_DLL
- Win32
-
-
- Release_MD_DLL
- x64
-
Release_MD
Win32
@@ -57,14 +17,6 @@
Release_MD
x64
-
- Release
- Win32
-
-
- Release
- x64
-
@@ -86,20 +38,6 @@
CMP_Math
-
- StaticLibrary
- true
- MultiByte
- false
- v140
-
-
- DynamicLibrary
- true
- MultiByte
- false
- v140
-
StaticLibrary
true
@@ -107,27 +45,6 @@
false
v140
-
- DynamicLibrary
- true
- MultiByte
- false
- v140
-
-
- StaticLibrary
- true
- MultiByte
- false
- v140
-
-
- DynamicLibrary
- true
- MultiByte
- false
- v140
-
StaticLibrary
true
@@ -135,27 +52,6 @@
false
v140
-
- DynamicLibrary
- true
- MultiByte
- false
- v140
-
-
- StaticLibrary
- false
- false
- Unicode
- v140
-
-
- DynamicLibrary
- false
- false
- MultiByte
- v140
-
StaticLibrary
false
@@ -163,27 +59,6 @@
MultiByte
v140
-
- DynamicLibrary
- false
- false
- MultiByte
- v140
-
-
- StaticLibrary
- false
- false
- MultiByte
- v140
-
-
- DynamicLibrary
- false
- false
- MultiByte
- v140
-
StaticLibrary
false
@@ -191,219 +66,68 @@
MultiByte
v140
-
- DynamicLibrary
- false
- false
- MultiByte
- v140
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ../Build/VS2015/$(Configuration)/$(Platform)/
-
-
- ../Build/VS2015/$(Configuration)/$(Platform)/
-
../Build/VS2015/$(Configuration)/$(Platform)/
-
- ../Build/VS2015/$(Configuration)/$(Platform)/
-
-
- ../Build/VS2015/$(Configuration)/$(Platform)/
-
-
- ../Build/VS2015/$(Configuration)/$(Platform)/
-
../Build/VS2015/$(Configuration)/$(Platform)/
-
- ../Build/VS2015/$(Configuration)/$(Platform)/
-
-
- ../Build/VS2015/Temp/$(Configuration)/$(Platform)/$(ProjectName)/
-
-
- ../Build/VS2015/Temp/$(Configuration)/$(Platform)/$(ProjectName)/
-
../Build/VS2015/Temp/$(Configuration)/$(Platform)/$(ProjectName)/
-
- ../Build/VS2015/Temp/$(Configuration)/$(Platform)/$(ProjectName)/
-
-
- ../Build/VS2015/Temp/$(Configuration)/$(Platform)/$(ProjectName)/
-
-
- ../Build/VS2015/Temp/$(Configuration)/$(Platform)/$(ProjectName)/
-
../Build/VS2015/Temp/$(Configuration)/$(Platform)/$(ProjectName)/
-
- ../Build/VS2015/Temp/$(Configuration)/$(Platform)/$(ProjectName)/
-
-
- $(ProjectName)_MTd
-
-
- $(ProjectName)_MTd_DLL
-
$(ProjectName)_MDd
-
- $(ProjectName)_MDd_DLL
-
-
- $(ProjectName)_MTd
-
-
- $(ProjectName)_MTd_DLL
-
$(ProjectName)_MDd
-
- $(ProjectName)_MDd_DLL
-
-
- ../Build/VS2015/$(Configuration)/$(Platform)/
-
-
- ../Build/VS2015/$(Configuration)/$(Platform)/
-
../Build/VS2015/$(Configuration)/$(Platform)/
-
- ../Build/VS2015/$(Configuration)/$(Platform)/
-
-
- ../Build/VS2015/$(Configuration)/$(Platform)/
-
-
- ../Build/VS2015/$(Configuration)/$(Platform)/
-
../Build/VS2015/$(Configuration)/$(Platform)/
-
- ../Build/VS2015/$(Configuration)/$(Platform)/
-
-
- ../Build/VS2015/Temp/$(Configuration)/$(Platform)/$(ProjectName)/
-
-
- ../Build/VS2015/Temp/$(Configuration)/$(Platform)/$(ProjectName)/
-
../Build/VS2015/Temp/$(Configuration)/$(Platform)/$(ProjectName)/
-
- ../Build/VS2015/Temp/$(Configuration)/$(Platform)/$(ProjectName)/
-
-
- ../Build/VS2015/Temp/$(Configuration)/$(Platform)/$(ProjectName)/
-
-
- ../Build/VS2015/Temp/$(Configuration)/$(Platform)/$(ProjectName)/
-
../Build/VS2015/Temp/$(Configuration)/$(Platform)/$(ProjectName)/
-
- ../Build/VS2015/Temp/$(Configuration)/$(Platform)/$(ProjectName)/
-
-
- $(ProjectName)_MT
-
-
- $(ProjectName)_MT_DLL
-
$(ProjectName)_MD
-
- $(ProjectName)_MD_DLL
-
-
- $(ProjectName)_MT
-
-
- $(ProjectName)_MT_DLL
-
$(ProjectName)_MD
-
- $(ProjectName)_MD_DLL
-
-
+
Level4
Disabled
- USE_SSE;USE_SSE2;WIN32;VK_USE_PLATFORM_WIN32_KHR;_DEBUG;_LIB;HALF_NO_STD;_ITERATOR_DEBUG_LEVEL=2;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES;
- ../Header/CMP_Math;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/Vulkan/1.0.21.1/SDK/Include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header;../../Common/Lib/Ext/DirectXTex/v132
+ USE_SSE;USE_SSE2;WIN32;VK_USE_PLATFORM_WIN32_KHR;_DEBUG;_LIB;HALF_NO_STD;_ITERATOR_DEBUG_LEVEL=2;%(PreprocessorDefinitions)
+ ../Header/CMP_Math;../Applications/_Plugins/Common;../Header;../Header/GPU_Decode
true
- MultiThreadedDebug
+ MultiThreadedDebugDLL
false
@@ -428,34 +152,30 @@
-
-
- ../../Common/Lib/AMD/APPSDK/3-0/lib/x86;%(AdditionalLibraryDirectories)
+ vulkan-1.lib
+ $(VULKAN_SDK)/Lib32;../../Common/Lib/Ext/Vulkan/1.0.68.0/Lib32;../../Common/Lib/AMD/APPSDK/3-0/lib/x86;%(AdditionalLibraryDirectories)
-
+
Level4
Disabled
- USE_SSE;USE_SSE2;WIN32;VK_USE_PLATFORM_WIN32_KHR;_DEBUG;_LIB;HALF_NO_STD;_ITERATOR_DEBUG_LEVEL=2;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES;
- ../Header/CMP_Math;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/Vulkan/1.0.21.1/SDK/Include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header;../../Common/Lib/Ext/DirectXTex/v132
+ USE_SSE;USE_SSE2;_WIN64;VK_USE_PLATFORM_WIN32_KHR;_DEBUG;_LIB;HALF_NO_STD;_ITERATOR_DEBUG_LEVEL=2;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES
+ ../Header/CMP_Math;../../Common/Lib/Ext/DirectXTex/v132;../../Common/Lib/Ext/Vulkan/1.0.21.1/SDK/Include/;../../Common/Lib/Ext/DirectXTex/v132;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header
+ ProgramDatabase
true
- MultiThreadedDebug
+ MultiThreadedDebugDLL
+
+
false
+ /FS %(AdditionalOptions)
Windows
true
- ../GPU_DecodeLib.def
- %(AdditionalDependencies)
- ../../Common/Lib/AMD/APPSDK/3-0/lib/x86;%(AdditionalLibraryDirectories)
-
-
-
-
@@ -464,76 +184,80 @@
-
-
-
-
-
+ vulkan-1.lib
+ $(VULKAN_SDK)/Lib;../../Common/Lib/Ext/Vulkan/1.0.68.0/Lib;../../Common/Lib/AMD/APPSDK/3-0/lib/x86_64;%(AdditionalLibraryDirectories)
-
+
+ Level4
- Level4
- Disabled
- USE_SSE;USE_SSE2;WIN32;VK_USE_PLATFORM_WIN32_KHR;_DEBUG;_LIB;HALF_NO_STD;_ITERATOR_DEBUG_LEVEL=2;%(PreprocessorDefinitions)
- ../Header/CMP_Math;../Applications/_Plugins/Common;../Header;../Header/GPU_Decode
+ Full
+
+
+ false
+ USE_SSE;USE_SSE2;WIN32;VK_USE_PLATFORM_WIN32_KHR;NDEBUG;_LIB;HALF_NO_STD;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES;
+ ../Header/CMP_Math;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/Vulkan/1.0.68.0/Include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header;../../Common/Lib/Ext/DirectXTex/v132
+ MultiThreadedDLL
true
- MultiThreadedDebugDLL
- false
+ ProgramDatabase
+ $(OutDir)$(ProjectName)_MD.pdb
Windows
true
+ true
+ true
+
+
-
-
-
+
+
+
+
+
+
+
+
-
-
-
-
-
-
- %(AdditionalLibraryDirectories)
+ vulkan-1.lib
+ $(VULKAN_SDK)/Lib32;../../Common/Lib/Ext/Vulkan/1.0.68.0/Lib32;../../Common/Lib/AMD/APPSDK/3-0/lib/x86;%(AdditionalLibraryDirectories)
-
+
+ Level3
- Level4
- Disabled
- USE_SSE;USE_SSE2;WIN32;VK_USE_PLATFORM_WIN32_KHR;_DEBUG;_LIB;HALF_NO_STD;_ITERATOR_DEBUG_LEVEL=2;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES;
- ../Header/CMP_Math;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/Vulkan/1.0.21.1/SDK/Include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header;../../Common/Lib/Ext/DirectXTex/v132
+ MaxSpeed
+ true
+ true
+ USE_SSE;USE_SSE2;VK_USE_PLATFORM_WIN32_KHR;WIN64;NDEBUG;_LIB;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES
+ ../Header/CMP_Math;../../Common/Lib/Ext/DirectXTex/v132;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/Vulkan/1.0.68.0/Include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header
+ MultiThreadedDLL
true
- MultiThreadedDebugDLL
- false
+ ProgramDatabase
+ $(OutDir)$(ProjectName)_MD.pdb
+ /FS %(AdditionalOptions)
Windows
true
- ../GPU_DecodeLib.def
- %(AdditionalDependencies)
- ../../Common/Lib/AMD/APPSDK/3-0/lib/x86;%(AdditionalLibraryDirectories)
+ true
+ true
-
-
-
-
@@ -542,473 +266,11 @@
-
-
-
-
-
-
-
-
-
-
-
-
- Level4
- Disabled
- USE_SSE;USE_SSE2;WIN64;_DEBUG;_LIB;HALF_NO_STD;_ITERATOR_DEBUG_LEVEL=2;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES;
- ../Header/CMP_Math;../../Common/Lib/Ext/DirectXTex/v132;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/Vulkan/1.0.21.1/SDK/Include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header;../Header/GPU_Decode/DirectXTex
- ProgramDatabase
- true
- MultiThreadedDebug
-
-
- false
-
-
- Windows
- true
-
-
-
-
-
-
-
-
-
-
-
-
- ../../Common/Lib/AMD/APPSDK/3-0/lib/x86_64;%(AdditionalLibraryDirectories)
-
-
-
-
-
-
- Level4
- Disabled
- USE_SSE;USE_SSE2;WIN64;_DEBUG;_LIB;HALF_NO_STD;_ITERATOR_DEBUG_LEVEL=2;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES;
- ../Header/CMP_Math;../../Common/Lib/Ext/DirectXTex/v132;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/Vulkan/1.0.21.1/SDK/Include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header;../Header/GPU_Decode/DirectXTex
- ProgramDatabase
- true
- MultiThreadedDebug
-
-
- false
-
-
- Windows
- true
- ../GPU_DecodeLib.def
- %(AdditionalDependencies)
- ../../Common/Lib/AMD/APPSDK/3-0/lib/x86_64;%(AdditionalLibraryDirectories)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Level4
- Disabled
- USE_SSE;USE_SSE2;_WIN64;VK_USE_PLATFORM_WIN32_KHR;_DEBUG;_LIB;HALF_NO_STD;_ITERATOR_DEBUG_LEVEL=2;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES
- ../Header/CMP_Math;../../Common/Lib/Ext/DirectXTex/v132;../../Common/Lib/Ext/Vulkan/1.0.21.1/SDK/Include/;../../Common/Lib/Ext/DirectXTex/v132;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header
- ProgramDatabase
- true
- MultiThreadedDebugDLL
-
-
- false
- /FS %(AdditionalOptions)
-
-
- Windows
- true
-
-
-
-
-
-
-
-
-
-
- vulkan-1.lib
- ../../Common/Lib/Ext/Vulkan/1.0.21.1/SDK/Bin;../../Common/Lib/AMD/APPSDK/3-0/lib/x86_64;%(AdditionalLibraryDirectories)
-
-
-
-
-
-
- Level4
- Disabled
- USE_SSE;USE_SSE2;WIN64;_DEBUG;_LIB;HALF_NO_STD;_ITERATOR_DEBUG_LEVEL=2;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES;
- ../Header/CMP_Math;../../Common/Lib/Ext/DirectXTex/v132;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/Vulkan/1.0.21.1/SDK/Include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header;../Header/GPU_Decode/DirectXTex
- ProgramDatabase
- true
- MultiThreadedDebugDLL
-
-
- false
-
-
- Windows
- true
- ../GPU_DecodeLib.def
- %(AdditionalDependencies)
- ../../Common/Lib/AMD/APPSDK/3-0/lib/x86_64;%(AdditionalLibraryDirectories)
-
-
-
-
-
-
-
-
-
-
-
-
- Level4
-
-
- Full
-
-
- false
- USE_SSE;USE_SSE2;WIN32;VK_USE_PLATFORM_WIN32_KHR;NDEBUG;_LIB;HALF_NO_STD;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES;
- ../Header/CMP_Math;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/Vulkan/1.0.21.1/SDK/Include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header;../../Common/Lib/Ext/DirectXTex/v132
- MultiThreaded
- true
- ProgramDatabase
- $(OutDir)$(ProjectName)_MT.pdb
-
-
- Windows
- true
- true
- true
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ../../Common/Lib/AMD/APPSDK/3-0/lib/x86;%(AdditionalLibraryDirectories)
-
-
-
-
- Level4
-
-
- Full
-
-
- false
- USE_SSE;USE_SSE2;WIN32;VK_USE_PLATFORM_WIN32_KHR;NDEBUG;_LIB;HALF_NO_STD;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES;
- ../Header/CMP_Math;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/Vulkan/1.0.21.1/SDK/Include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header;../../Common/Lib/Ext/DirectXTex/v132
- MultiThreaded
- true
- ProgramDatabase
- $(OutDir)$(ProjectName)_MT_DLL.pdb
-
-
- Windows
- true
- true
- true
- ../GPU_DecodeLib.def
-
-
- %(AdditionalDependencies)
- ../../Common/Lib/AMD/APPSDK/3-0/lib/x86;%(AdditionalLibraryDirectories)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Level4
-
-
- Full
-
-
- false
- USE_SSE;USE_SSE2;WIN32;VK_USE_PLATFORM_WIN32_KHR;NDEBUG;_LIB;HALF_NO_STD;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES;
- ../Header/CMP_Math;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/Vulkan/1.0.68.0/Include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header;../../Common/Lib/Ext/DirectXTex/v132
- MultiThreadedDLL
- true
- ProgramDatabase
- $(OutDir)$(ProjectName)_MD.pdb
-
-
- Windows
- true
- true
- true
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
vulkan-1.lib
- ../../Common/Lib/Ext/Vulkan/1.0.68.0/Lib32;../../Common/Lib/AMD/APPSDK/3-0/lib/x86;%(AdditionalLibraryDirectories)
+ $(VULKAN_SDK)/Lib;../../Common/Lib/Ext/Vulkan/1.0.68.0/Lib;../../Common/Lib/AMD/APPSDK/3-0/lib/x86_64;%(AdditionalLibraryDirectories)
-
-
- Level4
-
-
- Full
-
-
- false
- USE_SSE;USE_SSE2;WIN32;VK_USE_PLATFORM_WIN32_KHR;NDEBUG;_LIB;HALF_NO_STD;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES;
- ../Header/CMP_Math;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/Vulkan/1.0.21.1/SDK/Include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header;../../Common/Lib/Ext/DirectXTex/v132
- MultiThreadedDLL
- true
- ProgramDatabase
- $(OutDir)$(ProjectName)_MD_DLL.pdb
-
-
- Windows
- true
- true
- true
- ../GPU_DecodeLib.def
-
-
- %(AdditionalDependencies)
- ../../Common/Lib/AMD/APPSDK/3-0/lib/x86;%(AdditionalLibraryDirectories)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Level3
-
-
- MaxSpeed
- true
- true
- USE_SSE;USE_SSE2;WIN64;NDEBUG;_LIB;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES;
- ../Header/CMP_Math;../../Common/Lib/Ext/DirectXTex/v132;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/Vulkan/1.0.21.1/SDK/Include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header;../Header/GPU_Decode/DirectXTex
- MultiThreaded
- true
- ProgramDatabase
- $(OutDir)$(ProjectName)_MT.pdb
-
-
- Windows
- true
- true
- true
-
-
-
-
-
-
-
-
-
-
-
-
- ../../Common/Lib/AMD/APPSDK/3-0/lib/x86_64;%(AdditionalLibraryDirectories)
-
-
-
-
- Level3
-
-
- MaxSpeed
- true
- true
- USE_SSE;USE_SSE2;WIN64;NDEBUG;_LIB;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES;
- ../Header/CMP_Math;../../Common/Lib/Ext/DirectXTex/v132;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/Vulkan/1.0.21.1/SDK/Include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header;../Header/GPU_Decode/DirectXTex
- MultiThreaded
- true
- ProgramDatabase
- $(OutDir)$(ProjectName)_MT_DLL.pdb
-
-
- Windows
- true
- true
- true
- ../GPU_DecodeLib.def
-
-
- %(AdditionalDependencies)
- ../../Common/Lib/AMD/APPSDK/3-0/lib/x86_64;%(AdditionalLibraryDirectories)
-
-
-
-
-
-
-
-
-
-
-
-
- Level3
-
-
- MaxSpeed
- true
- true
- USE_SSE;USE_SSE2;VK_USE_PLATFORM_WIN32_KHR;WIN64;NDEBUG;_LIB;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES
- ../Header/CMP_Math;../../Common/Lib/Ext/DirectXTex/v132;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/Vulkan/1.0.68.0/Include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header
- MultiThreadedDLL
- true
- ProgramDatabase
- $(OutDir)$(ProjectName)_MD.pdb
- /FS %(AdditionalOptions)
-
-
- Windows
- true
- true
- true
-
-
-
-
-
-
-
-
-
-
- vulkan-1.lib
- ../../Common/Lib/Ext/Vulkan/1.0.68.0/Lib;../../Common/Lib/AMD/APPSDK/3-0/lib/x86_64;%(AdditionalLibraryDirectories)
-
-
-
-
- Level3
-
-
- MaxSpeed
- true
- true
- USE_SSE;USE_SSE2;WIN64;NDEBUG;_LIB;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES;
- ../Header/CMP_Math;../../Common/Lib/Ext/DirectXTex/v132;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/Vulkan/1.0.21.1/SDK/Include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header;../Header/GPU_Decode/DirectXTex
- MultiThreadedDLL
- true
- ProgramDatabase
- $(OutDir)$(ProjectName)_MD_DLL.pdb
-
-
- Windows
- true
- true
- true
- ../GPU_DecodeLib.def
-
-
- %(AdditionalDependencies)
- ../../Common/Lib/AMD/APPSDK/3-0/lib/x86_64;%(AdditionalLibraryDirectories)
-
-
-
-
-
-
-
-
-
-
diff --git a/Compressonator/VS2015/CMP_MeshCompressor.vcxproj b/Compressonator/VS2015/CMP_MeshCompressor.vcxproj
index cd894cf8a..861c703ce 100644
--- a/Compressonator/VS2015/CMP_MeshCompressor.vcxproj
+++ b/Compressonator/VS2015/CMP_MeshCompressor.vcxproj
@@ -1,22 +1,6 @@
-
- Debug_DLL
- Win32
-
-
- Debug_DLL
- x64
-
-
- Debug_MD_DLL
- Win32
-
-
- Debug_MD_DLL
- x64
-
Debug_MD
Win32
@@ -25,30 +9,6 @@
Debug_MD
x64
-
- Debug
- Win32
-
-
- Debug
- x64
-
-
- Release_DLL
- Win32
-
-
- Release_DLL
- x64
-
-
- Release_MD_DLL
- Win32
-
-
- Release_MD_DLL
- x64
-
Release_MD
Win32
@@ -57,14 +17,6 @@
Release_MD
x64
-
- Release
- Win32
-
-
- Release
- x64
-
@@ -348,20 +300,6 @@
CMP_MeshCompressor
-
- StaticLibrary
- true
- MultiByte
- false
- v140
-
-
- DynamicLibrary
- true
- MultiByte
- false
- v140
-
StaticLibrary
true
@@ -369,27 +307,6 @@
false
v140
-
- DynamicLibrary
- true
- MultiByte
- false
- v140
-
-
- StaticLibrary
- true
- MultiByte
- false
- v140
-
-
- DynamicLibrary
- true
- MultiByte
- false
- v140
-
StaticLibrary
true
@@ -397,27 +314,6 @@
false
v140
-
- DynamicLibrary
- true
- MultiByte
- false
- v140
-
-
- StaticLibrary
- false
- false
- Unicode
- v140
-
-
- DynamicLibrary
- false
- false
- MultiByte
- v140
-
StaticLibrary
false
@@ -425,27 +321,6 @@
MultiByte
v140
-
- DynamicLibrary
- false
- false
- MultiByte
- v140
-
-
- StaticLibrary
- false
- false
- MultiByte
- v140
-
-
- DynamicLibrary
- false
- false
- MultiByte
- v140
-
StaticLibrary
false
@@ -453,219 +328,68 @@
MultiByte
v140
-
- DynamicLibrary
- false
- false
- MultiByte
- v140
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ../Build/VS2015/$(Configuration)/$(Platform)/
-
-
- ../Build/VS2015/$(Configuration)/$(Platform)/
-
../Build/VS2015/$(Configuration)/$(Platform)/
-
- ../Build/VS2015/$(Configuration)/$(Platform)/
-
-
- ../Build/VS2015/$(Configuration)/$(Platform)/
-
-
- ../Build/VS2015/$(Configuration)/$(Platform)/
-
../Build/VS2015/$(Configuration)/$(Platform)/
-
- ../Build/VS2015/$(Configuration)/$(Platform)/
-
-
- ../Build/VS2015/Temp/$(Configuration)/$(Platform)/$(ProjectName)/
-
-
- ../Build/VS2015/Temp/$(Configuration)/$(Platform)/$(ProjectName)/
-
../Build/VS2015/Temp/$(Configuration)/$(Platform)/$(ProjectName)/
-
- ../Build/VS2015/Temp/$(Configuration)/$(Platform)/$(ProjectName)/
-
-
- ../Build/VS2015/Temp/$(Configuration)/$(Platform)/$(ProjectName)/
-
-
- ../Build/VS2015/Temp/$(Configuration)/$(Platform)/$(ProjectName)/
-
../Build/VS2015/Temp/$(Configuration)/$(Platform)/$(ProjectName)/
-
- ../Build/VS2015/Temp/$(Configuration)/$(Platform)/$(ProjectName)/
-
-
- $(ProjectName)_MTd
-
-
- $(ProjectName)_MTd_DLL
-
$(ProjectName)_MDd
-
- $(ProjectName)_MDd_DLL
-
-
- $(ProjectName)_MTd
-
-
- $(ProjectName)_MTd_DLL
-
$(ProjectName)_MDd
-
- $(ProjectName)_MDd_DLL
-
-
- ../Build/VS2015/$(Configuration)/$(Platform)/
-
-
- ../Build/VS2015/$(Configuration)/$(Platform)/
-
../Build/VS2015/$(Configuration)/$(Platform)/
-
- ../Build/VS2015/$(Configuration)/$(Platform)/
-
-
- ../Build/VS2015/$(Configuration)/$(Platform)/
-
-
- ../Build/VS2015/$(Configuration)/$(Platform)/
-
../Build/VS2015/$(Configuration)/$(Platform)/
-
- ../Build/VS2015/$(Configuration)/$(Platform)/
-
-
- ../Build/VS2015/Temp/$(Configuration)/$(Platform)/$(ProjectName)/
-
-
- ../Build/VS2015/Temp/$(Configuration)/$(Platform)/$(ProjectName)/
-
../Build/VS2015/Temp/$(Configuration)/$(Platform)/$(ProjectName)/
-
- ../Build/VS2015/Temp/$(Configuration)/$(Platform)/$(ProjectName)/
-
-
- ../Build/VS2015/Temp/$(Configuration)/$(Platform)/$(ProjectName)/
-
-
- ../Build/VS2015/Temp/$(Configuration)/$(Platform)/$(ProjectName)/
-
../Build/VS2015/Temp/$(Configuration)/$(Platform)/$(ProjectName)/
-
- ../Build/VS2015/Temp/$(Configuration)/$(Platform)/$(ProjectName)/
-
-
- $(ProjectName)_MT
-
-
- $(ProjectName)_MT_DLL
-
$(ProjectName)_MD
-
- $(ProjectName)_MD_DLL
-
-
- $(ProjectName)_MT
-
-
- $(ProjectName)_MT_DLL
-
$(ProjectName)_MD
-
- $(ProjectName)_MD_DLL
-
-
+
Level4
Disabled
- USE_SSE;USE_SSE2;WIN32;_WINDOWS;_SCL_SECURE_NO_WARNINGS;WIN32;VK_USE_PLATFORM_WIN32_KHR;_DEBUG;_LIB;HALF_NO_STD;_ITERATOR_DEBUG_LEVEL=2;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES;
- ../source/CMP_MeshCompressor/Draco/src;../Header/CMP_Math;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/Vulkan/1.0.21.1/SDK/Include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header;../../Common/Lib/Ext/DirectXTex/v132
+ USE_SSE;USE_SSE2;WIN32;_WINDOWS;_SCL_SECURE_NO_WARNINGS;WIN32;VK_USE_PLATFORM_WIN32_KHR;_DEBUG;_LIB;HALF_NO_STD;_ITERATOR_DEBUG_LEVEL=2;%(PreprocessorDefinitions)
+ ../source/CMP_MeshCompressor/Draco/src;../Header/CMP_Math;../Applications/_Plugins/Common;../Header;../Header/GPU_Decode
true
- MultiThreadedDebug
+ MultiThreadedDebugDLL
false
@@ -690,34 +414,30 @@
-
-
- ../../Common/Lib/AMD/APPSDK/3-0/lib/x86;%(AdditionalLibraryDirectories)
+ vulkan-1.lib
+ $(VULKAN_SDK)/Lib32;../../Common/Lib/Ext/Vulkan/1.0.68.0/Lib32;../../Common/Lib/AMD/APPSDK/3-0/lib/x86;%(AdditionalLibraryDirectories)
-
+
Level4
Disabled
- USE_SSE;USE_SSE2;WIN32;_WINDOWS;_SCL_SECURE_NO_WARNINGS;WIN32;VK_USE_PLATFORM_WIN32_KHR;_DEBUG;_LIB;HALF_NO_STD;_ITERATOR_DEBUG_LEVEL=2;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES;
- ../source/CMP_MeshCompressor/Draco/src;../Header/CMP_Math;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/Vulkan/1.0.21.1/SDK/Include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header;../../Common/Lib/Ext/DirectXTex/v132
+ USE_SSE;USE_SSE2;WIN32;_WINDOWS;_SCL_SECURE_NO_WARNINGS;_WIN64;VK_USE_PLATFORM_WIN32_KHR;_DEBUG;_LIB;HALF_NO_STD;_ITERATOR_DEBUG_LEVEL=2;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES
+ ../source/CMP_MeshCompressor/Draco/src;../Header/CMP_Math;../../Common/Lib/Ext/DirectXTex/v132;../../Common/Lib/Ext/Vulkan/1.0.21.1/SDK/Include/;../../Common/Lib/Ext/DirectXTex/v132;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header
+ ProgramDatabase
true
- MultiThreadedDebug
+ MultiThreadedDebugDLL
+
+
false
+ /FS %(AdditionalOptions)
Windows
true
- ../GPU_DecodeLib.def
- %(AdditionalDependencies)
- ../../Common/Lib/AMD/APPSDK/3-0/lib/x86;%(AdditionalLibraryDirectories)
-
-
-
-
@@ -726,76 +446,80 @@
-
-
-
-
-
+ vulkan-1.lib
+ $(VULKAN_SDK)/Lib;../../Common/Lib/Ext/Vulkan/1.0.68.0/Lib;../../Common/Lib/AMD/APPSDK/3-0/lib/x86_64;%(AdditionalLibraryDirectories)
-
+
+ Level4
- Level4
- Disabled
- USE_SSE;USE_SSE2;WIN32;_WINDOWS;_SCL_SECURE_NO_WARNINGS;WIN32;VK_USE_PLATFORM_WIN32_KHR;_DEBUG;_LIB;HALF_NO_STD;_ITERATOR_DEBUG_LEVEL=2;%(PreprocessorDefinitions)
- ../source/CMP_MeshCompressor/Draco/src;../Header/CMP_Math;../Applications/_Plugins/Common;../Header;../Header/GPU_Decode
+ Full
+
+
+ false
+ USE_SSE;USE_SSE2;WIN32;_WINDOWS;_SCL_SECURE_NO_WARNINGS;WIN32;VK_USE_PLATFORM_WIN32_KHR;NDEBUG;_LIB;HALF_NO_STD;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES;
+ ../source/CMP_MeshCompressor/Draco/src;../Header/CMP_Math;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/Vulkan/1.0.68.0/Include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header;../../Common/Lib/Ext/DirectXTex/v132
+ MultiThreadedDLL
true
- MultiThreadedDebugDLL
- false
+ ProgramDatabase
+ $(OutDir)$(ProjectName)_MD.pdb
Windows
true
+ true
+ true
+
+
-
-
-
+
+
+
+
+
+
+
+
-
-
-
-
-
-
- %(AdditionalLibraryDirectories)
+ vulkan-1.lib
+ $(VULKAN_SDK)/Lib32;../../Common/Lib/Ext/Vulkan/1.0.68.0/Lib32;../../Common/Lib/AMD/APPSDK/3-0/lib/x86;%(AdditionalLibraryDirectories)
-
+
+ Level3
- Level4
- Disabled
- USE_SSE;USE_SSE2;WIN32;_WINDOWS;_SCL_SECURE_NO_WARNINGS;WIN32;VK_USE_PLATFORM_WIN32_KHR;_DEBUG;_LIB;HALF_NO_STD;_ITERATOR_DEBUG_LEVEL=2;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES;
- ../source/CMP_MeshCompressor/Draco/src;../Header/CMP_Math;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/Vulkan/1.0.21.1/SDK/Include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header;../../Common/Lib/Ext/DirectXTex/v132
+ MaxSpeed
+ true
+ true
+ USE_SSE;USE_SSE2;WIN32;_WINDOWS;_SCL_SECURE_NO_WARNINGS;VK_USE_PLATFORM_WIN32_KHR;WIN64;NDEBUG;_LIB;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES
+ ../source/CMP_MeshCompressor/Draco/src;../Header/CMP_Math;../../Common/Lib/Ext/DirectXTex/v132;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/Vulkan/1.0.68.0/Include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header
+ MultiThreadedDLL
true
- MultiThreadedDebugDLL
- false
+ ProgramDatabase
+ $(OutDir)$(ProjectName)_MD.pdb
+ /FS %(AdditionalOptions)
Windows
true
- ../GPU_DecodeLib.def
- %(AdditionalDependencies)
- ../../Common/Lib/AMD/APPSDK/3-0/lib/x86;%(AdditionalLibraryDirectories)
+ true
+ true
-
-
-
-
@@ -804,473 +528,11 @@
-
-
-
-
-
-
-
-
-
-
-
-
- Level4
- Disabled
- USE_SSE;USE_SSE2;WIN32;_WINDOWS;_SCL_SECURE_NO_WARNINGS;WIN64;_DEBUG;_LIB;HALF_NO_STD;_ITERATOR_DEBUG_LEVEL=2;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES;
- ../source/CMP_MeshCompressor/Draco/src;../Header/CMP_Math;../../Common/Lib/Ext/DirectXTex/v132;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/Vulkan/1.0.21.1/SDK/Include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header;../Header/GPU_Decode/DirectXTex
- ProgramDatabase
- true
- MultiThreadedDebug
-
-
- false
-
-
- Windows
- true
-
-
-
-
-
-
-
-
-
-
-
-
- ../../Common/Lib/AMD/APPSDK/3-0/lib/x86_64;%(AdditionalLibraryDirectories)
-
-
-
-
-
-
- Level4
- Disabled
- USE_SSE;USE_SSE2;WIN32;_WINDOWS;_SCL_SECURE_NO_WARNINGS;WIN64;_DEBUG;_LIB;HALF_NO_STD;_ITERATOR_DEBUG_LEVEL=2;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES;
- ../source/CMP_MeshCompressor/Draco/src;../Header/CMP_Math;../../Common/Lib/Ext/DirectXTex/v132;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/Vulkan/1.0.21.1/SDK/Include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header;../Header/GPU_Decode/DirectXTex
- ProgramDatabase
- true
- MultiThreadedDebug
-
-
- false
-
-
- Windows
- true
- ../GPU_DecodeLib.def
- %(AdditionalDependencies)
- ../../Common/Lib/AMD/APPSDK/3-0/lib/x86_64;%(AdditionalLibraryDirectories)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Level4
- Disabled
- USE_SSE;USE_SSE2;WIN32;_WINDOWS;_SCL_SECURE_NO_WARNINGS;_WIN64;VK_USE_PLATFORM_WIN32_KHR;_DEBUG;_LIB;HALF_NO_STD;_ITERATOR_DEBUG_LEVEL=2;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES
- ../source/CMP_MeshCompressor/Draco/src;../Header/CMP_Math;../../Common/Lib/Ext/DirectXTex/v132;../../Common/Lib/Ext/Vulkan/1.0.21.1/SDK/Include/;../../Common/Lib/Ext/DirectXTex/v132;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header
- ProgramDatabase
- true
- MultiThreadedDebugDLL
-
-
- false
- /FS %(AdditionalOptions)
-
-
- Windows
- true
-
-
-
-
-
-
-
-
-
-
- vulkan-1.lib
- ../../Common/Lib/Ext/Vulkan/1.0.21.1/SDK/Bin;../../Common/Lib/AMD/APPSDK/3-0/lib/x86_64;%(AdditionalLibraryDirectories)
-
-
-
-
-
-
- Level4
- Disabled
- USE_SSE;USE_SSE2;WIN32;_WINDOWS;_SCL_SECURE_NO_WARNINGS;WIN64;_DEBUG;_LIB;HALF_NO_STD;_ITERATOR_DEBUG_LEVEL=2;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES;
- ../source/CMP_MeshCompressor/Draco/src;../Header/CMP_Math;../../Common/Lib/Ext/DirectXTex/v132;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/Vulkan/1.0.21.1/SDK/Include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header;../Header/GPU_Decode/DirectXTex
- ProgramDatabase
- true
- MultiThreadedDebugDLL
-
-
- false
-
-
- Windows
- true
- ../GPU_DecodeLib.def
- %(AdditionalDependencies)
- ../../Common/Lib/AMD/APPSDK/3-0/lib/x86_64;%(AdditionalLibraryDirectories)
-
-
-
-
-
-
-
-
-
-
-
-
- Level4
-
-
- Full
-
-
- false
- USE_SSE;USE_SSE2;WIN32;_WINDOWS;_SCL_SECURE_NO_WARNINGS;WIN32;VK_USE_PLATFORM_WIN32_KHR;NDEBUG;_LIB;HALF_NO_STD;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES;
- ../source/CMP_MeshCompressor/Draco/src;../Header/CMP_Math;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/Vulkan/1.0.21.1/SDK/Include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header;../../Common/Lib/Ext/DirectXTex/v132
- MultiThreaded
- true
- ProgramDatabase
- $(OutDir)$(ProjectName)_MT.pdb
-
-
- Windows
- true
- true
- true
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ../../Common/Lib/AMD/APPSDK/3-0/lib/x86;%(AdditionalLibraryDirectories)
-
-
-
-
- Level4
-
-
- Full
-
-
- false
- USE_SSE;USE_SSE2;WIN32;_WINDOWS;_SCL_SECURE_NO_WARNINGS;WIN32;VK_USE_PLATFORM_WIN32_KHR;NDEBUG;_LIB;HALF_NO_STD;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES;
- ../source/CMP_MeshCompressor/Draco/src;../Header/CMP_Math;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/Vulkan/1.0.21.1/SDK/Include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header;../../Common/Lib/Ext/DirectXTex/v132
- MultiThreaded
- true
- ProgramDatabase
- $(OutDir)$(ProjectName)_MT_DLL.pdb
-
-
- Windows
- true
- true
- true
- ../GPU_DecodeLib.def
-
-
- %(AdditionalDependencies)
- ../../Common/Lib/AMD/APPSDK/3-0/lib/x86;%(AdditionalLibraryDirectories)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Level4
-
-
- Full
-
-
- false
- USE_SSE;USE_SSE2;WIN32;_WINDOWS;_SCL_SECURE_NO_WARNINGS;WIN32;VK_USE_PLATFORM_WIN32_KHR;NDEBUG;_LIB;HALF_NO_STD;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES;
- ../source/CMP_MeshCompressor/Draco/src;../Header/CMP_Math;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/Vulkan/1.0.68.0/Include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header;../../Common/Lib/Ext/DirectXTex/v132
- MultiThreadedDLL
- true
- ProgramDatabase
- $(OutDir)$(ProjectName)_MD.pdb
-
-
- Windows
- true
- true
- true
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
vulkan-1.lib
- ../../Common/Lib/Ext/Vulkan/1.0.68.0/Lib32;../../Common/Lib/AMD/APPSDK/3-0/lib/x86;%(AdditionalLibraryDirectories)
+ $(VULKAN_SDK)/Lib;../../Common/Lib/Ext/Vulkan/1.0.68.0/Lib;../../Common/Lib/AMD/APPSDK/3-0/lib/x86_64;%(AdditionalLibraryDirectories)
-
-
- Level4
-
-
- Full
-
-
- false
- USE_SSE;USE_SSE2;WIN32;_WINDOWS;_SCL_SECURE_NO_WARNINGS;WIN32;VK_USE_PLATFORM_WIN32_KHR;NDEBUG;_LIB;HALF_NO_STD;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES;
- ../source/CMP_MeshCompressor/Draco/src;../Header/CMP_Math;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/Vulkan/1.0.21.1/SDK/Include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header;../../Common/Lib/Ext/DirectXTex/v132
- MultiThreadedDLL
- true
- ProgramDatabase
- $(OutDir)$(ProjectName)_MD_DLL.pdb
-
-
- Windows
- true
- true
- true
- ../GPU_DecodeLib.def
-
-
- %(AdditionalDependencies)
- ../../Common/Lib/AMD/APPSDK/3-0/lib/x86;%(AdditionalLibraryDirectories)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Level3
-
-
- MaxSpeed
- true
- true
- USE_SSE;USE_SSE2;WIN32;_WINDOWS;_SCL_SECURE_NO_WARNINGS;WIN64;NDEBUG;_LIB;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES;
- ../source/CMP_MeshCompressor/Draco/src;../Header/CMP_Math;../../Common/Lib/Ext/DirectXTex/v132;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/Vulkan/1.0.21.1/SDK/Include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header;../Header/GPU_Decode/DirectXTex
- MultiThreaded
- true
- ProgramDatabase
- $(OutDir)$(ProjectName)_MT.pdb
-
-
- Windows
- true
- true
- true
-
-
-
-
-
-
-
-
-
-
-
-
- ../../Common/Lib/AMD/APPSDK/3-0/lib/x86_64;%(AdditionalLibraryDirectories)
-
-
-
-
- Level3
-
-
- MaxSpeed
- true
- true
- USE_SSE;USE_SSE2;WIN32;_WINDOWS;_SCL_SECURE_NO_WARNINGS;WIN64;NDEBUG;_LIB;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES;
- ../source/CMP_MeshCompressor/Draco/src;../Header/CMP_Math;../../Common/Lib/Ext/DirectXTex/v132;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/Vulkan/1.0.21.1/SDK/Include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header;../Header/GPU_Decode/DirectXTex
- MultiThreaded
- true
- ProgramDatabase
- $(OutDir)$(ProjectName)_MT_DLL.pdb
-
-
- Windows
- true
- true
- true
- ../GPU_DecodeLib.def
-
-
- %(AdditionalDependencies)
- ../../Common/Lib/AMD/APPSDK/3-0/lib/x86_64;%(AdditionalLibraryDirectories)
-
-
-
-
-
-
-
-
-
-
-
-
- Level3
-
-
- MaxSpeed
- true
- true
- USE_SSE;USE_SSE2;WIN32;_WINDOWS;_SCL_SECURE_NO_WARNINGS;VK_USE_PLATFORM_WIN32_KHR;WIN64;NDEBUG;_LIB;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES
- ../source/CMP_MeshCompressor/Draco/src;../Header/CMP_Math;../../Common/Lib/Ext/DirectXTex/v132;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/Vulkan/1.0.68.0/Include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header
- MultiThreadedDLL
- true
- ProgramDatabase
- $(OutDir)$(ProjectName)_MD.pdb
- /FS %(AdditionalOptions)
-
-
- Windows
- true
- true
- true
-
-
-
-
-
-
-
-
-
-
- vulkan-1.lib
- ../../Common/Lib/Ext/Vulkan/1.0.68.0/Lib;../../Common/Lib/AMD/APPSDK/3-0/lib/x86_64;%(AdditionalLibraryDirectories)
-
-
-
-
- Level3
-
-
- MaxSpeed
- true
- true
- USE_SSE;USE_SSE2;WIN32;_WINDOWS;_SCL_SECURE_NO_WARNINGS;WIN64;NDEBUG;_LIB;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES;
- ../source/CMP_MeshCompressor/Draco/src;../Header/CMP_Math;../../Common/Lib/Ext/DirectXTex/v132;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/Vulkan/1.0.21.1/SDK/Include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header;../Header/GPU_Decode/DirectXTex
- MultiThreadedDLL
- true
- ProgramDatabase
- $(OutDir)$(ProjectName)_MD_DLL.pdb
-
-
- Windows
- true
- true
- true
- ../GPU_DecodeLib.def
-
-
- %(AdditionalDependencies)
- ../../Common/Lib/AMD/APPSDK/3-0/lib/x86_64;%(AdditionalLibraryDirectories)
-
-
-
-
-
-
-
-
-
-
diff --git a/Compressonator/VS2015/CMP_MeshLib.vcxproj b/Compressonator/VS2015/CMP_MeshLib.vcxproj
index 49609f7a9..b236cedba 100644
--- a/Compressonator/VS2015/CMP_MeshLib.vcxproj
+++ b/Compressonator/VS2015/CMP_MeshLib.vcxproj
@@ -1,22 +1,6 @@
-
- Debug_DLL
- Win32
-
-
- Debug_DLL
- x64
-
-
- Debug_MD_DLL
- Win32
-
-
- Debug_MD_DLL
- x64
-
Debug_MD
Win32
@@ -25,30 +9,6 @@
Debug_MD
x64
-
- Debug
- Win32
-
-
- Debug
- x64
-
-
- Release_DLL
- Win32
-
-
- Release_DLL
- x64
-
-
- Release_MD_DLL
- Win32
-
-
- Release_MD_DLL
- x64
-
Release_MD
Win32
@@ -57,14 +17,6 @@
Release_MD
x64
-
- Release
- Win32
-
-
- Release
- x64
-
@@ -147,20 +99,6 @@
CMP_Mesh
-
- StaticLibrary
- true
- MultiByte
- false
- v140
-
-
- DynamicLibrary
- true
- MultiByte
- false
- v140
-
StaticLibrary
true
@@ -168,27 +106,6 @@
false
v140
-
- DynamicLibrary
- true
- MultiByte
- false
- v140
-
-
- StaticLibrary
- true
- MultiByte
- false
- v140
-
-
- DynamicLibrary
- true
- MultiByte
- false
- v140
-
StaticLibrary
true
@@ -196,27 +113,6 @@
false
v140
-
- DynamicLibrary
- true
- MultiByte
- false
- v140
-
-
- StaticLibrary
- false
- false
- Unicode
- v140
-
-
- DynamicLibrary
- false
- false
- MultiByte
- v140
-
StaticLibrary
false
@@ -224,27 +120,6 @@
MultiByte
v140
-
- DynamicLibrary
- false
- false
- MultiByte
- v140
-
-
- StaticLibrary
- false
- false
- MultiByte
- v140
-
-
- DynamicLibrary
- false
- false
- MultiByte
- v140
-
StaticLibrary
false
@@ -252,219 +127,68 @@
MultiByte
v140
-
- DynamicLibrary
- false
- false
- MultiByte
- v140
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ../Build/VS2015/$(Configuration)/$(Platform)/
-
-
- ../Build/VS2015/$(Configuration)/$(Platform)/
-
../Build/VS2015/$(Configuration)/$(Platform)/
-
- ../Build/VS2015/$(Configuration)/$(Platform)/
-
-
- ../Build/VS2015/$(Configuration)/$(Platform)/
-
-
- ../Build/VS2015/$(Configuration)/$(Platform)/
-
../Build/VS2015/$(Configuration)/$(Platform)/
-
- ../Build/VS2015/$(Configuration)/$(Platform)/
-
-
- ../Build/VS2015/Temp/$(Configuration)/$(Platform)/$(ProjectName)/
-
-
- ../Build/VS2015/Temp/$(Configuration)/$(Platform)/$(ProjectName)/
-
../Build/VS2015/Temp/$(Configuration)/$(Platform)/$(ProjectName)/
-
- ../Build/VS2015/Temp/$(Configuration)/$(Platform)/$(ProjectName)/
-
-
- ../Build/VS2015/Temp/$(Configuration)/$(Platform)/$(ProjectName)/
-
-
- ../Build/VS2015/Temp/$(Configuration)/$(Platform)/$(ProjectName)/
-
../Build/VS2015/Temp/$(Configuration)/$(Platform)/$(ProjectName)/
-
- ../Build/VS2015/Temp/$(Configuration)/$(Platform)/$(ProjectName)/
-
-
- $(ProjectName)_MTd
-
-
- $(ProjectName)_MTd_DLL
-
$(ProjectName)_MDd
-
- $(ProjectName)_MDd_DLL
-
-
- $(ProjectName)_MTd
-
-
- $(ProjectName)_MTd_DLL
-
$(ProjectName)_MDd
-
- $(ProjectName)_MDd_DLL
-
-
- ../Build/VS2015/$(Configuration)/$(Platform)/
-
-
- ../Build/VS2015/$(Configuration)/$(Platform)/
-
../Build/VS2015/$(Configuration)/$(Platform)/
-
- ../Build/VS2015/$(Configuration)/$(Platform)/
-
-
- ../Build/VS2015/$(Configuration)/$(Platform)/
-
-
- ../Build/VS2015/$(Configuration)/$(Platform)/
-
../Build/VS2015/$(Configuration)/$(Platform)/
-
- ../Build/VS2015/$(Configuration)/$(Platform)/
-
-
- ../Build/VS2015/Temp/$(Configuration)/$(Platform)/$(ProjectName)/
-
-
- ../Build/VS2015/Temp/$(Configuration)/$(Platform)/$(ProjectName)/
-
../Build/VS2015/Temp/$(Configuration)/$(Platform)/$(ProjectName)/
-
- ../Build/VS2015/Temp/$(Configuration)/$(Platform)/$(ProjectName)/
-
-
- ../Build/VS2015/Temp/$(Configuration)/$(Platform)/$(ProjectName)/
-
-
- ../Build/VS2015/Temp/$(Configuration)/$(Platform)/$(ProjectName)/
-
../Build/VS2015/Temp/$(Configuration)/$(Platform)/$(ProjectName)/
-
- ../Build/VS2015/Temp/$(Configuration)/$(Platform)/$(ProjectName)/
-
-
- $(ProjectName)_MT
-
-
- $(ProjectName)_MT_DLL
-
$(ProjectName)_MD
-
- $(ProjectName)_MD_DLL
-
-
- $(ProjectName)_MT
-
-
- $(ProjectName)_MT_DLL
-
$(ProjectName)_MD
-
- $(ProjectName)_MD_DLL
-
-
+
Level4
Disabled
- USE_SSE;USE_SSE2;WIN32;VK_USE_PLATFORM_WIN32_KHR;_DEBUG;_LIB;HALF_NO_STD;_ITERATOR_DEBUG_LEVEL=2;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES;
- ../Header/CMP_Math;../Header/CMP_Mesh;../Source/CMP_Mesh/JRT;$(DXSDK_DIR)Include;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/Vulkan/1.0.21.1/SDK/Include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header;../../Common/Lib/Ext/DirectXTex/v132
+ USE_SSE;USE_SSE2;WIN32;VK_USE_PLATFORM_WIN32_KHR;_DEBUG;_LIB;HALF_NO_STD;_ITERATOR_DEBUG_LEVEL=2;%(PreprocessorDefinitions)
+ ../Header/CMP_Math;../Header/CMP_Mesh;../Source/CMP_Mesh/JRT;$(DXSDK_DIR)Include;../Applications/_Plugins/Common;../Header;../Header/GPU_Decode
true
- MultiThreadedDebug
+ MultiThreadedDebugDLL
false
@@ -489,34 +213,30 @@
-
-
- ../../Common/Lib/AMD/APPSDK/3-0/lib/x86;%(AdditionalLibraryDirectories)
+ vulkan-1.lib
+ $(VULKAN_SDK)/Lib32;../../Common/Lib/Ext/Vulkan/1.0.68.0/Lib32;../../Common/Lib/AMD/APPSDK/3-0/lib/x86;%(AdditionalLibraryDirectories)
-
+
Level4
Disabled
- USE_SSE;USE_SSE2;WIN32;VK_USE_PLATFORM_WIN32_KHR;_DEBUG;_LIB;HALF_NO_STD;_ITERATOR_DEBUG_LEVEL=2;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES;
- ../Header/CMP_Math;../Header/CMP_Mesh;../Source/CMP_Mesh/JRT;$(DXSDK_DIR)Include;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/Vulkan/1.0.21.1/SDK/Include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header;../../Common/Lib/Ext/DirectXTex/v132
+ USE_SSE;USE_SSE2;_WIN64;VK_USE_PLATFORM_WIN32_KHR;_DEBUG;_LIB;HALF_NO_STD;_ITERATOR_DEBUG_LEVEL=2;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES
+ ../Header/CMP_Math;../Header/CMP_Mesh;../Source/CMP_Mesh/JRT;$(DXSDK_DIR)Include;../../Common/Lib/Ext/DirectXTex/v132;../../Common/Lib/Ext/Vulkan/1.0.21.1/SDK/Include/;../../Common/Lib/Ext/DirectXTex/v132;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header
+ ProgramDatabase
true
- MultiThreadedDebug
+ MultiThreadedDebugDLL
+
+
false
+ /FS %(AdditionalOptions)
Windows
true
- ../GPU_DecodeLib.def
- %(AdditionalDependencies)
- ../../Common/Lib/AMD/APPSDK/3-0/lib/x86;%(AdditionalLibraryDirectories)
-
-
-
-
@@ -525,76 +245,80 @@
-
-
-
-
-
+ vulkan-1.lib
+ $(VULKAN_SDK)/Lib;../../Common/Lib/Ext/Vulkan/1.0.68.0/Lib;../../Common/Lib/AMD/APPSDK/3-0/lib/x86_64;%(AdditionalLibraryDirectories)
-
+
+ Level4
- Level4
- Disabled
- USE_SSE;USE_SSE2;WIN32;VK_USE_PLATFORM_WIN32_KHR;_DEBUG;_LIB;HALF_NO_STD;_ITERATOR_DEBUG_LEVEL=2;%(PreprocessorDefinitions)
- ../Header/CMP_Math;../Header/CMP_Mesh;../Source/CMP_Mesh/JRT;$(DXSDK_DIR)Include;../Applications/_Plugins/Common;../Header;../Header/GPU_Decode
+ Full
+
+
+ false
+ USE_SSE;USE_SSE2;WIN32;VK_USE_PLATFORM_WIN32_KHR;NDEBUG;_LIB;HALF_NO_STD;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES;
+ ../Header/CMP_Math;../Header/CMP_Mesh;../Source/CMP_Mesh/JRT;$(DXSDK_DIR)Include;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/Vulkan/1.0.68.0/Include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header;../../Common/Lib/Ext/DirectXTex/v132
+ MultiThreadedDLL
true
- MultiThreadedDebugDLL
- false
+ ProgramDatabase
+ $(OutDir)$(ProjectName)_MD.pdb
Windows
true
+ true
+ true
+
+
-
-
-
+
+
+
+
+
+
+
+
-
-
-
-
-
-
- %(AdditionalLibraryDirectories)
+ vulkan-1.lib
+ $(VULKAN_SDK)/Lib32;../../Common/Lib/Ext/Vulkan/1.0.68.0/Lib32;../../Common/Lib/AMD/APPSDK/3-0/lib/x86;%(AdditionalLibraryDirectories)
-
+
+ Level3
- Level4
- Disabled
- USE_SSE;USE_SSE2;WIN32;VK_USE_PLATFORM_WIN32_KHR;_DEBUG;_LIB;HALF_NO_STD;_ITERATOR_DEBUG_LEVEL=2;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES;
- ../Header/CMP_Math;../Header/CMP_Mesh;../Source/CMP_Mesh/JRT;$(DXSDK_DIR)Include;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/Vulkan/1.0.21.1/SDK/Include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header;../../Common/Lib/Ext/DirectXTex/v132
+ MaxSpeed
+ true
+ true
+ USE_SSE;USE_SSE2;VK_USE_PLATFORM_WIN32_KHR;WIN64;NDEBUG;_LIB;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES
+ ../Header/CMP_Math;../Header/CMP_Mesh;../Source/CMP_Mesh/JRT;$(DXSDK_DIR)Include;../../Common/Lib/Ext/DirectXTex/v132;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/Vulkan/1.0.68.0/Include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header
+ MultiThreadedDLL
true
- MultiThreadedDebugDLL
- false
+ ProgramDatabase
+ $(OutDir)$(ProjectName)_MD.pdb
+ /FS %(AdditionalOptions)
Windows
true
- ../GPU_DecodeLib.def
- %(AdditionalDependencies)
- ../../Common/Lib/AMD/APPSDK/3-0/lib/x86;%(AdditionalLibraryDirectories)
+ true
+ true
-
-
-
-
@@ -603,473 +327,11 @@
-
-
-
-
-
-
-
-
-
-
-
-
- Level4
- Disabled
- USE_SSE;USE_SSE2;WIN64;_DEBUG;_LIB;HALF_NO_STD;_ITERATOR_DEBUG_LEVEL=2;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES;
- ../Header/CMP_Math;../Header/CMP_Mesh;../Source/CMP_Mesh/JRT;$(DXSDK_DIR)Include;../../Common/Lib/Ext/DirectXTex/v132;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/Vulkan/1.0.21.1/SDK/Include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header;../Header/GPU_Decode/DirectXTex
- ProgramDatabase
- true
- MultiThreadedDebug
-
-
- false
-
-
- Windows
- true
-
-
-
-
-
-
-
-
-
-
-
-
- ../../Common/Lib/AMD/APPSDK/3-0/lib/x86_64;%(AdditionalLibraryDirectories)
-
-
-
-
-
-
- Level4
- Disabled
- USE_SSE;USE_SSE2;WIN64;_DEBUG;_LIB;HALF_NO_STD;_ITERATOR_DEBUG_LEVEL=2;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES;
- ../Header/CMP_Math;../Header/CMP_Mesh;../Source/CMP_Mesh/JRT;$(DXSDK_DIR)Include;../../Common/Lib/Ext/DirectXTex/v132;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/Vulkan/1.0.21.1/SDK/Include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header;../Header/GPU_Decode/DirectXTex
- ProgramDatabase
- true
- MultiThreadedDebug
-
-
- false
-
-
- Windows
- true
- ../GPU_DecodeLib.def
- %(AdditionalDependencies)
- ../../Common/Lib/AMD/APPSDK/3-0/lib/x86_64;%(AdditionalLibraryDirectories)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Level4
- Disabled
- USE_SSE;USE_SSE2;_WIN64;VK_USE_PLATFORM_WIN32_KHR;_DEBUG;_LIB;HALF_NO_STD;_ITERATOR_DEBUG_LEVEL=2;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES
- ../Header/CMP_Math;../Header/CMP_Mesh;../Source/CMP_Mesh/JRT;$(DXSDK_DIR)Include;../../Common/Lib/Ext/DirectXTex/v132;../../Common/Lib/Ext/Vulkan/1.0.21.1/SDK/Include/;../../Common/Lib/Ext/DirectXTex/v132;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header
- ProgramDatabase
- true
- MultiThreadedDebugDLL
-
-
- false
- /FS %(AdditionalOptions)
-
-
- Windows
- true
-
-
-
-
-
-
-
-
-
-
- vulkan-1.lib
- ../../Common/Lib/Ext/Vulkan/1.0.21.1/SDK/Bin;../../Common/Lib/AMD/APPSDK/3-0/lib/x86_64;%(AdditionalLibraryDirectories)
-
-
-
-
-
-
- Level4
- Disabled
- USE_SSE;USE_SSE2;WIN64;_DEBUG;_LIB;HALF_NO_STD;_ITERATOR_DEBUG_LEVEL=2;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES;
- ../Header/CMP_Math;../Header/CMP_Mesh;../Source/CMP_Mesh/JRT;$(DXSDK_DIR)Include;../../Common/Lib/Ext/DirectXTex/v132;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/Vulkan/1.0.21.1/SDK/Include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header;../Header/GPU_Decode/DirectXTex
- ProgramDatabase
- true
- MultiThreadedDebugDLL
-
-
- false
-
-
- Windows
- true
- ../GPU_DecodeLib.def
- %(AdditionalDependencies)
- ../../Common/Lib/AMD/APPSDK/3-0/lib/x86_64;%(AdditionalLibraryDirectories)
-
-
-
-
-
-
-
-
-
-
-
-
- Level4
-
-
- Full
-
-
- false
- USE_SSE;USE_SSE2;WIN32;VK_USE_PLATFORM_WIN32_KHR;NDEBUG;_LIB;HALF_NO_STD;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES;
- ../Header/CMP_Math;../Header/CMP_Mesh;../Source/CMP_Mesh/JRT;$(DXSDK_DIR)Include;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/Vulkan/1.0.21.1/SDK/Include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header;../../Common/Lib/Ext/DirectXTex/v132
- MultiThreaded
- true
- ProgramDatabase
- $(OutDir)$(ProjectName)_MT.pdb
-
-
- Windows
- true
- true
- true
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ../../Common/Lib/AMD/APPSDK/3-0/lib/x86;%(AdditionalLibraryDirectories)
-
-
-
-
- Level4
-
-
- Full
-
-
- false
- USE_SSE;USE_SSE2;WIN32;VK_USE_PLATFORM_WIN32_KHR;NDEBUG;_LIB;HALF_NO_STD;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES;
- ../Header/CMP_Math;../Header/CMP_Mesh;../Source/CMP_Mesh/JRT;$(DXSDK_DIR)Include;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/Vulkan/1.0.21.1/SDK/Include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header;../../Common/Lib/Ext/DirectXTex/v132
- MultiThreaded
- true
- ProgramDatabase
- $(OutDir)$(ProjectName)_MT_DLL.pdb
-
-
- Windows
- true
- true
- true
- ../GPU_DecodeLib.def
-
-
- %(AdditionalDependencies)
- ../../Common/Lib/AMD/APPSDK/3-0/lib/x86;%(AdditionalLibraryDirectories)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Level4
-
-
- Full
-
-
- false
- USE_SSE;USE_SSE2;WIN32;VK_USE_PLATFORM_WIN32_KHR;NDEBUG;_LIB;HALF_NO_STD;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES;
- ../Header/CMP_Math;../Header/CMP_Mesh;../Source/CMP_Mesh/JRT;$(DXSDK_DIR)Include;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/Vulkan/1.0.68.0/Include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header;../../Common/Lib/Ext/DirectXTex/v132
- MultiThreadedDLL
- true
- ProgramDatabase
- $(OutDir)$(ProjectName)_MD.pdb
-
-
- Windows
- true
- true
- true
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
vulkan-1.lib
- ../../Common/Lib/Ext/Vulkan/1.0.68.0/Lib32;../../Common/Lib/AMD/APPSDK/3-0/lib/x86;%(AdditionalLibraryDirectories)
+ $(VULKAN_SDK)/Lib;../../Common/Lib/Ext/Vulkan/1.0.68.0/Lib;../../Common/Lib/AMD/APPSDK/3-0/lib/x86_64;%(AdditionalLibraryDirectories)
-
-
- Level4
-
-
- Full
-
-
- false
- USE_SSE;USE_SSE2;WIN32;VK_USE_PLATFORM_WIN32_KHR;NDEBUG;_LIB;HALF_NO_STD;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES;
- ../Header/CMP_Math;../Header/CMP_Mesh;../Source/CMP_Mesh/JRT;$(DXSDK_DIR)Include;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/Vulkan/1.0.21.1/SDK/Include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header;../../Common/Lib/Ext/DirectXTex/v132
- MultiThreadedDLL
- true
- ProgramDatabase
- $(OutDir)$(ProjectName)_MD_DLL.pdb
-
-
- Windows
- true
- true
- true
- ../GPU_DecodeLib.def
-
-
- %(AdditionalDependencies)
- ../../Common/Lib/AMD/APPSDK/3-0/lib/x86;%(AdditionalLibraryDirectories)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Level3
-
-
- MaxSpeed
- true
- true
- USE_SSE;USE_SSE2;WIN64;NDEBUG;_LIB;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES;
- ../Header/CMP_Math;../Header/CMP_Mesh;../Source/CMP_Mesh/JRT;$(DXSDK_DIR)Include;../../Common/Lib/Ext/DirectXTex/v132;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/Vulkan/1.0.21.1/SDK/Include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header;../Header/GPU_Decode/DirectXTex
- MultiThreaded
- true
- ProgramDatabase
- $(OutDir)$(ProjectName)_MT.pdb
-
-
- Windows
- true
- true
- true
-
-
-
-
-
-
-
-
-
-
-
-
- ../../Common/Lib/AMD/APPSDK/3-0/lib/x86_64;%(AdditionalLibraryDirectories)
-
-
-
-
- Level3
-
-
- MaxSpeed
- true
- true
- USE_SSE;USE_SSE2;WIN64;NDEBUG;_LIB;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES;
- ../Header/CMP_Math;../Header/CMP_Mesh;../Source/CMP_Mesh/JRT;$(DXSDK_DIR)Include;../../Common/Lib/Ext/DirectXTex/v132;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/Vulkan/1.0.21.1/SDK/Include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header;../Header/GPU_Decode/DirectXTex
- MultiThreaded
- true
- ProgramDatabase
- $(OutDir)$(ProjectName)_MT_DLL.pdb
-
-
- Windows
- true
- true
- true
- ../GPU_DecodeLib.def
-
-
- %(AdditionalDependencies)
- ../../Common/Lib/AMD/APPSDK/3-0/lib/x86_64;%(AdditionalLibraryDirectories)
-
-
-
-
-
-
-
-
-
-
-
-
- Level3
-
-
- MaxSpeed
- true
- true
- USE_SSE;USE_SSE2;VK_USE_PLATFORM_WIN32_KHR;WIN64;NDEBUG;_LIB;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES
- ../Header/CMP_Math;../Header/CMP_Mesh;../Source/CMP_Mesh/JRT;$(DXSDK_DIR)Include;../../Common/Lib/Ext/DirectXTex/v132;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/Vulkan/1.0.68.0/Include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header
- MultiThreadedDLL
- true
- ProgramDatabase
- $(OutDir)$(ProjectName)_MD.pdb
- /FS %(AdditionalOptions)
-
-
- Windows
- true
- true
- true
-
-
-
-
-
-
-
-
-
-
- vulkan-1.lib
- ../../Common/Lib/Ext/Vulkan/1.0.68.0/Lib;../../Common/Lib/AMD/APPSDK/3-0/lib/x86_64;%(AdditionalLibraryDirectories)
-
-
-
-
- Level3
-
-
- MaxSpeed
- true
- true
- USE_SSE;USE_SSE2;WIN64;NDEBUG;_LIB;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES;
- ../Header/CMP_Math;../Header/CMP_Mesh;../Source/CMP_Mesh/JRT;$(DXSDK_DIR)Include;../../Common/Lib/Ext/DirectXTex/v132;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/Vulkan/1.0.21.1/SDK/Include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header;../Header/GPU_Decode/DirectXTex
- MultiThreadedDLL
- true
- ProgramDatabase
- $(OutDir)$(ProjectName)_MD_DLL.pdb
-
-
- Windows
- true
- true
- true
- ../GPU_DecodeLib.def
-
-
- %(AdditionalDependencies)
- ../../Common/Lib/AMD/APPSDK/3-0/lib/x86_64;%(AdditionalLibraryDirectories)
-
-
-
-
-
-
-
-
-
-
diff --git a/Compressonator/VS2015/CMP_MeshOptimizer.vcxproj b/Compressonator/VS2015/CMP_MeshOptimizer.vcxproj
index 3caa99456..566feb57f 100644
--- a/Compressonator/VS2015/CMP_MeshOptimizer.vcxproj
+++ b/Compressonator/VS2015/CMP_MeshOptimizer.vcxproj
@@ -1,22 +1,6 @@
-
- Debug_DLL
- Win32
-
-
- Debug_DLL
- x64
-
-
- Debug_MD_DLL
- Win32
-
-
- Debug_MD_DLL
- x64
-
Debug_MD
Win32
@@ -25,30 +9,6 @@
Debug_MD
x64
-
- Debug
- Win32
-
-
- Debug
- x64
-
-
- Release_DLL
- Win32
-
-
- Release_DLL
- x64
-
-
- Release_MD_DLL
- Win32
-
-
- Release_MD_DLL
- x64
-
Release_MD
Win32
@@ -57,14 +17,6 @@
Release_MD
x64
-
- Release
- Win32
-
-
- Release
- x64
-
@@ -89,20 +41,6 @@
CMP_MeshOptimizer
-
- StaticLibrary
- true
- MultiByte
- false
- v140
-
-
- DynamicLibrary
- true
- MultiByte
- false
- v140
-
StaticLibrary
true
@@ -110,27 +48,6 @@
false
v140
-
- DynamicLibrary
- true
- MultiByte
- false
- v140
-
-
- StaticLibrary
- true
- MultiByte
- false
- v140
-
-
- DynamicLibrary
- true
- MultiByte
- false
- v140
-
StaticLibrary
true
@@ -138,27 +55,6 @@
false
v140
-
- DynamicLibrary
- true
- MultiByte
- false
- v140
-
-
- StaticLibrary
- false
- false
- Unicode
- v140
-
-
- DynamicLibrary
- false
- false
- MultiByte
- v140
-
StaticLibrary
false
@@ -166,27 +62,6 @@
MultiByte
v140
-
- DynamicLibrary
- false
- false
- MultiByte
- v140
-
-
- StaticLibrary
- false
- false
- MultiByte
- v140
-
-
- DynamicLibrary
- false
- false
- MultiByte
- v140
-
StaticLibrary
false
@@ -194,219 +69,68 @@
MultiByte
v140
-
- DynamicLibrary
- false
- false
- MultiByte
- v140
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ../Build/VS2015/$(Configuration)/$(Platform)/
-
-
- ../Build/VS2015/$(Configuration)/$(Platform)/
-
../Build/VS2015/$(Configuration)/$(Platform)/
-
- ../Build/VS2015/$(Configuration)/$(Platform)/
-
-
- ../Build/VS2015/$(Configuration)/$(Platform)/
-
-
- ../Build/VS2015/$(Configuration)/$(Platform)/
-
../Build/VS2015/$(Configuration)/$(Platform)/
-
- ../Build/VS2015/$(Configuration)/$(Platform)/
-
-
- ../Build/VS2015/Temp/$(Configuration)/$(Platform)/$(ProjectName)/
-
-
- ../Build/VS2015/Temp/$(Configuration)/$(Platform)/$(ProjectName)/
-
../Build/VS2015/Temp/$(Configuration)/$(Platform)/$(ProjectName)/
-
- ../Build/VS2015/Temp/$(Configuration)/$(Platform)/$(ProjectName)/
-
-
- ../Build/VS2015/Temp/$(Configuration)/$(Platform)/$(ProjectName)/
-
-
- ../Build/VS2015/Temp/$(Configuration)/$(Platform)/$(ProjectName)/
-
../Build/VS2015/Temp/$(Configuration)/$(Platform)/$(ProjectName)/
-
- ../Build/VS2015/Temp/$(Configuration)/$(Platform)/$(ProjectName)/
-
-
- $(ProjectName)_MTd
-
-
- $(ProjectName)_MTd_DLL
-
$(ProjectName)_MDd
-
- $(ProjectName)_MDd_DLL
-
-
- $(ProjectName)_MTd
-
-
- $(ProjectName)_MTd_DLL
-
$(ProjectName)_MDd
-
- $(ProjectName)_MDd_DLL
-
-
- ../Build/VS2015/$(Configuration)/$(Platform)/
-
-
- ../Build/VS2015/$(Configuration)/$(Platform)/
-
../Build/VS2015/$(Configuration)/$(Platform)/
-
- ../Build/VS2015/$(Configuration)/$(Platform)/
-
-
- ../Build/VS2015/$(Configuration)/$(Platform)/
-
-
- ../Build/VS2015/$(Configuration)/$(Platform)/
-
../Build/VS2015/$(Configuration)/$(Platform)/
-
- ../Build/VS2015/$(Configuration)/$(Platform)/
-
-
- ../Build/VS2015/Temp/$(Configuration)/$(Platform)/$(ProjectName)/
-
-
- ../Build/VS2015/Temp/$(Configuration)/$(Platform)/$(ProjectName)/
-
../Build/VS2015/Temp/$(Configuration)/$(Platform)/$(ProjectName)/
-
- ../Build/VS2015/Temp/$(Configuration)/$(Platform)/$(ProjectName)/
-
-
- ../Build/VS2015/Temp/$(Configuration)/$(Platform)/$(ProjectName)/
-
-
- ../Build/VS2015/Temp/$(Configuration)/$(Platform)/$(ProjectName)/
-
../Build/VS2015/Temp/$(Configuration)/$(Platform)/$(ProjectName)/
-
- ../Build/VS2015/Temp/$(Configuration)/$(Platform)/$(ProjectName)/
-
-
- $(ProjectName)_MT
-
-
- $(ProjectName)_MT_DLL
-
$(ProjectName)_MD
-
- $(ProjectName)_MD_DLL
-
-
- $(ProjectName)_MT
-
-
- $(ProjectName)_MT_DLL
-
$(ProjectName)_MD
-
- $(ProjectName)_MD_DLL
-
-
+
Level4
Disabled
- USE_SSE;USE_SSE2;WIN32;VK_USE_PLATFORM_WIN32_KHR;_DEBUG;_LIB;HALF_NO_STD;_ITERATOR_DEBUG_LEVEL=2;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES;
- ../sources/CMP_MeshOptimizer/;../Header/CMP_Math;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/Vulkan/1.0.21.1/SDK/Include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header;../../Common/Lib/Ext/DirectXTex/v132
+ USE_SSE;USE_SSE2;WIN32;VK_USE_PLATFORM_WIN32_KHR;_DEBUG;_LIB;HALF_NO_STD;_ITERATOR_DEBUG_LEVEL=2;%(PreprocessorDefinitions)
+ ../sources/CMP_MeshOptimizer/;../Header/CMP_Math;../Applications/_Plugins/Common;../Header;../Header/GPU_Decode
true
- MultiThreadedDebug
+ MultiThreadedDebugDLL
false
@@ -431,34 +155,30 @@
-
-
- ../../Common/Lib/AMD/APPSDK/3-0/lib/x86;%(AdditionalLibraryDirectories)
+ vulkan-1.lib
+ $(VULKAN_SDK)/Lib32;../../Common/Lib/Ext/Vulkan/1.0.68.0/Lib32;../../Common/Lib/AMD/APPSDK/3-0/lib/x86;%(AdditionalLibraryDirectories)
-
+
Level4
Disabled
- USE_SSE;USE_SSE2;WIN32;VK_USE_PLATFORM_WIN32_KHR;_DEBUG;_LIB;HALF_NO_STD;_ITERATOR_DEBUG_LEVEL=2;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES;
- ../sources/CMP_MeshOptimizer/;../Header/CMP_Math;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/Vulkan/1.0.21.1/SDK/Include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header;../../Common/Lib/Ext/DirectXTex/v132
+ USE_SSE;USE_SSE2;_WIN64;VK_USE_PLATFORM_WIN32_KHR;_DEBUG;_LIB;HALF_NO_STD;_ITERATOR_DEBUG_LEVEL=2;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES
+ ../sources/CMP_MeshOptimizer/;../Header/CMP_Math;../../Common/Lib/Ext/DirectXTex/v132;../../Common/Lib/Ext/Vulkan/1.0.21.1/SDK/Include/;../../Common/Lib/Ext/DirectXTex/v132;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header
+ ProgramDatabase
true
- MultiThreadedDebug
+ MultiThreadedDebugDLL
+
+
false
+ /FS %(AdditionalOptions)
Windows
true
- ../GPU_DecodeLib.def
- %(AdditionalDependencies)
- ../../Common/Lib/AMD/APPSDK/3-0/lib/x86;%(AdditionalLibraryDirectories)
-
-
-
-
@@ -467,76 +187,80 @@
-
-
-
-
-
+ vulkan-1.lib
+ $(VULKAN_SDK)/Lib;../../Common/Lib/Ext/Vulkan/1.0.68.0/Lib;../../Common/Lib/AMD/APPSDK/3-0/lib/x86_64;%(AdditionalLibraryDirectories)
-
+
+ Level4
- Level4
- Disabled
- USE_SSE;USE_SSE2;WIN32;VK_USE_PLATFORM_WIN32_KHR;_DEBUG;_LIB;HALF_NO_STD;_ITERATOR_DEBUG_LEVEL=2;%(PreprocessorDefinitions)
- ../sources/CMP_MeshOptimizer/;../Header/CMP_Math;../Applications/_Plugins/Common;../Header;../Header/GPU_Decode
+ Full
+
+
+ false
+ USE_SSE;USE_SSE2;WIN32;VK_USE_PLATFORM_WIN32_KHR;NDEBUG;_LIB;HALF_NO_STD;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES;
+ ../sources/CMP_MeshOptimizer/;../Header/CMP_Math;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/Vulkan/1.0.68.0/Include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header;../../Common/Lib/Ext/DirectXTex/v132
+ MultiThreadedDLL
true
- MultiThreadedDebugDLL
- false
+ ProgramDatabase
+ $(OutDir)$(ProjectName)_MD.pdb
Windows
true
+ true
+ true
+
+
-
-
-
+
+
+
+
+
+
+
+
-
-
-
-
-
-
- %(AdditionalLibraryDirectories)
+ vulkan-1.lib
+ $(VULKAN_SDK)/Lib32;../../Common/Lib/Ext/Vulkan/1.0.68.0/Lib32;../../Common/Lib/AMD/APPSDK/3-0/lib/x86;%(AdditionalLibraryDirectories)
-
+
+ Level3
- Level4
- Disabled
- USE_SSE;USE_SSE2;WIN32;VK_USE_PLATFORM_WIN32_KHR;_DEBUG;_LIB;HALF_NO_STD;_ITERATOR_DEBUG_LEVEL=2;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES;
- ../sources/CMP_MeshOptimizer/;../Header/CMP_Math;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/Vulkan/1.0.21.1/SDK/Include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header;../../Common/Lib/Ext/DirectXTex/v132
+ MaxSpeed
+ true
+ true
+ USE_SSE;USE_SSE2;VK_USE_PLATFORM_WIN32_KHR;WIN64;NDEBUG;_LIB;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES
+ ../sources/CMP_MeshOptimizer/;../Header/CMP_Math;../../Common/Lib/Ext/DirectXTex/v132;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/Vulkan/1.0.68.0/Include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header
+ MultiThreadedDLL
true
- MultiThreadedDebugDLL
- false
+ ProgramDatabase
+ $(OutDir)$(ProjectName)_MD.pdb
+ /FS %(AdditionalOptions)
Windows
true
- ../GPU_DecodeLib.def
- %(AdditionalDependencies)
- ../../Common/Lib/AMD/APPSDK/3-0/lib/x86;%(AdditionalLibraryDirectories)
+ true
+ true
-
-
-
-
@@ -545,473 +269,11 @@
-
-
-
-
-
-
-
-
-
-
-
-
- Level4
- Disabled
- USE_SSE;USE_SSE2;WIN64;_DEBUG;_LIB;HALF_NO_STD;_ITERATOR_DEBUG_LEVEL=2;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES;
- ../sources/CMP_MeshOptimizer/;../Header/CMP_Math;../../Common/Lib/Ext/DirectXTex/v132;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/Vulkan/1.0.21.1/SDK/Include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header;../Header/GPU_Decode/DirectXTex
- ProgramDatabase
- true
- MultiThreadedDebug
-
-
- false
-
-
- Windows
- true
-
-
-
-
-
-
-
-
-
-
-
-
- ../../Common/Lib/AMD/APPSDK/3-0/lib/x86_64;%(AdditionalLibraryDirectories)
-
-
-
-
-
-
- Level4
- Disabled
- USE_SSE;USE_SSE2;WIN64;_DEBUG;_LIB;HALF_NO_STD;_ITERATOR_DEBUG_LEVEL=2;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES;
- ../sources/CMP_MeshOptimizer/;../Header/CMP_Math;../../Common/Lib/Ext/DirectXTex/v132;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/Vulkan/1.0.21.1/SDK/Include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header;../Header/GPU_Decode/DirectXTex
- ProgramDatabase
- true
- MultiThreadedDebug
-
-
- false
-
-
- Windows
- true
- ../GPU_DecodeLib.def
- %(AdditionalDependencies)
- ../../Common/Lib/AMD/APPSDK/3-0/lib/x86_64;%(AdditionalLibraryDirectories)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Level4
- Disabled
- USE_SSE;USE_SSE2;_WIN64;VK_USE_PLATFORM_WIN32_KHR;_DEBUG;_LIB;HALF_NO_STD;_ITERATOR_DEBUG_LEVEL=2;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES
- ../sources/CMP_MeshOptimizer/;../Header/CMP_Math;../../Common/Lib/Ext/DirectXTex/v132;../../Common/Lib/Ext/Vulkan/1.0.21.1/SDK/Include/;../../Common/Lib/Ext/DirectXTex/v132;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header
- ProgramDatabase
- true
- MultiThreadedDebugDLL
-
-
- false
- /FS %(AdditionalOptions)
-
-
- Windows
- true
-
-
-
-
-
-
-
-
-
-
- vulkan-1.lib
- ../../Common/Lib/Ext/Vulkan/1.0.21.1/SDK/Bin;../../Common/Lib/AMD/APPSDK/3-0/lib/x86_64;%(AdditionalLibraryDirectories)
-
-
-
-
-
-
- Level4
- Disabled
- USE_SSE;USE_SSE2;WIN64;_DEBUG;_LIB;HALF_NO_STD;_ITERATOR_DEBUG_LEVEL=2;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES;
- ../sources/CMP_MeshOptimizer/;../Header/CMP_Math;../../Common/Lib/Ext/DirectXTex/v132;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/Vulkan/1.0.21.1/SDK/Include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header;../Header/GPU_Decode/DirectXTex
- ProgramDatabase
- true
- MultiThreadedDebugDLL
-
-
- false
-
-
- Windows
- true
- ../GPU_DecodeLib.def
- %(AdditionalDependencies)
- ../../Common/Lib/AMD/APPSDK/3-0/lib/x86_64;%(AdditionalLibraryDirectories)
-
-
-
-
-
-
-
-
-
-
-
-
- Level4
-
-
- Full
-
-
- false
- USE_SSE;USE_SSE2;WIN32;VK_USE_PLATFORM_WIN32_KHR;NDEBUG;_LIB;HALF_NO_STD;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES;
- ../sources/CMP_MeshOptimizer/;../Header/CMP_Math;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/Vulkan/1.0.21.1/SDK/Include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header;../../Common/Lib/Ext/DirectXTex/v132
- MultiThreaded
- true
- ProgramDatabase
- $(OutDir)$(ProjectName)_MT.pdb
-
-
- Windows
- true
- true
- true
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- ../../Common/Lib/AMD/APPSDK/3-0/lib/x86;%(AdditionalLibraryDirectories)
-
-
-
-
- Level4
-
-
- Full
-
-
- false
- USE_SSE;USE_SSE2;WIN32;VK_USE_PLATFORM_WIN32_KHR;NDEBUG;_LIB;HALF_NO_STD;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES;
- ../sources/CMP_MeshOptimizer/;../Header/CMP_Math;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/Vulkan/1.0.21.1/SDK/Include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header;../../Common/Lib/Ext/DirectXTex/v132
- MultiThreaded
- true
- ProgramDatabase
- $(OutDir)$(ProjectName)_MT_DLL.pdb
-
-
- Windows
- true
- true
- true
- ../GPU_DecodeLib.def
-
-
- %(AdditionalDependencies)
- ../../Common/Lib/AMD/APPSDK/3-0/lib/x86;%(AdditionalLibraryDirectories)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Level4
-
-
- Full
-
-
- false
- USE_SSE;USE_SSE2;WIN32;VK_USE_PLATFORM_WIN32_KHR;NDEBUG;_LIB;HALF_NO_STD;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES;
- ../sources/CMP_MeshOptimizer/;../Header/CMP_Math;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/Vulkan/1.0.68.0/Include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header;../../Common/Lib/Ext/DirectXTex/v132
- MultiThreadedDLL
- true
- ProgramDatabase
- $(OutDir)$(ProjectName)_MD.pdb
-
-
- Windows
- true
- true
- true
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
vulkan-1.lib
- ../../Common/Lib/Ext/Vulkan/1.0.68.0/Lib32;../../Common/Lib/AMD/APPSDK/3-0/lib/x86;%(AdditionalLibraryDirectories)
+ $(VULKAN_SDK)/Lib;../../Common/Lib/Ext/Vulkan/1.0.68.0/Lib;../../Common/Lib/AMD/APPSDK/3-0/lib/x86_64;%(AdditionalLibraryDirectories)
-
-
- Level4
-
-
- Full
-
-
- false
- USE_SSE;USE_SSE2;WIN32;VK_USE_PLATFORM_WIN32_KHR;NDEBUG;_LIB;HALF_NO_STD;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES;
- ../sources/CMP_MeshOptimizer/;../Header/CMP_Math;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/Vulkan/1.0.21.1/SDK/Include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header;../../Common/Lib/Ext/DirectXTex/v132
- MultiThreadedDLL
- true
- ProgramDatabase
- $(OutDir)$(ProjectName)_MD_DLL.pdb
-
-
- Windows
- true
- true
- true
- ../GPU_DecodeLib.def
-
-
- %(AdditionalDependencies)
- ../../Common/Lib/AMD/APPSDK/3-0/lib/x86;%(AdditionalLibraryDirectories)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Level3
-
-
- MaxSpeed
- true
- true
- USE_SSE;USE_SSE2;WIN64;NDEBUG;_LIB;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES;
- ../sources/CMP_MeshOptimizer/;../Header/CMP_Math;../../Common/Lib/Ext/DirectXTex/v132;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/Vulkan/1.0.21.1/SDK/Include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header;../Header/GPU_Decode/DirectXTex
- MultiThreaded
- true
- ProgramDatabase
- $(OutDir)$(ProjectName)_MT.pdb
-
-
- Windows
- true
- true
- true
-
-
-
-
-
-
-
-
-
-
-
-
- ../../Common/Lib/AMD/APPSDK/3-0/lib/x86_64;%(AdditionalLibraryDirectories)
-
-
-
-
- Level3
-
-
- MaxSpeed
- true
- true
- USE_SSE;USE_SSE2;WIN64;NDEBUG;_LIB;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES;
- ../sources/CMP_MeshOptimizer/;../Header/CMP_Math;../../Common/Lib/Ext/DirectXTex/v132;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/Vulkan/1.0.21.1/SDK/Include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header;../Header/GPU_Decode/DirectXTex
- MultiThreaded
- true
- ProgramDatabase
- $(OutDir)$(ProjectName)_MT_DLL.pdb
-
-
- Windows
- true
- true
- true
- ../GPU_DecodeLib.def
-
-
- %(AdditionalDependencies)
- ../../Common/Lib/AMD/APPSDK/3-0/lib/x86_64;%(AdditionalLibraryDirectories)
-
-
-
-
-
-
-
-
-
-
-
-
- Level3
-
-
- MaxSpeed
- true
- true
- USE_SSE;USE_SSE2;VK_USE_PLATFORM_WIN32_KHR;WIN64;NDEBUG;_LIB;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES
- ../sources/CMP_MeshOptimizer/;../Header/CMP_Math;../../Common/Lib/Ext/DirectXTex/v132;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/Vulkan/1.0.68.0/Include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header
- MultiThreadedDLL
- true
- ProgramDatabase
- $(OutDir)$(ProjectName)_MD.pdb
- /FS %(AdditionalOptions)
-
-
- Windows
- true
- true
- true
-
-
-
-
-
-
-
-
-
-
- vulkan-1.lib
- ../../Common/Lib/Ext/Vulkan/1.0.68.0/Lib;../../Common/Lib/AMD/APPSDK/3-0/lib/x86_64;%(AdditionalLibraryDirectories)
-
-
-
-
- Level3
-
-
- MaxSpeed
- true
- true
- USE_SSE;USE_SSE2;WIN64;NDEBUG;_LIB;%(PreprocessorDefinitions);GL_GLEXT_PROTOTYPES;
- ../sources/CMP_MeshOptimizer/;../Header/CMP_Math;../../Common/Lib/Ext/DirectXTex/v132;../Applications/_Plugins/Common;../../Common/Lib/Ext/glew/1.9.0/include/;../../Common/Lib/Ext/Vulkan/1.0.21.1/SDK/Include/;../../Common/Lib/Ext/OpenGL/Include/GL;../Header/GPU_Decode;../Header;../Header/GPU_Decode/DirectXTex
- MultiThreadedDLL
- true
- ProgramDatabase
- $(OutDir)$(ProjectName)_MD_DLL.pdb
-
-
- Windows
- true
- true
- true
- ../GPU_DecodeLib.def
-
-
- %(AdditionalDependencies)
- ../../Common/Lib/AMD/APPSDK/3-0/lib/x86_64;%(AdditionalLibraryDirectories)
-
-
-
-
-
-
-
-
-
-