File: meson.build

package info (click to toggle)
nickle 2.107
  • links: PTS
  • area: main
  • in suites: sid
  • size: 3,756 kB
  • sloc: ansic: 27,954; yacc: 1,874; lex: 954; sh: 204; makefile: 13; lisp: 1
file content (18 lines) | stat: -rw-r--r-- 438 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#
# Draw "snowflake" fractal
#
# Copyright © 2001  Bart Massey.
# All Rights Reserved.  See the file COPYING in this directory
# for licensing information.
nickle_files =[ 'snowflake.5c', 'turtle.5c']

turtle_dir = nickle_examplesdir / 'turtle'

install_data(nickle_files + ['snowflake.tex', 'COPYING'],
	     install_dir: turtle_dir)

test('snowflake', nickle,
     args: files('snowflake.5c'),
     timeout: 1000,
     env: test_env)