QtBiomeVisualiser: Fixed MSVC path-crossing.
MSVC would occasionally compile the wrong CPP file - the same name, but wrong path.
This commit is contained in:
parent
8d9dfc5d1a
commit
34b83656b3
@ -1,6 +1,6 @@
|
|||||||
#include "Globals.h"
|
#include "Globals.h"
|
||||||
#include "BiomeView.h"
|
#include "BiomeView.h"
|
||||||
#include "Chunk.h"
|
#include "QtChunk.h"
|
||||||
#include <QPainter>
|
#include <QPainter>
|
||||||
#include <QResizeEvent>
|
#include <QResizeEvent>
|
||||||
|
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
#include "ChunkSource.h"
|
#include "ChunkSource.h"
|
||||||
#include <QThread>
|
#include <QThread>
|
||||||
#include "src/Generating/BioGen.h"
|
#include "src/Generating/BioGen.h"
|
||||||
#include "inifile/iniFile.h"
|
|
||||||
#include "src/StringCompression.h"
|
#include "src/StringCompression.h"
|
||||||
#include "src/WorldStorage/FastNBT.h"
|
#include "src/WorldStorage/FastNBT.h"
|
||||||
|
#include "inifile/iniFile.h"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
#include "Globals.h"
|
#include "Globals.h"
|
||||||
#include <QString>
|
#include <QString>
|
||||||
#include <QMutex>
|
#include <QMutex>
|
||||||
#include "Chunk.h"
|
#include "QtChunk.h"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -12,7 +12,7 @@ TARGET = QtBiomeVisualiser
|
|||||||
TEMPLATE = app
|
TEMPLATE = app
|
||||||
|
|
||||||
|
|
||||||
SOURCES += main.cpp\
|
SOURCES +=\
|
||||||
MainWindow.cpp \
|
MainWindow.cpp \
|
||||||
BiomeView.cpp \
|
BiomeView.cpp \
|
||||||
../../src/Generating/BioGen.cpp \
|
../../src/Generating/BioGen.cpp \
|
||||||
@ -27,7 +27,6 @@ SOURCES += main.cpp\
|
|||||||
../../src/OSSupport/IsThread.cpp \
|
../../src/OSSupport/IsThread.cpp \
|
||||||
../../src/BiomeDef.cpp \
|
../../src/BiomeDef.cpp \
|
||||||
ChunkCache.cpp \
|
ChunkCache.cpp \
|
||||||
Chunk.cpp \
|
|
||||||
ChunkSource.cpp \
|
ChunkSource.cpp \
|
||||||
ChunkLoader.cpp \
|
ChunkLoader.cpp \
|
||||||
../../src/StringCompression.cpp \
|
../../src/StringCompression.cpp \
|
||||||
@ -47,7 +46,9 @@ SOURCES += main.cpp\
|
|||||||
../../lib/zlib/trees.c \
|
../../lib/zlib/trees.c \
|
||||||
../../lib/zlib/uncompr.c \
|
../../lib/zlib/uncompr.c \
|
||||||
../../lib/zlib/zutil.c \
|
../../lib/zlib/zutil.c \
|
||||||
GeneratorSetup.cpp
|
GeneratorSetup.cpp \
|
||||||
|
QtBiomeVisualiser.cpp \
|
||||||
|
QtChunk.cpp
|
||||||
|
|
||||||
HEADERS += MainWindow.h \
|
HEADERS += MainWindow.h \
|
||||||
Globals.h \
|
Globals.h \
|
||||||
@ -64,7 +65,6 @@ HEADERS += MainWindow.h \
|
|||||||
../../src/OSSupport/IsThread.h \
|
../../src/OSSupport/IsThread.h \
|
||||||
../../src/BiomeDef.h \
|
../../src/BiomeDef.h \
|
||||||
ChunkCache.h \
|
ChunkCache.h \
|
||||||
Chunk.h \
|
|
||||||
ChunkSource.h \
|
ChunkSource.h \
|
||||||
ChunkLoader.h \
|
ChunkLoader.h \
|
||||||
../../src/StringCompression.h \
|
../../src/StringCompression.h \
|
||||||
@ -80,13 +80,19 @@ HEADERS += MainWindow.h \
|
|||||||
../../lib/zlib/zconf.h \
|
../../lib/zlib/zconf.h \
|
||||||
../../lib/zlib/zlib.h \
|
../../lib/zlib/zlib.h \
|
||||||
../../lib/zlib/zutil.h \
|
../../lib/zlib/zutil.h \
|
||||||
GeneratorSetup.h
|
GeneratorSetup.h \
|
||||||
|
QtChunk.h
|
||||||
|
|
||||||
INCLUDEPATH += $$_PRO_FILE_PWD_ \
|
INCLUDEPATH += $$_PRO_FILE_PWD_ \
|
||||||
$$_PRO_FILE_PWD_/../../lib \
|
$$_PRO_FILE_PWD_/../../lib \
|
||||||
|
$$_PRO_FILE_PWD_/../../lib/jsoncpp/include \
|
||||||
|
$$_PRO_FILE_PWD_/../../lib/polarssl/include \
|
||||||
|
$$_PRO_FILE_PWD_/../../lib/sqlite \
|
||||||
|
$$_PRO_FILE_PWD_/../../lib/SQLiteCpp/include \
|
||||||
$$_PRO_FILE_PWD_/../../
|
$$_PRO_FILE_PWD_/../../
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
CONFIG += C++11
|
CONFIG += C++11
|
||||||
|
|
||||||
OTHER_FILES +=
|
OTHER_FILES +=
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
#include "Globals.h"
|
#include "Globals.h"
|
||||||
#include "Globals.h"
|
#include "QtChunk.h"
|
||||||
#include "Chunk.h"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user