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.
24 lines
412 B
Python
24 lines
412 B
Python
#! /usr/bin/env python
|
|
# encoding: utf-8
|
|
# Grygoriy Fuchedzhy 2009
|
|
|
|
top = '.'
|
|
out = 'out'
|
|
|
|
def options(opt):
|
|
opt.load('compiler_cxx')
|
|
|
|
def configure(conf):
|
|
#conf.recurse('gni')
|
|
conf.load('compiler_cxx')
|
|
conf.load('fluid')
|
|
|
|
def build(bld):
|
|
bld.program(
|
|
target = 'sample',
|
|
source = 'main.cpp PopupDialog.fl UserInterface.fl',
|
|
includes = '.',
|
|
install_path = '${PREFIX}/bin/',
|
|
use = 'FLTK')
|
|
|