This repository was archived by the owner on Dec 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtell.mur
More file actions
44 lines (42 loc) · 1.25 KB
/
tell.mur
File metadata and controls
44 lines (42 loc) · 1.25 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// You can use the "tell" method to pass some
// data to the bundler.
tell "<TYPE>::<DATA>";
// Note: the "tell" method is only accessible
// by libraries! It's better if you try not
// to use this method.
// All the planned message types are:
// DLL:
// Tells the bundler to add a DLL
// library to the output project folder.
// (DLL::<SOURCE>:<LIBRARY>)
// <SOURCE>:
// The source of this DLL file
// [root/dir]
// <LIBRARY>:
// The DLL file path
// [<PATH>]
// FLAG:
// Tells the bundler to use a C flag
// whilst compiling the final C code.
// (FLAG::<POSITION>:<FLAG>)
// <POSITION>:
// The position of this flag.
// (before or after the input
// and output part of the build
// command)
// [before/after]
// <FLAG>:
// The flag
// [<STRING>]
// FILE:
// Tells the bundler to add a file
// to the output project folder.
// (FILE::<TYPE>:<FILE>)
// <TYPE>:
// The type of this file
// [media/code/data/...]
// <FILE>:
// The file path
// [<PATH>]
// NAME:
// DESC