Contents
Build requirements:
- gcc
- cmake
- linux >= 2.6.11
- lua (or luajit)
Run requirements:
- lua (or luajit)
There are a few build options, and their defaults, that you can specify:
CMAKE_INSTALL_PREFIX =
/usr/localThe target prefix that make install will install to.This is what you would expect from./configure --prefix=fooCMAKE_BUILD_TYPE =
ReleaseSpecifies the build type for make based generators.Possible values: Debug, Release, MinSizeRel
An example of the build steps:
$ mkdir build $ cd build $ cmake -DCMAKE_INSTALL_PREFIX=/usr/local .. $ make
After building, while in the build directory:
$ make install
#!/usr/bin/env lua
s = require "setproctitle"
print(s.getproctitle())
s.setproctitle('bill')
print(s.getproctitle())
Free use of this software is granted under the terms of the MIT (X11) License. See LICENSE file for more information.