cmake: remove recursive call, even if it breaks merged builds with GCC, fix linker error on win32

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@34283 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Peter Kümmel 2010-04-23 13:20:28 +00:00
parent f305881a0f
commit 7f09a8b58b

View File

@ -21,12 +21,12 @@
#include <QLineEdit>
#include <QPushButton>
#ifdef LYX_MERGED_BUILD
#if defined(LYX_MERGED_BUILD) && !defined(Q_CC_MSVC)
// GCC couldn't find operator==
namespace lyx {
bool operator==(lyx::docstring & d, char const * c);
bool operator==(lyx::docstring const & d, char const * c);
namespace frontend {
bool operator==(lyx::docstring & d, char const * c)
bool operator==(lyx::docstring const & d, char const * c)
{ return lyx::operator ==(d, c); }
}
}