mirror of
https://github.com/overte-org/overte.git
synced 2025-04-14 07:27:04 +02:00
Fix PR builds
This commit is contained in:
parent
72e02d6207
commit
fe9b1de908
1 changed files with 5 additions and 1 deletions
|
@ -53,9 +53,13 @@ void stripKtxKeyValues(const std::string& sourceFile, const std::string& destFil
|
||||||
ktx::KTX::write(destStorage.mutableData(), newStorageSize, ktx->_header, ktx->_images);
|
ktx::KTX::write(destStorage.mutableData(), newStorageSize, ktx->_header, ktx->_images);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if DEV_BUILD
|
||||||
const QDir SOURCE_FOLDER{ PathUtils::projectRootPath() + "/interface/resources/meshes/mannequin" };
|
const QDir SOURCE_FOLDER{ PathUtils::projectRootPath() + "/interface/resources/meshes/mannequin" };
|
||||||
const QDir DEST_FOLDER{ PathUtils::projectRootPath() + "/interface/resources/meshes/mannequin/+gles" };
|
const QDir DEST_FOLDER{ PathUtils::projectRootPath() + "/interface/resources/meshes/mannequin/+gles" };
|
||||||
|
#else
|
||||||
|
const QDir SOURCE_FOLDER{ PathUtils::resourcesPath() + "/interface/resources/meshes/mannequin" };
|
||||||
|
const QDir DEST_FOLDER{ PathUtils::resourcesPath() + "/interface/resources/meshes/mannequin/+gles" };
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
void messageHandler(QtMsgType type, const QMessageLogContext& context, const QString& message) {
|
void messageHandler(QtMsgType type, const QMessageLogContext& context, const QString& message) {
|
||||||
|
|
Loading…
Reference in a new issue