diff options
author | Ickhee Woo <ickhee.woo@samsung.com> | 2016-11-02 11:27:52 +0900 |
---|---|---|
committer | Ickhee Woo <ickhee.woo@samsung.com> | 2016-11-02 11:27:52 +0900 |
commit | 6dffffdf36507ce48551f5f099f7d5041706f033 (patch) | |
tree | 8bbb1427ed4edbbf173dd8b70113f4e4dab8cd44 /INSTALL | |
parent | 38be7ae7b2cc9f78e759ca530c0315bbfcda7f1d (diff) | |
download | my-account-6dffffdf36507ce48551f5f099f7d5041706f033.tar.gz my-account-6dffffdf36507ce48551f5f099f7d5041706f033.tar.bz2 my-account-6dffffdf36507ce48551f5f099f7d5041706f033.zip |
initial commit for tizen_3.0 branch outsubmit/tizen_3.0/20161102.044737accepted/tizen/3.0/wearable/20161102.075503
Change-Id: Ibb6f1ac734fe8dfd604c3ff4238d8d8bb03013d3
Signed-off-by: Ickhee Woo <ickhee.woo@samsung.com>
Diffstat (limited to 'INSTALL')
-rw-r--r-- | INSTALL | 34 |
1 files changed, 34 insertions, 0 deletions
@@ -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 + + |