Skip to content

Commit

Permalink
pairtaghighlighter: waf build script
Browse files Browse the repository at this point in the history
  • Loading branch information
Roland Pallai committed Oct 26, 2013
1 parent 6b58d7b commit 49eb1dd
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 0 deletions.
28 changes: 28 additions & 0 deletions pairtaghighlighter/wscript_build
@@ -0,0 +1,28 @@
# -*- coding: utf-8 -*-
#
# WAF build script for geany-plugins - Pairtaghighlighter
#
# Copyright 2013 Roland Pallai <rpallai(at)magex(dot)hu>
#
# This program 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.
#
# This program 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 this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#

from build.wafutils import build_plugin


name = 'Pairtaghighlighter'
includes = ['pairtaghighlighter/src']

build_plugin(bld, name, includes=includes)
25 changes: 25 additions & 0 deletions pairtaghighlighter/wscript_configure
@@ -0,0 +1,25 @@
# -*- coding: utf-8 -*-
#
# WAF build script for geany-plugins - Pairtaghighlighter
#
# Copyright 2013 Roland Pallai <rpallai(at)magex(dot)hu>
#
# This program 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.
#
# This program 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 this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#

from build.wafutils import check_cfg_cached, check_c_header_cached


check_c_header_cached(conf, header_name='string.h', mandatory=True)

0 comments on commit 49eb1dd

Please sign in to comment.