mirror of
https://github.com/nasa/trick.git
synced 2024-12-20 05:37:55 +00:00
279d131a0a
* Add breadcrumbs to all documentation pages, fix some links between pages
846 B
846 B
Home → Documentation Home → Web Server → Configuring Trick with Civetweb |
---|
Configuring Trick with Civetweb
To configure Trick to support the civetweb web server, you'll need to
-
Download or clone Civetweb release (currently v1.15) from Github. Where you put the Civetweb directory will be designated as $(CIVETWEB_HOME).
-
Build the Civetweb library.
-
Configure Trick.
Building the Civetweb Library
cd $(CIVETWEB_HOME)
mkdir lib
make install-lib PREFIX=. CAN_INSTALL=1 WITH_WEBSOCKET=1
Configuring Trick with Civetweb
cd $(TRICK_HOME)
./configure --with-civetweb=$(CIVETWEB_HOME)
make clean
make
Continue to Adding SSL Encryption