File: pkgconfigmanager.h

package info (click to toggle)
codeblocks 25.03%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 93,984 kB
  • sloc: cpp: 695,462; xml: 32,163; ansic: 28,821; sh: 12,117; makefile: 9,126; asm: 3,827; python: 2,289; f90: 1,619; perl: 261; sed: 16; java: 4
file content (78 lines) | stat: -rw-r--r-- 2,640 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/*
* This file is part of lib_finder plugin for Code::Blocks Studio
* Copyright (C) 2007  Bartlomiej Swiecki
*
* wxSmith 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 2 of the License, or
* (at your option) any later version.
*
* wxSmith 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 wxSmith; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
*
* $Revision: 7109 $
* $Id: pkgconfigmanager.h 7109 2011-04-15 11:53:16Z mortenmacfly $
* $HeadURL: https://svn.code.sf.net/p/codeblocks/code/branches/release-25.03/src/plugins/contrib/lib_finder/pkgconfigmanager.h $
*/

#ifndef PKGCONFIGMANAGER_H
#define PKGCONFIGMANAGER_H

#include "resultmap.h"
#include <compiletargetbase.h>

/** \brief Class responsible for integration with pkg-config utility
 *
 * The functinality of this class is as follows:
 *  - Checking whether the system has pkg-config installed
 *  - List libraries which may be configured through pkg-config
 *  - Generate options which allow to use pkg-config inside project
 */
class PkgConfigManager
{
    public:

        /** \brief Ctor
         *
         * It does not detet the presence or list of libraries
         */
        PkgConfigManager();

        /** \brief Dctor */
        ~PkgConfigManager();

        /** \brief Checking whether there is pkg-config on this system */
        bool IsPkgConfig() { return m_PkgConfigVersion!=-1L; }

        /** \brief Adding libraries detected from pkg-config to given set */
        bool DetectLibraries(ResultMap& Results);

        /** \brief Clear all results */
        void Clear();

        /** \brief Update given target to use library from pkg-config */
        bool UpdateTarget(const wxString& LibName,CompileTargetBase* Target,bool Force=true);

        /** \brief Refreshing pkg-config data */
        void RefreshData();

    private:

        /** \brief Detecting version of pkg-config */
        bool DetectVersion();

//        /** \brief Reading list of supported libraries */
//        bool LoadLibraries();

        long m_PkgConfigVersion;    ///< \brief Pkg-Config version, -1 if there's no pkg-config
//        ResultMap m_Libraries;      ///< \brief Libraries detected by pkg-config
};


#endif