commit | 3c332d0f8158723210828aba6c751d5eb0234393 | [log] [tgz] |
---|---|---|
author | Davide Pesavento <davidepesa@gmail.com> | Fri Sep 27 12:08:00 2019 -0400 |
committer | Gerrit Code Review <gerrit@named-data-1.c.leproject-172903.internal> | Fri Sep 27 09:08:00 2019 -0700 |
tree | cdfa504ffc0284588526c8674acbb87001e24be5 | |
parent | 5e701eade335c64772f1e2a6a69a9f8d63a339c3 [diff] |
Update git submodules * Update ChronoSync from branch 'master' to dfd704aa4e9c372b008275a7bae0422336ba4d1a - ci: upgrade Travis config to Ubuntu 18.04 Also in this commit: * Drop clang 3.8 (no easy way to install it on 18.04) * Add clang 10 (trunk) * Drop Xcode 8.3 * Upgrade Xcode 10.2 to 10.3 * Add Xcode 11 Change-Id: Ic8fd05fdacdfc190c722244372a8852705762f32
ChronoChat is a multiparty chat application that demostrates our synchronization primitive that we call ChronoSync.
Note that after you click to close ChronoChat, it will keep running on your system tray. To restore it to normal size window, you have to click on the system tray icon (normally on the upper right corner of your screen). Clicking on the dock won't work for now and is still on the to-do list (because I'm using qt for gui, not the native Cocoa framework).
Install MacPorts, if not yet installed (http://www.macports.org/), configure NDN ports repository and install NFD if you don't have it yet.
sudo port install nfd sudo nfd-start
Install ChronoChat dependencies
sudo port install pkgconfig protobuf-cpp boost qt4-mac
Fetch source code with submodules
git clone --recursive git://github.com/named-data/ChronoChat
If you already cloned repository, you can update submodules this way:
git submodule update --init
Configure and install ChronoSync
cd ChronoChat/ChronoSync ./waf configure ./waf sudo ./waf install
Configure and build ChronoChat
cd .. PKG_CONFIG_PATH=/opt/local/lib/pkgconfig:/usr/local/lib/pkgconfig:/usr/lib/pkgconfig ./waf configure ./waf
Congratulations! build/ChronoChat.app is ready to use (on a Mac).
Configure NDN PPA repository and install NFD if you don't have it yet.
sudo apt-get install nfd
Install ChronoChat dependencies
sudo apt-get install libprotobuf-dev protobuf-compiler libevent-dev sudo apt-get install libboost1.48-all-dev sudo apt-get install qt4-dev-tools
Fetch source code with submodules
git clone --recursive git://github.com/named-data/ChronoChat
If you already cloned repository, you can update submodules this way:
git submodule update --init
Configure and install ChronoSync
cd ChronoChat/ChronoSync ./waf configure ./waf sudo ./waf install sudo ldconfig
Configure and build ChronoChat
cd .. ./waf configure ./waf
Congratulations! build/ChronoChat is ready to use. Do not forget to start ccnd and configure FIB before using ChronoChat.