1
0
mirror of https://github.com/janet-lang/janet synced 2024-07-01 09:33:15 +00:00
janet/test/install/project.janet

27 lines
421 B
Clojure
Raw Normal View History

2019-05-28 16:59:21 +00:00
(declare-project
:name "testmod")
(declare-native
:name "testmod"
:source @["testmod.c"])
2019-05-28 16:59:21 +00:00
(declare-native
:name "testmod2"
:source @["testmod2.c"])
(declare-native
:name "testmod3"
:source @["testmod3.cpp"])
(declare-native
:name "test-mod-4"
:source @["testmod4.c"])
(declare-native
:name "testmod5"
:source @["testmod5.cc"])
(declare-executable
:name "testexec"
:entry "testexec.janet")