Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escape special characters +-&|!(){}[]^"~*?:\ - e.g. \+ \* \!
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Answered
Why does building adnl-http-proxy on Windows fail?

When running the command:

cmake --build . --target adnl-http-proxy --config Release

The build fails with error:

msbuild: can not find adnl-http-proxy.vscxproj

How do I build without sln or project files?

In GitHub, the TON workflows on Windows uses same command for build artefacts.

Votes Newest

Answers 3


from the dockerfile there is this go build line

CGO_ENABLED=0 GOOS=linux GOARCH=amd64 \
    go build -ldflags="-s -w" -o wstcproxy ./cmd/main.go

try to add the gu build flags for windows
env GOOS=windows GOARCH=386

-1
-1
Posted one year ago

You've made a mistake in the target name. It's RLDP and not ADNL proxy.

Correct command:
cmake --build . --target rldp-http-proxy

1
1
Posted one year ago
Edited one year ago
Daniil Sedov
219 × 6 Administrator

There is no target adnl-http-proxy.
Use one of these as per your need:

  • rldp-http-proxy
  • http-proxy
  • adnl-proxy
1
1
Posted one year ago
19K Views
3 Answers
one year ago
one year ago
Tags