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
c04f985a
Commit
c04f985a
authored
Oct 05, 2016
by
Alexey Golubev
Browse files
Options
Browse Files
Download
Plain Diff
Merge tag 'build-4.1' into develop
v4.1-osbuild
parents
383486cb
884bffc1
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
26 additions
and
5 deletions
+26
-5
Common/3dParty/boost/fetch.sh
Common/3dParty/boost/fetch.sh
+1
-1
Common/base.pri
Common/base.pri
+17
-2
X2tConverter/build/Qt/X2tConverter.pro
X2tConverter/build/Qt/X2tConverter.pro
+8
-2
No files found.
Common/3dParty/boost/fetch.sh
View file @
c04f985a
...
...
@@ -34,7 +34,7 @@ echo "boost already extracted"
else
if
[[
"
$platform
"
==
*
"linux"
*
]]
then
7z x
"
$SCRIPTPATH
/boost_1_58_0.7z"
-o
"
$SCRIPTPATH
/"
7z x
-y
"
$SCRIPTPATH
/boost_1_58_0.7z"
-o
"
$SCRIPTPATH
/"
else
hdiutil mount
"
$SCRIPTPATH
/7zX_1.7.1.dmg"
/Volumes/7zX/7zX.app/Contents/Resources/7za x
"
$SCRIPTPATH
/boost_1_58_0.7z"
-o
"
$SCRIPTPATH
/"
...
...
Common/base.pri
View file @
c04f985a
...
...
@@ -17,16 +17,31 @@ win32:!contains(QMAKE_TARGET.arch, x86_64): {
CONFIG += core_win_32
}
linux-g++ | linux-g++-64 | linux-g++-32 {
linux-g++
{
CONFIG += core_linux
}
linux-g++:contains(QMAKE_HOST.arch, x86_64): {
message("linux-64")
CONFIG += core_linux_64
}
linux-g++:!contains(QMAKE_HOST.arch, x86_64): {
message("linux-32")
CONFIG += core_linux_32
}
}
linux-g++-64 {
message("linux-64")
CONFIG += core_linux
CONFIG += core_linux_64
}
linux-g++-32 {
message("linux-32")
CONFIG += core_linux
CONFIG += core_linux_32
}
mac {
CONFIG += core_mac
CONFIG += core_mac_64
...
...
X2tConverter/build/Qt/X2tConverter.pro
View file @
c04f985a
...
...
@@ -22,6 +22,7 @@ PWD_ROOT_DIR = $$PWD
CONFIG
+=
core_static_link_libstd
CONFIG
+=
core_x2t
include
(..
/../../
Common
/
base
.
pri
)
include
(..
/../../
Common
/
3
dParty
/
icu
/
icu
.
pri
)
core_win_32
{
TARGET
=
x2t32
...
...
@@ -114,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