From 25745758aa875de4b4e4d6401441b8318ef5365d Mon Sep 17 00:00:00 2001 From: John Emmas Date: Mon, 24 Nov 2014 12:51:54 +0000 Subject: [PATCH] Changes needed to accommodate building libevoral with MSVC Note that class 'MusicalTime' needn't be exportable (with a little work, this could be reverted if it affects the other builds) --- libs/evoral/MSVCevoral/evoral.vcproj | 13 +++- libs/evoral/evoral/types.hpp | 8 +- libs/evoral/src/Note.cpp | 2 + libs/evoral/src/Note.impl | 112 --------------------------- 4 files changed, 15 insertions(+), 120 deletions(-) delete mode 100644 libs/evoral/src/Note.impl diff --git a/libs/evoral/MSVCevoral/evoral.vcproj b/libs/evoral/MSVCevoral/evoral.vcproj index 681aea6de8..41ebb20390 100644 --- a/libs/evoral/MSVCevoral/evoral.vcproj +++ b/libs/evoral/MSVCevoral/evoral.vcproj @@ -181,6 +181,7 @@ > - - @@ -302,6 +299,14 @@ RelativePath="..\src\SMF.cpp" > + + + + diff --git a/libs/evoral/evoral/types.hpp b/libs/evoral/evoral/types.hpp index 719007abe5..14ba36acdf 100644 --- a/libs/evoral/evoral/types.hpp +++ b/libs/evoral/evoral/types.hpp @@ -39,9 +39,9 @@ namespace Evoral { typedef int32_t event_id_t; /** Musical time: beats relative to some defined origin */ -class LIBEVORAL_API MusicalTime { +class /*LIBEVORAL_API*/ MusicalTime { public: - static const double PPQN; + LIBEVORAL_API static const double PPQN; MusicalTime() : _time(0.0) {} @@ -207,8 +207,8 @@ private: double _time; }; -extern const MusicalTime MaxMusicalTime; -extern const MusicalTime MinMusicalTime; +extern LIBEVORAL_API const MusicalTime MaxMusicalTime; +extern LIBEVORAL_API const MusicalTime MinMusicalTime; /** Type of an event (opaque, mapped by application) */ typedef uint32_t EventType; diff --git a/libs/evoral/src/Note.cpp b/libs/evoral/src/Note.cpp index 918727ef50..93c0a90478 100644 --- a/libs/evoral/src/Note.cpp +++ b/libs/evoral/src/Note.cpp @@ -19,7 +19,9 @@ #include #include #include +#ifndef COMPILER_MSVC #include "evoral/Note.hpp" +#endif namespace Evoral { diff --git a/libs/evoral/src/Note.impl b/libs/evoral/src/Note.impl deleted file mode 100644 index d63e31a831..0000000000 --- a/libs/evoral/src/Note.impl +++ /dev/null @@ -1,112 +0,0 @@ -/* This file is part of Evoral. - * Copyright (C) 2008 David Robillard - * Copyright (C) 2000-2008 Paul Davis - * - * Evoral is free software; you can redistribute it and/or modify it under the - * terms of the GNU General Public License as published by the Free Software - * Foundation; either version 2 of the License, or (at your option) any later - * version. - * - * Evoral is distributed in the hope that it will be useful, but WITHOUT ANY - * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS - * FOR A PARTICULAR PURPOSE. See the GNU General Public License for details. - * - * You should have received a copy of the GNU General Public License along - * with this program; if not, write to the Free Software Foundation, Inc., - * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - */ - -#include -#include -#include -// Commented out by JE - 23-10-2013 #include "evoral/Note.hpp" - -namespace Evoral { - -template -Note