1
0
mirror of https://github.com/janet-lang/janet synced 2024-07-04 19:13:15 +00:00
janet/test/install/project.janet
Calvin Rose 25156eb83e For #469 - Add support for C++ and mixed C/C++
WIP and for native modules. Required a few changes to headers and
some changes to JPM.
2020-09-04 17:41:36 -05:00

19 lines
304 B
Clojure

(declare-project
:name "testmod")
(declare-native
:name "testmod"
:source @["testmod.c"])
(declare-native
:name "testmod2"
:source @["testmod2.c"])
(declare-native
:name "testmod3"
:source @["testmod3.cpp"])
(declare-executable
:name "testexec"
:entry "testexec.janet")