Skip to content

Commit

Permalink
update version file
Browse files Browse the repository at this point in the history
  • Loading branch information
jared2020 committed Dec 18, 2019
1 parent 9a46609 commit b31ed09
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 7 deletions.
Binary file modified src/TaoQuickApp/App.rc
Binary file not shown.
6 changes: 5 additions & 1 deletion src/TaoQuickApp/Src/TaoView.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
#include "TaoView.h"
#include "Logger/Logger.h"
#include "Ver.h"
#ifdef VER_Utf16
#include "Ver-u16.h"
#else
#include "Ver-u8.h"
#endif

#include <QTranslator>
#include <QQmlEngine>
Expand Down
14 changes: 8 additions & 6 deletions src/TaoQuickApp/TaoQuickApp.pri
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
msvc {
HEADERS += $$PWD/Ver-u16.h
DEFINES += VER_Utf16
} else {
HEADERS += $$PWD/Ver-u8.h
}

HEADERS += \
$$PWD/Src/ITaoQuickPlugin.h \
$$PWD/Src/Logger/Logger.h \
$$PWD/Src/Logger/LoggerTemplate.h \
$$PWD/Src/TaoView.h

msvc {
HEADERS += $$PWD/Ver.h
}
!msvc {
HEADERS += $$PWD/Ver-u8.h
}

SOURCES += \
$$PWD/Src/Logger/Logger.cpp \
$$PWD/Src/TaoView.cpp \
Expand Down
File renamed without changes.

0 comments on commit b31ed09

Please sign in to comment.