Decided to remove square from mC2+plugins.sln since both square and cube builds the mC2.lib.

Cleaned up some #include so compiler (or anyone else) does not get confused :)
This commit is contained in:
Daniel Önnerby 2008-05-22 18:07:59 +00:00
parent 747044a776
commit aed584b67d
43 changed files with 56 additions and 67 deletions

View File

@ -32,11 +32,6 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "oggdecoder", "src\contrib\o
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Plugins", "Plugins", "{092264AD-38B7-401D-8E67-B56756A141E4}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "square", "src\square\player.vcproj", "{C7102EB1-7311-4B36-A7FF-89DD7F077FF9}"
ProjectSection(ProjectDependencies) = postProject
{B2165720-B4B2-4F4B-9634-8C390C3CB4DB} = {B2165720-B4B2-4F4B-9634-8C390C3CB4DB}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "waveout", "src\contrib\waveout\waveout.vcproj", "{4F10C17A-8AF7-4FAC-A4E2-087AE6E8F9D8}"
EndProject
Global
@ -85,10 +80,6 @@ Global
{292974B0-C8B7-41EF-B603-554A2B25CB90}.Debug|Win32.Build.0 = Debug|Win32
{292974B0-C8B7-41EF-B603-554A2B25CB90}.Release|Win32.ActiveCfg = Release|Win32
{292974B0-C8B7-41EF-B603-554A2B25CB90}.Release|Win32.Build.0 = Release|Win32
{C7102EB1-7311-4B36-A7FF-89DD7F077FF9}.Debug|Win32.ActiveCfg = Debug|Win32
{C7102EB1-7311-4B36-A7FF-89DD7F077FF9}.Debug|Win32.Build.0 = Debug|Win32
{C7102EB1-7311-4B36-A7FF-89DD7F077FF9}.Release|Win32.ActiveCfg = Release|Win32
{C7102EB1-7311-4B36-A7FF-89DD7F077FF9}.Release|Win32.Build.0 = Release|Win32
{4F10C17A-8AF7-4FAC-A4E2-087AE6E8F9D8}.Debug|Win32.ActiveCfg = Debug|Win32
{4F10C17A-8AF7-4FAC-A4E2-087AE6E8F9D8}.Debug|Win32.Build.0 = Debug|Win32
{4F10C17A-8AF7-4FAC-A4E2-087AE6E8F9D8}.Release|Win32.ActiveCfg = Release|Win32

View File

@ -102,8 +102,8 @@
<Tool
Name="VCCLCompilerTool"
Optimization="2"
InlineFunctionExpansion="2"
FavorSizeOrSpeed="1"
InlineFunctionExpansion="0"
FavorSizeOrSpeed="0"
AdditionalIncludeDirectories="./include/;./include/sqlite/"
PreprocessorDefinitions="WIN32;_CRT_SECURE_NO_DEPRECATE;SQLITE_THREADSAFE"
RuntimeLibrary="0"

View File

@ -34,8 +34,8 @@
//
//////////////////////////////////////////////////////////////////////////////
#include "pch.hpp"
#include "LibraryFactory.h"
#include "Library/LocalDB.h"
#include <core/LibraryFactory.h>
#include <Library/LocalDB.h>
using namespace musik::core;

View File

@ -31,8 +31,8 @@
//
//////////////////////////////////////////////////////////////////////////////
#include "pch.hpp"
#include "core/PlaybackQueue.h"
#include "core/LibraryFactory.h"
#include <core/PlaybackQueue.h>
#include <core/LibraryFactory.h>
#include <boost/algorithm/string.hpp>

View File

@ -35,7 +35,7 @@
//////////////////////////////////////////////////////////////////////////////
#include "pch.hpp"
#include "Preferences.h"
#include <core/Preferences.h>
#include <core/Common.h>
#include <core/db/CachedStatement.h>

View File

@ -33,7 +33,7 @@
#include "pch.hpp"
#include "Transport.h"
#include <core/audio/Transport.h>
#include <core/PluginFactory.h>

View File

@ -104,8 +104,8 @@
<Tool
Name="VCCLCompilerTool"
Optimization="2"
InlineFunctionExpansion="2"
FavorSizeOrSpeed="1"
InlineFunctionExpansion="0"
FavorSizeOrSpeed="0"
AdditionalIncludeDirectories="./;../;../3rdparty/include/"
PreprocessorDefinitions="BOOST_ALL_NO_LIB;WIN32;_CRT_SECURE_NO_DEPRECATE"
RuntimeLibrary="0"

View File

@ -37,9 +37,9 @@
#pragma once
#include "pch.hpp"
#include "core/db/CachedStatement.h"
#include "core/db/Statement.h"
#include "core/db/Connection.h"
#include <core/db/CachedStatement.h>
#include <core/db/Statement.h>
#include <core/db/Connection.h>
using namespace musik::core::db;

View File

@ -36,8 +36,8 @@
#pragma once
#include "core/config.h"
#include "core/db/Statement.h"
#include <core/config.h>
#include <core/db/Statement.h>
namespace musik{ namespace core{ namespace db{

View File

@ -35,7 +35,7 @@
//////////////////////////////////////////////////////////////////////////////
#include "pch.hpp"
#include "core/db/Connection.h"
#include <core/db/Connection.h>
#include <boost/lexical_cast.hpp>
using namespace musik::core::db;

View File

@ -36,10 +36,10 @@
#pragma once
#include "core/config.h"
#include "core/db/dbconfig.h"
#include "core/db/Statement.h"
#include "core/db/ScopedTransaction.h"
#include <core/config.h>
#include <core/db/dbconfig.h>
#include <core/db/Statement.h>
#include <core/db/ScopedTransaction.h>
#include <map>
#include <boost/utility.hpp>

View File

@ -35,8 +35,8 @@
//////////////////////////////////////////////////////////////////////////////
#include "pch.hpp"
#include "core/db/ScopedTransaction.h"
#include "core/db/Connection.h"
#include <core/db/ScopedTransaction.h>
#include <core/db/Connection.h>
using namespace musik::core::db;

View File

@ -36,7 +36,7 @@
#pragma once
#include "core/config.h"
#include <core/config.h>
#include <map>
#include <boost/utility.hpp>
#include <boost/shared_ptr.hpp>

View File

@ -37,8 +37,8 @@
#pragma once
#include "pch.hpp"
#include "core/db/Statement.h"
#include "core/db/Connection.h"
#include <core/db/Statement.h>
#include <core/db/Connection.h>
using namespace musik::core::db;

View File

@ -36,7 +36,7 @@
#pragma once
#include "core/config.h"
#include <core/config.h>
#include <map>
#include <boost/utility.hpp>
#include <boost/shared_ptr.hpp>
@ -90,5 +90,5 @@ namespace musik{ namespace core{ namespace db{
} } }
#include "core/db/CachedStatement.h"
#include <core/db/CachedStatement.h>

View File

@ -41,9 +41,7 @@
#include "config.h"
#include <boost/asio.hpp>
#include <core/config.h>
#include <stdio.h>
#include <cstdlib>
@ -66,5 +64,5 @@
#include <string>
#include <sigslot/sigslot.h>
#include "vld/vld.h"
#include <vld/vld.h>

View File

@ -36,7 +36,7 @@
#pragma once
#include "core/tracklist/IBase.h"
#include <core/tracklist/IBase.h>
#include <core/Library/Base.h>
#include <boost/shared_ptr.hpp>

View File

@ -35,7 +35,7 @@
//////////////////////////////////////////////////////////////////////////////
#include "pch.hpp"
#include "core/tracklist/Standard.h"
#include <core/tracklist/Standard.h>
using namespace musik::core::tracklist;

View File

@ -36,7 +36,7 @@
//
//////////////////////////////////////////////////////////////////////////////
#include <pch.hpp>
#include "pch.hpp"
#include <cube/BrowseController.hpp>
#include <core/LibraryFactory.h>

View File

@ -36,7 +36,7 @@
//
//////////////////////////////////////////////////////////////////////////////
#include <pch.hpp>
#include "pch.hpp"
#include <cube/BrowseView.hpp>
//////////////////////////////////////////////////////////////////////////////

View File

@ -36,7 +36,7 @@
//
//////////////////////////////////////////////////////////////////////////////
#include <pch.hpp>
#include "pch.hpp"
#include <cube/MainMenuController.hpp>
//////////////////////////////////////////////////////////////////////////////

View File

@ -36,7 +36,7 @@
//
//////////////////////////////////////////////////////////////////////////////
#include <pch.hpp>
#include "pch.hpp"
#include <cube/MainWindowController.hpp>
#include <cube/TransportView.hpp>
#include <cube/TracklistView.hpp>

View File

@ -36,7 +36,7 @@
//
//////////////////////////////////////////////////////////////////////////////
#include <pch.hpp>
#include "pch.hpp"
#include <cube/MetadataFilterController.hpp>
#include <cube/MetadataFilterModel.hpp>
#include <cube/BrowseController.hpp>

View File

@ -40,7 +40,7 @@
//////////////////////////////////////////////////////////////////////////////
#include <pch.hpp>
#include "pch.hpp"
#include <win32cpp/Utility.hpp>

View File

@ -36,7 +36,7 @@
//
//////////////////////////////////////////////////////////////////////////////
#include <pch.hpp>
#include "pch.hpp"
#include <cube/SettingsController.hpp>
#include <core/LibraryFactory.h>
#include <core/Indexer.h>

View File

@ -36,7 +36,7 @@
//
//////////////////////////////////////////////////////////////////////////////
#include <pch.hpp>
#include "pch.hpp"
#include <cube/SettingsView.hpp>
//////////////////////////////////////////////////////////////////////////////

View File

@ -40,7 +40,7 @@
//////////////////////////////////////////////////////////////////////////////
#include <pch.hpp>
#include "pch.hpp"
#include <cube/SourcesCategory.hpp>
using namespace musik::cube;

View File

@ -40,7 +40,7 @@
//////////////////////////////////////////////////////////////////////////////
#include <pch.hpp>
#include "pch.hpp"
#include <cube/SourcesItem.hpp>

View File

@ -35,7 +35,7 @@
//
//////////////////////////////////////////////////////////////////////////////
#include <pch.hpp>
#include "pch.hpp"
#include <cube/SourcesListModel.hpp>
#include <cube/SourcesController.hpp>

View File

@ -40,7 +40,7 @@
//////////////////////////////////////////////////////////////////////////////
#include <pch.hpp>
#include "pch.hpp"
#include <cube/SourcesItem.hpp>
using namespace musik::cube;

View File

@ -40,7 +40,7 @@
//////////////////////////////////////////////////////////////////////////////
#include <pch.hpp>
#include "pch.hpp"
//////////////////////////////////////////////////////////////////////////////

View File

@ -40,7 +40,7 @@
//////////////////////////////////////////////////////////////////////////////
#include <pch.hpp>
#include "pch.hpp"
#include <cube/SourcesListModel.hpp>
using namespace musik::cube;

View File

@ -40,7 +40,7 @@
//////////////////////////////////////////////////////////////////////////////
#include <pch.hpp>
#include "pch.hpp"
#include <cube/SourcesModel.hpp>
#include <core/PlaybackQueue.h>

View File

@ -36,7 +36,7 @@
//
//////////////////////////////////////////////////////////////////////////////
#include <pch.hpp>
#include "pch.hpp"
#include <cube/SourcesView.hpp>
#include <cube/BrowseView.hpp>

View File

@ -36,7 +36,7 @@
//
//////////////////////////////////////////////////////////////////////////////
#include <pch.hpp>
#include "pch.hpp"
#include <cube/TracklistController.hpp>
#include <cube/TracklistModel.hpp>
#include <cube/TracklistColumn.hpp>

View File

@ -36,7 +36,7 @@
//
//////////////////////////////////////////////////////////////////////////////
#include <pch.hpp>
#include "pch.hpp"
#include <cube/TracklistInfoView.hpp>
//////////////////////////////////////////////////////////////////////////////

View File

@ -40,7 +40,7 @@
//////////////////////////////////////////////////////////////////////////////
#include <pch.hpp>
#include "pch.hpp"
#include <win32cpp/Utility.hpp>

View File

@ -36,7 +36,7 @@
//
//////////////////////////////////////////////////////////////////////////////
#include <pch.hpp>
#include "pch.hpp"
#include <cube/TracklistView.hpp>
//////////////////////////////////////////////////////////////////////////////

View File

@ -36,7 +36,7 @@
//
//////////////////////////////////////////////////////////////////////////////
#include <pch.hpp>
#include "pch.hpp"
#include <boost/format.hpp>

View File

@ -36,7 +36,7 @@
//
//////////////////////////////////////////////////////////////////////////////
#include <pch.hpp>
#include "pch.hpp"
#include <cube/TransportView.hpp>
//////////////////////////////////////////////////////////////////////////////

View File

@ -36,7 +36,7 @@
//
//////////////////////////////////////////////////////////////////////////////
#include <pch.hpp>
#include "pch.hpp"
#include <cube/MainWindowController.hpp>
//////////////////////////////////////////////////////////////////////////////

View File

@ -36,7 +36,7 @@
//
//////////////////////////////////////////////////////////////////////////////
#include <pch.hpp>
#include "pch.hpp"
#include <cube/settings/SyncPathController.hpp>
#include <cube/settings/SyncPathModel.hpp>
#include <cube/SettingsController.hpp>

View File

@ -36,7 +36,7 @@
//
//////////////////////////////////////////////////////////////////////////////
#include <pch.hpp>
#include "pch.hpp"
#include <win32cpp/ApplicationThread.hpp>
#include <cube/settings/SyncPathModel.hpp>
#include <core/Indexer.h>