mirror of
https://github.com/janet-lang/janet
synced 2024-11-05 00:06:16 +00:00
f0e04e734c
Use two separate natives in compiled executable.
15 lines
235 B
Plaintext
15 lines
235 B
Plaintext
(declare-project
|
|
:name "testmod")
|
|
|
|
(declare-native
|
|
:name "testmod"
|
|
:source @["testmod.c"])
|
|
|
|
(declare-native
|
|
:name "testmod2"
|
|
:source @["testmod2.c"])
|
|
|
|
(declare-executable
|
|
:name "testexec"
|
|
:entry "testexec.janet")
|