Difference between revisions of "HICN/MacOS"

From fd.io
Jump to: navigation, search
(Apple Store)
(4 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
== Apple Store==
 
== Apple Store==
Coming soon
+
 
 +
[[File:Apple.png|220px|link=https://apps.apple.com/us/developer/icn-team/id1482373822]]
  
 
==Build==
 
==Build==
Line 10: Line 11:
 
$ mkdir build
 
$ mkdir build
 
$ cd build
 
$ cd build
$ cmake .. -DOPENSSL_ROOT_DIR=/usr/local/opt/openssl/
+
$ cmake .. -DOPENSSL_ROOT_DIR=/usr/local/opt/openssl\@1.1
 
$ make
 
$ make
 
$ make install
 
$ make install
Line 27: Line 28:
 
<pre>
 
<pre>
 
$ brew tap icn-team/hicn-tap
 
$ brew tap icn-team/hicn-tap
$ brew install hicn
+
$ brew install hicn
 
</pre>
 
</pre>

Revision as of 14:13, 3 April 2020

Apple Store

Apple.png

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