mirror of https://github.com/cutefishos/calamares
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
437 B
Bash
17 lines
437 B
Bash
# Build configuration on Travis.
|
|
#
|
|
# SPDX-FileCopyrightText: 2018 Adriaan de Groot <groot@kde.org>
|
|
# SPDX-License-Identifier: BSD-2-Clause
|
|
#
|
|
# Defines a CMAKE_ARGS variable for use with cmake
|
|
#
|
|
# This file is sourced by travis.sh, and exports the variables
|
|
# to the environment.
|
|
CMAKE_ARGS="\
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DWEBVIEW_FORCE_WEBKIT=1 \
|
|
-DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
|
|
-DWITH_PYTHONQT=OFF"
|
|
|
|
export CMAKE_ARGS
|