Fix building GUI with Visual Studio.
This commit is contained in:
parent
adb1ed4947
commit
3f3b1279da
|
@ -163,6 +163,17 @@ void FileLister::RecursiveAddFiles(std::vector<std::string> &filenames, const st
|
|||
|
||||
#endif
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
////// This code is for Visual C++ and Qt ///////////////////////////
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
#if defined(_MSC_VER) && defined(QT_CORE_LIB)
|
||||
void FileLister::RecursiveAddFiles(std::vector<std::string> &filenames, const std::string &path, bool recursive)
|
||||
{
|
||||
//This method is not used by Qt build
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
////// This code is for Borland C++ and Visual C++ ////////////////////////////
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
|
Loading…
Reference in New Issue