mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-12 15:57:57 +00:00
Merge pull request #6519 from evsh/cmake
cmake: fix build and add build configurations for Travis
This commit is contained in:
commit
40948ab652
104
.travis.yml
104
.travis.yml
@ -10,12 +10,19 @@ env:
|
|||||||
# Uncomment when Travis upgraded "Ubuntu 12.04 LTS" to a newer version whose repo will have a more up-to-date libtorrent package
|
# Uncomment when Travis upgraded "Ubuntu 12.04 LTS" to a newer version whose repo will have a more up-to-date libtorrent package
|
||||||
#- lt_branch=dist gui=true
|
#- lt_branch=dist gui=true
|
||||||
#- lt_branch=dist gui=false
|
#- lt_branch=dist gui=false
|
||||||
- lt_branch=RC_1_0 qt=5 gui=true
|
- lt_branch=RC_1_0 gui=true build_system=cmake
|
||||||
- lt_branch=RC_1_0 qt=5 gui=false
|
- lt_branch=RC_1_0 gui=false build_system=cmake
|
||||||
|
- lt_branch=RC_1_0 gui=true build_system=qmake
|
||||||
|
- lt_branch=RC_1_0 gui=false build_system=qmake
|
||||||
global:
|
global:
|
||||||
- secure: "OI9CUjj4lTb0HwwIZU5PbECU3hLlAL6KC8KsbwohG8/O3j5fLcnmDsK4Ad9us5cC39sS11Jcd1kDP2qRcCuST/glVNhLkcjKkiQerOfd5nQ/qL4JYfz/1mfP5mdpz9jHKzpLUIG+TXkbSTjP6VVmsb5KPT+3pKEdRFZB+Pu9+J8="
|
- secure: "OI9CUjj4lTb0HwwIZU5PbECU3hLlAL6KC8KsbwohG8/O3j5fLcnmDsK4Ad9us5cC39sS11Jcd1kDP2qRcCuST/glVNhLkcjKkiQerOfd5nQ/qL4JYfz/1mfP5mdpz9jHKzpLUIG+TXkbSTjP6VVmsb5KPT+3pKEdRFZB+Pu9+J8="
|
||||||
- coverity_branch: coverity_scan
|
- coverity_branch: coverity_scan
|
||||||
|
|
||||||
|
matrix:
|
||||||
|
allow_failures:
|
||||||
|
- env: lt_branch=RC_1_0 gui=true build_system=cmake
|
||||||
|
- env: lt_branch=RC_1_0 gui=false build_system=cmake
|
||||||
|
|
||||||
branches:
|
branches:
|
||||||
except:
|
except:
|
||||||
- search_encoding_windows
|
- search_encoding_windows
|
||||||
@ -47,21 +54,26 @@ addons:
|
|||||||
branch_pattern: $coverity_branch
|
branch_pattern: $coverity_branch
|
||||||
notification_email: sledgehammer999@qbittorrent.org
|
notification_email: sledgehammer999@qbittorrent.org
|
||||||
apt:
|
apt:
|
||||||
#sources:
|
sources:
|
||||||
# sources list: https://github.com/travis-ci/apt-source-whitelist/blob/master/ubuntu.json
|
# sources list: https://github.com/travis-ci/apt-source-whitelist/blob/master/ubuntu.json
|
||||||
#- ubuntu-toolchain-r-test
|
#- ubuntu-toolchain-r-test
|
||||||
#- boost-latest
|
#- boost-latest
|
||||||
|
- sourceline: 'ppa:qbittorrent-team/qbittorrent-stable'
|
||||||
|
- sourceline: 'ppa:beineri/opt-qt551-trusty'
|
||||||
|
- sourceline: 'ppa:adrozdoff/cmake'
|
||||||
packages:
|
packages:
|
||||||
# packages list: https://github.com/travis-ci/apt-package-whitelist/blob/master/ubuntu-precise
|
# packages list: https://github.com/travis-ci/apt-package-whitelist/blob/master/ubuntu-precise
|
||||||
- autoconf
|
- autoconf
|
||||||
- automake
|
- automake
|
||||||
- colormake
|
- cmake
|
||||||
- libssl-dev
|
- colormake
|
||||||
- libboost-dev
|
- libssl-dev
|
||||||
- libboost-system-dev
|
- libboost-dev
|
||||||
# uncomment when Travis upgraded "Ubuntu 12.04 LTS" to a newer version whose repo will have a more up-to-date libtorrent package
|
- libboost-system-dev
|
||||||
#- libtorrent-rasterbar6
|
- libtorrent-rasterbar-dev
|
||||||
|
# Qt 5.5.1
|
||||||
|
- qt55base
|
||||||
|
- qt55tools
|
||||||
before_install:
|
before_install:
|
||||||
# only allow specific build for coverity scan, others will stop
|
# only allow specific build for coverity scan, others will stop
|
||||||
- if [ "$TRAVIS_BRANCH" = "$coverity_branch" ] && ! [ "$TRAVIS_OS_NAME" = "linux" -a "$lt_branch" = "RC_1_0" -a "$gui" = true ]; then exit ; fi
|
- if [ "$TRAVIS_BRANCH" = "$coverity_branch" ] && ! [ "$TRAVIS_OS_NAME" = "linux" -a "$lt_branch" = "RC_1_0" -a "$gui" = true ]; then exit ; fi
|
||||||
@ -74,7 +86,6 @@ before_install:
|
|||||||
- qbtconf="$qbtconf --prefix="$qbt_path" PKG_CONFIG_PATH="$libt_path/lib/pkgconfig":/opt/qt55/lib/pkgconfig:$PKG_CONFIG_PATH"
|
- qbtconf="$qbtconf --prefix="$qbt_path" PKG_CONFIG_PATH="$libt_path/lib/pkgconfig":/opt/qt55/lib/pkgconfig:$PKG_CONFIG_PATH"
|
||||||
|
|
||||||
# options for specific branches
|
# options for specific branches
|
||||||
- if [ "$qt" = 4 ]; then qbtconf="$qbtconf --with-qt4" ; fi
|
|
||||||
- if [ "$gui" = false ]; then qbtconf="$qbtconf --disable-gui" ; fi
|
- if [ "$gui" = false ]; then qbtconf="$qbtconf --disable-gui" ; fi
|
||||||
- |
|
- |
|
||||||
if [ "$TRAVIS_OS_NAME" = "linux" ]; then
|
if [ "$TRAVIS_OS_NAME" = "linux" ]; then
|
||||||
@ -88,23 +99,12 @@ before_install:
|
|||||||
# print settings
|
# print settings
|
||||||
- echo $lt_branch
|
- echo $lt_branch
|
||||||
- echo $gui
|
- echo $gui
|
||||||
|
- echo $build_system
|
||||||
- echo $ltconf
|
- echo $ltconf
|
||||||
- echo $qbtconf
|
- echo $qbtconf
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- |
|
- |
|
||||||
if [ "$TRAVIS_OS_NAME" = "linux" ]; then
|
if [ "$TRAVIS_OS_NAME" = "linux" ]; then
|
||||||
# repositories
|
|
||||||
sudo add-apt-repository --yes ppa:qbittorrent-team/qbittorrent-stable ;
|
|
||||||
sudo add-apt-repository --yes ppa:beineri/opt-qt551-trusty ;
|
|
||||||
sudo apt-get update -qq ;
|
|
||||||
|
|
||||||
# libtorrent
|
|
||||||
sudo apt-get install -qq libtorrent-rasterbar-dev ;
|
|
||||||
|
|
||||||
# Qt 5.5.1
|
|
||||||
sudo apt-get install -qq qt55base qt55tools ;
|
|
||||||
|
|
||||||
# build libtorrent from source
|
# build libtorrent from source
|
||||||
#if [ "$lt_branch" != "dist" ]; then
|
#if [ "$lt_branch" != "dist" ]; then
|
||||||
#cd "$HOME" && pwd && git clone --depth 1 https://github.com/arvidn/libtorrent.git --branch $lt_branch ;
|
#cd "$HOME" && pwd && git clone --depth 1 https://github.com/arvidn/libtorrent.git --branch $lt_branch ;
|
||||||
@ -136,6 +136,10 @@ install:
|
|||||||
# dependencies
|
# dependencies
|
||||||
brew update > /dev/null ;
|
brew update > /dev/null ;
|
||||||
brew install colormake ccache ;
|
brew install colormake ccache ;
|
||||||
|
if [ "$build_system" = "cmake" ]; then
|
||||||
|
brew unlink cmake
|
||||||
|
brew install cmake;
|
||||||
|
fi
|
||||||
brew outdated "pkg-config" || brew upgrade "pkg-config" ;
|
brew outdated "pkg-config" || brew upgrade "pkg-config" ;
|
||||||
# Copy custom libtorrent bottle to homebrew's cache so it can find and install it
|
# Copy custom libtorrent bottle to homebrew's cache so it can find and install it
|
||||||
# Also install our custom libtorrent formula by passing the local path to it
|
# Also install our custom libtorrent formula by passing the local path to it
|
||||||
@ -143,13 +147,23 @@ install:
|
|||||||
cp "$HOME/hombebrew_cache/libtorrent-rasterbar-1.0.10.el_capitan.bottle.tar.gz" "$(brew --cache)" ;
|
cp "$HOME/hombebrew_cache/libtorrent-rasterbar-1.0.10.el_capitan.bottle.tar.gz" "$(brew --cache)" ;
|
||||||
brew install "$HOME/hombebrew_cache/libtorrent-rasterbar.rb" ;
|
brew install "$HOME/hombebrew_cache/libtorrent-rasterbar.rb" ;
|
||||||
|
|
||||||
# Qt
|
if [ "$build_system" = "cmake" ]; then
|
||||||
# Copy custom qt5 bottle to homebrew's cache so it can find and install it
|
brew install qt5 ;
|
||||||
# Also install our custom qt5 formula by passing the local path to it
|
brew link --force qt5 ;
|
||||||
# These 2 files are restored from Travis' cache.
|
export HOMEBREW_QT5_VERSION=$(brew list --versions qt5 | rev | cut -d' ' -f1 | rev)
|
||||||
cp "$HOME/hombebrew_cache/qt5-5.7.1_1.el_capitan.bottle.tar.gz" "$(brew --cache)" ;
|
ln -s /usr/local/Cellar/qt5/$HOMEBREW_QT5_VERSION/mkspecs /usr/local/mkspecs
|
||||||
brew install "$HOME/hombebrew_cache/qt5.rb" ;
|
ln -s /usr/local/Cellar/qt5/$HOMEBREW_QT5_VERSION/plugins /usr/local/plugins
|
||||||
brew link --force qt5 ;
|
else
|
||||||
|
# Qt
|
||||||
|
# Copy custom qt5 bottle to homebrew's cache so it can find and install it
|
||||||
|
# Also install our custom qt5 formula by passing the local path to it
|
||||||
|
# These 2 files are restored from Travis' cache.
|
||||||
|
cp "$HOME/hombebrew_cache/qt5-5.7.1_1.el_capitan.bottle.tar.gz" "$(brew --cache)" ;
|
||||||
|
brew install "$HOME/hombebrew_cache/qt5.rb" ;
|
||||||
|
brew link --force qt5 ;
|
||||||
|
fi
|
||||||
|
|
||||||
|
MY_CMAKE_OPENSSL_HINT="-DOPENSSL_ROOT_DIR=/usr/local/opt/openssl/"
|
||||||
|
|
||||||
# ccache
|
# ccache
|
||||||
if [ "$TRAVIS_BRANCH" != "$coverity_branch" ]; then
|
if [ "$TRAVIS_BRANCH" != "$coverity_branch" ]; then
|
||||||
@ -160,12 +174,22 @@ install:
|
|||||||
|
|
||||||
script:
|
script:
|
||||||
- if [ "$TRAVIS_BRANCH" = "$coverity_branch" ]; then exit ; fi # skip usual build when running coverity scan
|
- if [ "$TRAVIS_BRANCH" = "$coverity_branch" ]; then exit ; fi # skip usual build when running coverity scan
|
||||||
- cd "$TRAVIS_BUILD_DIR" && ./bootstrap.sh && ./configure $qbtconf
|
|
||||||
- |
|
- |
|
||||||
if [ "$TRAVIS_OS_NAME" = "osx" ]; then
|
cd "$TRAVIS_BUILD_DIR"
|
||||||
sed -i "" -e "s/^\(CC.*&&\).*$/\1 $CC/" src/Makefile ; # workaround for Qt & ccache: https://bugreports.qt.io/browse/QTBUG-31034
|
if [ "$build_system" = "cmake" ]; then
|
||||||
sed -i "" -e "s/^\(CXX.*&&\).*$/\1 $CXX/" src/Makefile ;
|
cd "$TRAVIS_BUILD_DIR"
|
||||||
sed -i "" -e 's/^\(CXXFLAGS.*\)$/\1 -Wno-unused-local-typedefs -Wno-inconsistent-missing-override/' src/Makefile ;
|
mkdir build
|
||||||
|
cd build
|
||||||
|
cmake -DGUI=${gui} -DCMAKE_INSTALL_PREFIX="$qbt_path" "$MY_CMAKE_OPENSSL_HINT" \
|
||||||
|
-G "Unix Makefiles" -DCMAKE_INSTALL_RPATH_USE_LINK_PATH=TRUE ..
|
||||||
|
fi
|
||||||
|
if [ "$build_system" = "qmake" ]; then
|
||||||
|
./bootstrap.sh && ./configure $qbtconf
|
||||||
|
if [ "$TRAVIS_OS_NAME" = "osx" ]; then
|
||||||
|
sed -i "" -e "s/^\(CC.*&&\).*$/\1 $CC/" src/Makefile ; # workaround for Qt & ccache: https://bugreports.qt.io/browse/QTBUG-31034
|
||||||
|
sed -i "" -e "s/^\(CXX.*&&\).*$/\1 $CXX/" src/Makefile ;
|
||||||
|
sed -i "" -e 's/^\(CXXFLAGS.*\)$/\1 -Wno-unused-local-typedefs -Wno-inconsistent-missing-override/' src/Makefile ;
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
- make && make install
|
- make && make install
|
||||||
|
|
||||||
|
1
dist/mac/bundle.cmake
vendored
1
dist/mac/bundle.cmake
vendored
@ -1,2 +1,3 @@
|
|||||||
|
set(BU_CHMOD_BUNDLE_ITEMS ON)
|
||||||
include(BundleUtilities)
|
include(BundleUtilities)
|
||||||
fixup_bundle("$ENV{DESTDIR}/${CMAKE_INSTALL_PREFIX}/qbittorrent.app" "" "")
|
fixup_bundle("$ENV{DESTDIR}/${CMAKE_INSTALL_PREFIX}/qbittorrent.app" "" "")
|
||||||
|
@ -39,11 +39,7 @@ set(QBT_APP_RESOURCES
|
|||||||
|
|
||||||
# With AUTORCC rcc is ran by cmake before language files are generated,
|
# With AUTORCC rcc is ran by cmake before language files are generated,
|
||||||
# and thus we call rcc explicitly
|
# and thus we call rcc explicitly
|
||||||
if (QT5)
|
qt5_add_resources(QBT_APP_RESOURCE_SOURCE ${QBT_APP_RESOURCES})
|
||||||
qt5_add_resources(QBT_APP_RESOURCE_SOURCE ${QBT_APP_RESOURCES})
|
|
||||||
else (QT5)
|
|
||||||
qt4_add_resources(QBT_APP_RESOURCE_SOURCE ${QBT_APP_RESOURCES})
|
|
||||||
endif (QT5)
|
|
||||||
|
|
||||||
if (WIN32)
|
if (WIN32)
|
||||||
if (MINGW)
|
if (MINGW)
|
||||||
@ -176,6 +172,6 @@ install(TARGETS ${QBT_TARGET_NAME}
|
|||||||
BUNDLE DESTINATION .
|
BUNDLE DESTINATION .
|
||||||
COMPONENT runtime)
|
COMPONENT runtime)
|
||||||
|
|
||||||
if (APPLE)
|
if (APPLE AND GUI)
|
||||||
install(SCRIPT ${OSX_RES_SRC_DIR}/bundle.cmake)
|
install(SCRIPT ${OSX_RES_SRC_DIR}/bundle.cmake)
|
||||||
endif (APPLE)
|
endif (APPLE AND GUI)
|
||||||
|
Loading…
Reference in New Issue
Block a user