1 /* gbp-cmake-build-target.h
2  *
3  * Copyright 2017-2019 Christian Hergert <chergert@redhat.com>
4  * Copyright 2017 Martin Blanchard <tchaik@gmx.com>
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  *
19  * SPDX-License-Identifier: GPL-3.0-or-later
20  */
21 
22 #pragma once
23 
24 #include <libide-foundry.h>
25 
26 G_BEGIN_DECLS
27 
28 #define GBP_TYPE_CMAKE_BUILD_TARGET (gbp_cmake_build_target_get_type())
29 
30 G_DECLARE_FINAL_TYPE (GbpCMakeBuildTarget, gbp_cmake_build_target, GBP, CMAKE_BUILD_TARGET, IdeObject)
31 
32 IdeBuildTarget *gbp_cmake_build_target_new (IdeContext *context,
33                                             GFile      *install_directory,
34                                             gchar      *name);
35 
36 G_END_DECLS
37