Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[submodule "lib/uv"]
url = https://github.com/joyent/libuv.git
ref = refs/heads/v1.x
url =https://github.com/libuv/libuv.git
ref = refs/tags/v1.1.0
path = lib/uv
[submodule "lib/duktape"]
url = https://github.com/svaarala/duktape-releases.git
Expand Down
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,12 @@ LibUV bindings for duktape JS engine
The goal of this project is to make a node.js-like environment that's ultra lean for tiny devices.

<http://dukluv.io/>


### Building instructions

git submodule update --init --recursive
mkdir build
cd build
cmake ..
make
2 changes: 2 additions & 0 deletions duktape.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,7 @@ add_library(duktape STATIC ${DUKTAPEDIR}/src/duktape.c)
if("${CMAKE_SYSTEM_NAME}" MATCHES "Linux")
target_link_libraries(duktape
m
dl
rt
)
endif()