Horsmir/hstest
Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Repository files navigation
Hs Test 0.5.2
The program is designed for online testing disciples students and staff of facilities.
Written in Qt-C++.
Depends: Qt4 v.>=4.8.
Copyright © 2012 Roman Brown.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
E-Mail: firdragon76@gmail.com
//--------------------------------------------------------------------------------------//
Install server:
cd <source_directory>
mkdir -v build
cd build
cmake -DCMAKE_INSTALL_PREFIX=<install_directory> \
-Dlocalstatedir=<install_data_directory(default=/var)> \
-DCMAKE_BUILD_TYPE=Release ..
make hstest-server
cd server
make install
Run server as daemon:
<install_directory>/bin/hstest-server
Run server as no daemon:
<install_directory>/bin/hstest-server --no-daemon
Run configure utility:
(as root)<install_directory>/bin/hstestcfg
//---------------------------------------------------------------------------------------//
Install client:
cd <source_directory>
mkdir -v build
cd build
cmake -DCMAKE_INSTALL_PREFIX=<install_directory> \
-DCMAKE_BUILD_TYPE=Release ..
make hstest-client
cd client
make install
Run client:
<install_directory>/bin/hstest-client
//---------------------------------------------------------------------------------------//