summaryrefslogtreecommitdiff
path: root/INSTALL
diff options
context:
space:
mode:
authorIckhee Woo <ickhee.woo@samsung.com>2016-11-02 11:27:52 +0900
committerIckhee Woo <ickhee.woo@samsung.com>2016-11-02 11:27:52 +0900
commit6dffffdf36507ce48551f5f099f7d5041706f033 (patch)
tree8bbb1427ed4edbbf173dd8b70113f4e4dab8cd44 /INSTALL
parent38be7ae7b2cc9f78e759ca530c0315bbfcda7f1d (diff)
downloadmy-account-6dffffdf36507ce48551f5f099f7d5041706f033.tar.gz
my-account-6dffffdf36507ce48551f5f099f7d5041706f033.tar.bz2
my-account-6dffffdf36507ce48551f5f099f7d5041706f033.zip
Change-Id: Ibb6f1ac734fe8dfd604c3ff4238d8d8bb03013d3 Signed-off-by: Ickhee Woo <ickhee.woo@samsung.com>
Diffstat (limited to 'INSTALL')
-rw-r--r--INSTALL34
1 files changed, 34 insertions, 0 deletions
diff --git a/INSTALL b/INSTALL
new file mode 100644
index 0000000..b4c30f0
--- /dev/null
+++ b/INSTALL
@@ -0,0 +1,34 @@
+1. make the build directory
+
+ ex)
+
+ $ mkdir build
+
+
+2. change the working directory to the build directory
+
+ ex)
+
+ $ cd build
+
+
+3. run 'cmake'
+
+ $ cmake ${SOURCE_DIR} -DCMAKE_INSTALL_PREFIX=/usr
+
+ ex)
+
+ $ cmake .. -DCMAKE_INSTALL_PREFIX=/usr
+
+ or
+
+ $ cmake ..
+
+
+4. make & make install
+
+ ex)
+
+ $ make -j 2 && make install
+
+