mirror of
https://gitlab.com/ita1024/waf.git
synced 2025-01-15 04:50:10 +01:00
16 lines
211 B
Python
16 lines
211 B
Python
#! /usr/bin/env python
|
|
# encoding: utf-8
|
|
# Thomas Nagy, 2010 (ita)
|
|
|
|
"""
|
|
Setting the source directory below the current folder is a
|
|
bad idea in general
|
|
"""
|
|
|
|
top = 'src'
|
|
out = 'build'
|
|
|
|
def configure(conf):
|
|
pass
|
|
|