tdlib / td

Cross-platform library for building Telegram clients
https://core.telegram.org/tdlib
Boost Software License 1.0
7.11k stars 1.44k forks source link

td_tdc_client.h not built #2255

Closed seek-Love closed 1 year ago

seek-Love commented 1 year ago

Built for 32-bit C on 64bit WIndows 10 in PowerShell. Followed the instruction in the TDLib build instructions generator. Trying to work with the C client, but my compiler says it can't find "td/telegram/td_tdc_api.h". I searched the files myself and didn't find it, either. What do I do to correct my mistake? Thanks

levlam commented 1 year ago

С client isn't built by default. You need to build it explicitly with cmake --build . --target tdc.

seek-Love commented 1 year ago

Thanks!