summaryrefslogtreecommitdiff
path: root/INSTALL
diff options
context:
space:
mode:
authorJinkun Jang <jinkun.jang@samsung.com>2013-03-13 01:38:11 +0900
committerJinkun Jang <jinkun.jang@samsung.com>2013-03-13 01:38:11 +0900
commit36f20f52a1d035d10e0bcfac4125d67cfc6ff03a (patch)
tree20bc360a5c906db06dbcd2ffbc967297767ec63b /INSTALL
parent80695614233c7e90e9ac9d38cd816f9fbeb07d52 (diff)
downloadpwlock-36f20f52a1d035d10e0bcfac4125d67cfc6ff03a.tar.gz
pwlock-36f20f52a1d035d10e0bcfac4125d67cfc6ff03a.tar.bz2
pwlock-36f20f52a1d035d10e0bcfac4125d67cfc6ff03a.zip
Tizen 2.1 base
Diffstat (limited to 'INSTALL')
-rwxr-xr-xINSTALL33
1 files changed, 33 insertions, 0 deletions
diff --git a/INSTALL b/INSTALL
new file mode 100755
index 0000000..3915bad
--- /dev/null
+++ b/INSTALL
@@ -0,0 +1,33 @@
+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=/opt/apps/${PKGNAME}
+
+ ex)
+
+ $ cmake .. -DCMAKE_INSTALL_PREFIX=/opt/apps/${PKGNAME}
+
+ or
+
+ $ cmake ..
+
+
+4. make & make install
+
+ ex)
+
+ $ make -j 2 && make install
+