[SECARSP-149] *server side unit tests
[platform/core/security/suspicious-activity-monitor.git] / device-agent / README.md
index c4d543e..e69de29 100644 (file)
@@ -1,52 +0,0 @@
-# Dev Guide
-
-Iotivity installation:
-1. Go to the directory where you want to install iotivity framework.
-2. git clone https://gerrit.iotivity.org/gerrit/iotivity
-3. cd iotivity
-4. git checkout 1.3.0
-5. git clone https://github.com/01org/tinycbor.git extlibs/tinycbor/tinycbor --branch v0.4.1
-6. git clone https://github.com/ARMmbed/mbedtls.git extlibs/mbedtls/mbedtls --branch mbedtls-2.4.0
-7. scons -j8 TARGET_TRANSPORT=IP WITH_CLOUD=1 WITH_TCP=1 WITH_MQ=PUB,SUB SECURED=0
-
-After building finished You should set IOTIVITY_HOME evironment variable to the value of the path where You cloned iotivity.
-
-The easiest way to this is to add it into Your profile. Just run next command from the directory where You cloned iotivity.
-echo -e "\nexport IOTIVITY_HOME=$(pwd)\n" >> ~/.profile
-
-## Ubuntu flavor guide
-
-Install package dependency:
-```sh
-sudo apt-get install gbs cmake libboost-all-dev libgtest-dev libsystemd-dev libjsoncpp-dev
-```
-
-Compile gtest shared libraries:
-```sh
-cd /usr/src/gtest
-sudo cmake -DBUILD_SHARED_LIBS=ON
-sudo make
-sudo mv *.so /usr/lib/
-```
-
-Gmock installation (google mock framework)
-```sh
-sudo apt get install google-mock
-cd /usr/src/gmock/
-sudo cmake -DBUILD_SHARED_LIBS=ON
-sudo make
-sudo mv *.so /usr/lib/
-```
-
-Set path to iotivity in `/etc/profile`:
-```sh
-export IOTIVITY_HOME=$HOME/iotivity/
-```
-
-Build steps:
-
-```sh
-cmake -H./ -B./build -DFLAVOR=UBUNTU -DDEBUG=1
-cd build
-make install -j8 VERBOSE=1
-```