Skip to content
Snippets Groups Projects
QtFunctions 2.13 KiB
Newer Older
  • Learn to ignore specific revisions
  • #---------------------------------*- sh -*-------------------------------------
    # =========                 |
    # \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
    #  \\    /   O peration     |
    #   \\  /    A nd           | Copyright (C) 2011 OpenFOAM Foundation
    
    #    \\/     M anipulation  | Copyright (C) 2016-2017 OpenCFD Ltd.
    
    #------------------------------------------------------------------------------
    # License
    #     This file is part of OpenFOAM.
    #
    #     OpenFOAM is free software: you can redistribute it and/or modify it
    #     under the terms of the GNU General Public License as published by
    #     the Free Software Foundation, either version 3 of the License, or
    #     (at your option) any later version.
    #
    #     OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
    #     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    #     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    #     for more details.
    #
    #     You should have received a copy of the GNU General Public License
    #     along with OpenFOAM.  If not, see <http://www.gnu.org/licenses/>.
    #
    # File
    #     etc/tools/QtFunction
    #
    # Description
    #     Functions for helping relocate a QT installation
    
    #     To be loaded *after* etc/tools/ThirdPartyFunctions
    
    #
    #------------------------------------------------------------------------------
    
    #
    
    # Create a qt.conf file in the QT bin/
    # - this can be modified easily if the qt installation is relocated
    
    #
    createQtConf()
    {
    
        local confFile="$QT_ARCH_PATH/bin/qt.conf"
    
        if [ -n "$QT_ARCH_PATH" -a -d "$QT_ARCH_PATH/bin" ]
        then
            /bin/cat << QT_CONF > $confFile
    [Paths]
    Prefix=$QT_ARCH_PATH
    QT_CONF
            echo "    created qt.conf"
    
            echo "Error: QT_ARCH_PATH not correctly set"
    
    }
    
    
    # ------------------------------------------------------------------------------
    
    #
    
    # create qt.conf and adjust locations to use ${prefix} internally
    
    #
    finalizeQt()
    {
        echo "Create/Edit files to ease later relocation of a QT installation"
        createQtConf
    
        pkgconfigAdjust $QT_ARCH_PATH
    
    # -----------------------------------------------------------------------------