Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
onlyoffice_core
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boris Kocherov
onlyoffice_core
Commits
970596d4
Commit
970596d4
authored
Oct 05, 2016
by
ElenaSubbotina
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
x2t fix linux path build
parent
31e1ed6a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
5 deletions
+12
-5
Common/base.pri
Common/base.pri
+5
-3
X2tConverter/build/Qt/X2tConverter.pro
X2tConverter/build/Qt/X2tConverter.pro
+7
-2
No files found.
Common/base.pri
View file @
970596d4
...
...
@@ -18,12 +18,14 @@ win32:!contains(QMAKE_TARGET.arch, x86_64): {
}
linux-g++ | linux-g++-64 | linux-g++-32 {
message("linux")
CONFIG += core_linux
}
linux-g++:contains(QMAKE_HOST.arch, x86_64): {
linux-g++-64 {
message("linux-64")
CONFIG += core_linux_64
}
linux-g++:!contains(QMAKE_HOST.arch, x86_64): {
}
else {
message("linux-32")
CONFIG += core_linux_32
}
...
...
X2tConverter/build/Qt/X2tConverter.pro
View file @
970596d4
...
...
@@ -115,8 +115,13 @@ DESTDIR = $$PWD/../../../build/bin
core_windows
{
DESTDIR
=
$$
DESTDIR
/
windows
}
core_linux
{
DESTDIR
=
$$
DESTDIR
/
linux
core_linux_64
{
message
(
"x2t linux 64 build"
)
DESTDIR
=
$$
DESTDIR
/
linux_64
}
core_linux_32
{
message
(
"x2t linux 32 build"
)
DESTDIR
=
$$
DESTDIR
/
linux_32
}
core_mac
{
DESTDIR
=
$$
DESTDIR
/
mac
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment