Skip to content

Commit

Permalink
fix: correct windows build depends path
Browse files Browse the repository at this point in the history
Change-Id: If4c37fff25c45b5e997f1cb316422bf28bc75cd0
  • Loading branch information
Iceyer committed Sep 14, 2017
1 parent fcbab6f commit 2c63323
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/app/app.pro
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ TEMPLATE = app

TARGET = deepin-boot-maker

QT += core gui widgets concurrent network
QT += core gui widgets concurrent network svg

CONFIG += c++11

Expand Down
1 change: 0 additions & 1 deletion src/app/view/usbselectview.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
#include "widgetutil.h"
#include "deviceinfoitem.h"
#include "devicelistwidget.h"
#include "dwaterprogress.h"

#include <bminterface.h>

Expand Down
6 changes: 3 additions & 3 deletions src/vendor/env.pri
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ DEFINES += STATIC_LIB
INCLUDEPATH += $$PWD

# Deepin tool kit
DTK_INCLUDE = D:\Develop\Library\include\libdtk-1.2
DTK_DEPEND = D:\Develop\Library\include\libdtk-1.2
DTK_LIBRARY = D:\Develop\Library\lib
DTK_INCLUDE = $${INCLUDE_INSTALL_DIR}\libdtk-2.0
DTK_DEPEND = $${INCLUDE_INSTALL_DIR}\libdtk-2.0
DTK_LIBRARY = $${LIB_INSTALL_DIR}
}

NO_BOOTLOADER=FALSE
Expand Down
11 changes: 8 additions & 3 deletions src/vendor/src/libxsys/libxsys.pro
Original file line number Diff line number Diff line change
Expand Up @@ -12,21 +12,26 @@ CONFIG += staticlib

DEFINES += QT_MESSAGELOGCONTEXT

SOURCES += DiskUtil/DiskUtil.cpp \
SOURCES += \
DiskUtil/DiskUtil.cpp \
Common/Result.cpp \
Cmd/Cmd.cpp \
FileSystem/FileSystem.cpp \
DiskUtil/Syslinux.cpp

HEADERS += XSys \
HEADERS += \
XSys \
DiskUtil/DiskUtil.h \
Common/Result.h \
Cmd/Cmd.h \
FileSystem/FileSystem.h \
DiskUtil/Syslinux.h

unix {
target.path = /usr/lib
isEmpty(PREFIX){
PREFIX = /usr
}
target.path = $${PREFIX}/lib/
}


0 comments on commit 2c63323

Please sign in to comment.