Skip to content

Commit

Permalink
chore: no need to to build path
Browse files Browse the repository at this point in the history
  • Loading branch information
darshankabariya committed Oct 11, 2024
1 parent b948ea9 commit a51c0d7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ FORMAT_MSG := "\\x1B[95mFormatting:\\x1B[39m"
OS := Windows_NT

ifeq ($(OS),Windows_NT)
cc := clang
# Add the necessary libraries to the linker flags
LIBS = -static -lws2_32 -lbcrypt -luserenv -lntdll
NIM_PARAMS += $(foreach lib,$(LIBS),--passL:"$(lib)")
Expand Down Expand Up @@ -438,7 +439,7 @@ libwaku-android:

cwaku_example: | build libwaku
echo -e $(BUILD_MSG) "build/$@" && \
cc -o "build/$@" \
clang -o "build/$@" \
./examples/cbindings/waku_example.c \
./examples/cbindings/base64.c \
-lwaku -Lbuild/ \
Expand Down
1 change: 0 additions & 1 deletion config.nims
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ else:
switch("nimcache", "nimcache/debug/$projectName")

if defined(windows):
switch("passL", "-L./build/")
switch("passL", "rln.lib")

for path in listDirs("vendor/.nimble/pkgs/"):
Expand Down

0 comments on commit a51c0d7

Please sign in to comment.