Difference between revisions of "HICN/MacOS"
From fd.io
< HICN
(Created page with "==Build== ===Install dependency=== <pre> [https://github.com/FDio/cicn/blob/cframework/master/libparc/README.md Libparc] </pre>") |
Muscariello (Talk | contribs) (→HomeBrew Tap for macOS 10.14) |
||
(12 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
+ | == Apple Store== | ||
+ | |||
+ | [[File:Apple.png|220px|link=https://apps.apple.com/us/developer/icn-team/id1482373822]] | ||
+ | |||
==Build== | ==Build== | ||
− | === | + | ===Build Libparc=== |
+ | <pre> | ||
+ | $ git clone -b cframework/master https://github.com/FDio/cicn.git cframework | ||
+ | $ cd cframework/libparc | ||
+ | $ mkdir build | ||
+ | $ cd build | ||
+ | $ cmake .. -DOPENSSL_ROOT_DIR=/usr/local/opt/openssl\@1.1 | ||
+ | $ make | ||
+ | $ make install | ||
+ | </pre> | ||
+ | |||
+ | ===Build hICN=== | ||
+ | <pre> | ||
+ | $ git clone https://github.com/FDio/hicn.git | ||
+ | $ cd hicn | ||
+ | $ mkdir build; cd build | ||
+ | $ cmake -DOPENSSL_ROOT_DIR=/usr/local/opt/openssl\@1.1 -DBUILD_APPS=ON .. | ||
+ | $ make | ||
+ | </pre> | ||
+ | |||
+ | ===HomeBrew Tap for macOS >= 10.14=== | ||
<pre> | <pre> | ||
− | + | $ brew tap icn-team/hicn-tap | |
+ | $ brew install hicn | ||
</pre> | </pre> |
Latest revision as of 09:18, 5 June 2020
Apple Store
Build
Build Libparc
$ git clone -b cframework/master https://github.com/FDio/cicn.git cframework $ cd cframework/libparc $ mkdir build $ cd build $ cmake .. -DOPENSSL_ROOT_DIR=/usr/local/opt/openssl\@1.1 $ make $ make install
Build hICN
$ git clone https://github.com/FDio/hicn.git $ cd hicn $ mkdir build; cd build $ cmake -DOPENSSL_ROOT_DIR=/usr/local/opt/openssl\@1.1 -DBUILD_APPS=ON .. $ make
HomeBrew Tap for macOS >= 10.14
$ brew tap icn-team/hicn-tap $ brew install hicn