diff options
author | Lars-Dominik Braun <lars@6xq.net> | 2015-05-10 16:01:38 +0200 |
---|---|---|
committer | Lars-Dominik Braun <lars@6xq.net> | 2015-05-10 16:01:38 +0200 |
commit | ad199eccf9334c8ee00f52686a0f401b82f402bc (patch) | |
tree | 8a1eb2b452d8fa453a9944e6c7db212a9414c04f /wscript | |
parent | b66dc836db66e9769f5c7142104c80fda6dd386b (diff) | |
download | pucket-ad199eccf9334c8ee00f52686a0f401b82f402bc.tar.gz pucket-ad199eccf9334c8ee00f52686a0f401b82f402bc.tar.bz2 pucket-ad199eccf9334c8ee00f52686a0f401b82f402bc.zip |
Use built-in palettes
This increases the binaries’ size, but we don’t have to parse the
palette file every time.
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -22,5 +22,5 @@ def configure(conf): conf.write_config_header ('config.h') def build(bld): - bld.program (features='c cprogram', source='flam3.c parser.c variations.c interpolation.c palettes.c png.c random.c rect.c main.c genome.c', target='pucket', use='xml2 png amdlibm') + bld.program (features='c cprogram', source='flam3.c parser.c variations.c interpolation.c palettes.c png.c random.c rect.c main.c genome.c palettes_builtin.c', target='pucket', use='xml2 png amdlibm') |