summaryrefslogtreecommitdiff
path: root/INSTALL
diff options
context:
space:
mode:
authorKim Kibum <kb0929.kim@samsung.com>2012-06-08 14:54:11 +0900
committerKim Kibum <kb0929.kim@samsung.com>2012-06-08 14:54:11 +0900
commita567f8701cbb30a17da78748f90c4037e579e858 (patch)
tree9fde6787eab952097dc16583caa70e9ff1dc5259 /INSTALL
parent80695614233c7e90e9ac9d38cd816f9fbeb07d52 (diff)
downloadpwlock-a567f8701cbb30a17da78748f90c4037e579e858.tar.gz
pwlock-a567f8701cbb30a17da78748f90c4037e579e858.tar.bz2
pwlock-a567f8701cbb30a17da78748f90c4037e579e858.zip
apply FSL(Flora Software License)
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
+