summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorLars-Dominik Braun <lars@6xq.net>2015-02-10 17:14:51 +0100
committerLars-Dominik Braun <lars@6xq.net>2015-05-02 21:36:44 +0200
commit568a58f7260766eba3257e0341db00170e0ad08e (patch)
treef496d487bc148f5c1ebee382c36d9af7431299d7 /wscript
parent890ff66d5e57faa74fb8911711ecda0e29f0cb42 (diff)
downloadpucket-568a58f7260766eba3257e0341db00170e0ad08e.tar.gz
pucket-568a58f7260766eba3257e0341db00170e0ad08e.tar.bz2
pucket-568a58f7260766eba3257e0341db00170e0ad08e.zip
Move to waf
Diffstat (limited to 'wscript')
-rw-r--r--wscript30
1 files changed, 30 insertions, 0 deletions
diff --git a/wscript b/wscript
new file mode 100644
index 0000000..68b76f7
--- /dev/null
+++ b/wscript
@@ -0,0 +1,30 @@
+def options(opt):
+ opt.load ('compiler_c')
+
+def configure(conf):
+ conf.define (key='VERSION', val='pre')
+ conf.load ('compiler_c')
+
+ conf.env.append_unique ('CFLAGS', '-std=gnu99')
+ conf.env.append_unique ('CFLAGS', '-mrdrnd')
+
+ conf.check_cfg (path='xml2-config', args='--cflags --libs', package='', uselib_store='xml2')
+ conf.check_cc (lib='xml2', header_name='libxml/parser.h', function_name='xmlParseFile', use='xml2')
+ conf.check_cc (lib='pthread', uselib_store='pthread', define_name='HAVE_LIBPTHREAD')
+ conf.check_cc (lib='jpeg', uselib_store='jpeg')
+ conf.check_cfg (package='libpng', uselib_store='png', args=['--cflags', '--libs'], msg='Checking for library png')
+ conf.check_cc (lib='amdlibm', header_name='amdlibm.h', mandatory=False, define_name='HAVE_AMDLIBM', uselib_store='amdlibm')
+ conf.check_cc (fragment='#include <stdint.h>\nint main() { uint32_t a = 4; __sync_bool_compare_and_swap(&a, 4, 5); }', define_name='HAVE_GCC_ATOMIC_OPS', msg='Checking for atomic CAS')
+ conf.check_cc (fragment='#include <stdint.h>\nint main() { uint64_t a = 4; __sync_bool_compare_and_swap(&a, 4, 5); }', define_name='HAVE_GCC_64BIT_ATOMIC_OPS', msg='Checking for 64 bit atomic CAS')
+
+ # does not work
+ #conf.check_cc (function_name='__builtin_ia32_rdrand64_step', define_name='HAVE_RDRAND64')
+ conf.write_config_header ('config.h')
+
+def build(bld):
+ bld.stlib (features='c cstlib', source='flam3.c filters.c parser.c variations.c interpolation.c palettes.c jpeg.c png.c xorshift.c docstring.c', target='libflam3', use='xml2 png jpeg pthread', includes='.')
+ bld.program (features='c cprogram', source='flam3-render.c', target='flam3-render', use='libflam3 xml2 jpeg png amdlibm pthread', includes='.')
+ bld.program (features='c cprogram', source='flam3-genome.c', target='flam3-genome', use='libflam3 xml2 png amdlibm pthread', includes='.')
+ bld.program (features='c cprogram', source='flam3-animate.c', target='flam3-animate', use='libflam3 xml2 png amdlibm pthread', includes='.')
+ bld.program (features='c cprogram', source='flam3-convert.c', target='flam3-convert', use='libflam3 xml2 png amdlibm pthread', includes='.')
+