Release 1.0.3

This commit is contained in:
arcan1s
2013-08-30 19:18:24 +04:00
parent 176918b005
commit cdbaa00d06
69 changed files with 526 additions and 118 deletions

View File

@ -6,13 +6,9 @@ cmake_policy(SET CMP0015 NEW)
# set project name
set (PROJECT ${MM_PREFIX}statgen)
set (_PROJECT mm_statgen)
# set additional cmake file
include (${PROJECT}.cmake)
# additional options
OPTION (WITH_DEBUG_MODE "Build with debug mode" OFF)
OPTION (ADD_INCLUDE "Add include files" OFF)
include (${_PROJECT}.cmake)
# set libraries
set (LIBRARIES)

View File

@ -1,7 +1,9 @@
CMakeFlags:
-DCMAKE_INSTALL_PREFIX= - install prefix (default is '/usr/local')
-DADD_INCLUDE=1 - install include files (default is disable)
-DADD_DOCS=1 - install documentation (default is disable)
-DWITH_DEBUG_MODE=1 - compile with flag '-g' (default is disable)
-DMM_PREFIX - prefix for mm components (test flag)
Install for Linux:
mkdir build && cd build

View File

@ -1,5 +1,5 @@
mm_statgen - program that analyzes molecular dynamic trajectories using topological analysis
Version: 1.0.2
Version: 1.0.3
License: GPL
Usage:

View File

@ -1,8 +1,8 @@
# set directories
set (PROJECT_BINARY_DIR bin)
set (PROJECT_SOURCE_DIR src)
set (PROJECT_INCLUDE_DIR include)
set (PROJECT_LIB_DIR lib)
set (PROJECT_SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/src)
set (PROJECT_INCLUDE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/include)
set (PROJECT_LIB_DIR ${CMAKE_CURRENT_SOURCE_DIR}/lib)
# include_path
include_directories (${PROJECT_INCLUDE_DIR}/${PROJECT}

View File

@ -32,7 +32,7 @@ PROJECT_NAME = mm_statgen
# This could be handy for archiving the generated documentation or
# if some version control system is used.
PROJECT_NUMBER = V.1.0.2
PROJECT_NUMBER = V.1.0.3
# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer

Binary file not shown.

View File

@ -19,4 +19,7 @@ target_link_libraries (${PROJECT} ${ADDITIONAL_LIB})
INSTALL (TARGETS ${PROJECT} DESTINATION bin)
if (ADD_INCLUDE)
INSTALL (FILES ${PUBLIC_HEADERS} DESTINATION include/${PROJECT})
endif ()
endif ()
if (ADD_DOCS)
INSTALL (FILES ${PROJECT_SOURCE_DIR}/../${_PROJECT}.pdf DESTINATION share/doc/mathmech)
endif ()

View File

@ -66,8 +66,14 @@
* You may also download compiled executable file for Win_x86.
*
* @page Changelog
* V.1.0.2 (2013-07-27)
* * initial release
* V.1.0.3 (2013-08-30)
* <ul>
* <li> Bug fixes
* </ul>
* V.1.0.1 (2013-07-27)
* <ul>
* <li> initial release
* </ul>
*/
#include <math.h>
@ -162,7 +168,7 @@ int main (int argc, char *argv[])
{
sprintf (tmp_str, " mm_statgen\n");
sprintf (tmp_str, "%sProgram for analyze molecular dynamic trajectories\n", tmp_str);
sprintf (tmp_str, "%sVersion : 1.0.2 License : GPL\n", tmp_str);
sprintf (tmp_str, "%sVersion : 1.0.3 License : GPL\n", tmp_str);
sprintf (tmp_str, "%s Evgeniy Alekseev aka arcanis\n", tmp_str);
sprintf (tmp_str, "%s E-mail : esalexeev@gmail.com\n\n", tmp_str);
sprintf (tmp_str, "%sUsage:\n", tmp_str);