Skip to content

Commit d34d074

Browse files
committed
build: add thirdparty libraries needed for http support
1 parent f0b4a18 commit d34d074

File tree

5 files changed

+15
-0
lines changed

5 files changed

+15
-0
lines changed

.gitmodules

+9
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,12 @@
1111
[submodule "runtime/raygui"]
1212
path = compiler/runtime/raygui
1313
url = https://github.com/raysan5/raygui.git
14+
[submodule "compiler/runtime/net/mongoose"]
15+
path = compiler/runtime/net/mongoose
16+
url = [email protected]:cesanta/mongoose.git
17+
[submodule "compiler/3rd/reproc"]
18+
path = compiler/3rd/reproc
19+
url = [email protected]:DaanDeMeyer/reproc.git
20+
[submodule "compiler/runtime/net/mbedtls"]
21+
path = compiler/runtime/net/mbedtls
22+
url = [email protected]:Mbed-TLS/mbedtls.git

compiler/3rd/reproc

Submodule reproc added at 1c07bdb

compiler/CMakeLists.txt

+3
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ file(COPY ${CMAKE_BINARY_DIR}/test.txt
1818
include_directories(src)
1919
include_directories(tests)
2020
include_directories(${UTF8_DIR})
21+
# Add reproc
22+
set(REPROC++ ON)
23+
add_subdirectory(3rd/reproc)
2124

2225
## Enable below to use address sanitizer
2326
# add_compile_options(-O1 -g -fsanitize=address -fno-omit-frame-pointer)

compiler/runtime/net/mbedtls

Submodule mbedtls added at c94f8f1

compiler/runtime/net/mongoose

Submodule mongoose added at bd53e46

0 commit comments

Comments
 (0)