Fixed Windows compile.

This commit is contained in:
casey langen 2018-05-03 21:33:44 -07:00
parent 016176103c
commit 0e9bfbaccc
6 changed files with 9 additions and 6 deletions

View File

@ -142,6 +142,7 @@
<ClCompile Include="runtime\MessageQueue.cpp" />
<ClCompile Include="support\Common.cpp" />
<ClCompile Include="support\Duration.cpp" />
<ClCompile Include="support\LastFm.cpp" />
<ClCompile Include="support\Playback.cpp" />
<ClCompile Include="support\PreferenceKeys.cpp" />
<ClCompile Include="support\Preferences.cpp" />
@ -246,6 +247,7 @@
<ClInclude Include="sdk\IVisualizer.h" />
<ClInclude Include="support\Common.h" />
<ClInclude Include="support\Duration.h" />
<ClInclude Include="support\LastFm.h" />
<ClInclude Include="support\Messages.h" />
<ClInclude Include="support\Playback.h" />
<ClInclude Include="support\PreferenceKeys.h" />

View File

@ -223,6 +223,9 @@
<ClCompile Include="library\query\local\PersistedPlayQueueQuery.cpp">
<Filter>src\library\query\local</Filter>
</ClCompile>
<ClCompile Include="support\LastFm.cpp">
<Filter>src\support</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="pch.hpp">
@ -537,5 +540,8 @@
<ClInclude Include="io\HttpClient.h">
<Filter>src\io</Filter>
</ClInclude>
<ClInclude Include="support\LastFm.h">
<Filter>src\support</Filter>
</ClInclude>
</ItemGroup>
</Project>

View File

@ -32,7 +32,7 @@
//
//////////////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "pch.hpp"
#include "LastFm.h"
#include <curl/curl.h>
#include <openssl/md5.h>

View File

@ -34,7 +34,6 @@
#pragma once
#include "stdafx.h"
#include <core/library/track/Track.h>
namespace musik { namespace core { namespace lastfm {

View File

@ -166,7 +166,6 @@ xcopy "$(SolutionDir)src\3rdparty\bin\win32\font\*.ttf" "$(TargetDir)fonts\" /Y
<ClCompile Include="app\overlay\VisualizerOverlay.cpp" />
<ClCompile Include="app\util\GlobalHotkeys.cpp" />
<ClCompile Include="app\util\Hotkeys.cpp" />
<ClCompile Include="app\util\LastFm.cpp" />
<ClCompile Include="app\util\Playback.cpp" />
<ClCompile Include="app\util\PreferenceKeys.cpp" />
<ClCompile Include="app\util\UpdateCheck.cpp" />

View File

@ -156,9 +156,6 @@
<ClCompile Include="app\layout\CategorySearchLayout.cpp">
<Filter>app\layout</Filter>
</ClCompile>
<ClCompile Include="app\util\LastFm.cpp">
<Filter>app\util</Filter>
</ClCompile>
<ClCompile Include="app\overlay\LastFmOverlay.cpp">
<Filter>app\overlay</Filter>
</ClCompile>