-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinfo.rkt
More file actions
28 lines (23 loc) · 946 Bytes
/
info.rkt
File metadata and controls
28 lines (23 loc) · 946 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#lang info
(define collection 'use-pkg-name)
(define pkg-desc "Some PBL projects for teenagers to learn computational thinking in C++")
(define version "1.0")
(define pkg-authors '(wargrey))
(define test-omit-paths 'all)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define sdl2-config
'((config SDL2)
(lib plteen pltmos stemos)
(include "C:\\opt\\JrPLT\\include")
(libpath "C:\\opt\\JrPLT\\lib")))
(define native-compiled-subpath '())
(define native-compiled-bindir '("bin"))
(define native-compiled-libdir '())
(define native-compiled-release '())
(define native-compiled-debug '("debug"))
(define native-launcher-names
`(["BigBang.cpp" console ,@sdl2-config]
["BigBangCosmos.cpp" console optional ,@sdl2-config]
["FontBrowser.cpp" console ,@sdl2-config]
["village/procedural/shape.cpp" console ,@sdl2-config]
["village/procedural/paddleball.cpp" console ,@sdl2-config]))