Registry / web-framework / wt
library4.12.6vcpkgunverified

Wt is a C++ library for developing web applications.

vcpkg install wt
INSTALL
IMPORT
SIG · WT
W
wt
web-frameworkcppv4.12.6
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Wt/WApplication.h
✓ #include <Wt/WApplication.h>

Minimal Wt web application displaying 'Hello, World!'.

#include <Wt/WApplication.h> #include <Wt/WText.h> class HelloApp : public Wt::WApplication { public: HelloApp(const Wt::WEnvironment& env) : Wt::WApplication(env) { root()->addWidget(std::make_unique<Wt::WText>("Hello, World!")); } }; int main(int argc, char** argv) { return Wt::WRun(argc, argv, [](const Wt::WEnvironment& env) { return std::make_unique<HelloApp>(env); }); }
Debug
Known issues
gotchaWt requires a web server (e.g., built-in HTTP server or FastCGI) to run; it is not a standalone executable.
fix
Ensure you link against the correct Wt libraries (wt, wthttp, wtfcgi) and configure your application for deployment.
affects: *
Upgrade
Version history
4.12.6latest on vcpkg
Audit
Dependencies

No dependency data recorded yet.

Agent activity
22 hits · last 30 days
node
20
Amazon
1
OpenAI (training)
1
Resources

No resource links recorded.

wt — pip install wt · libregistry