mirror of
https://github.com/arcan1s/moldyn.git
synced 2025-07-15 22:59:59 +00:00
Release 1.1.1
* optimization
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
mm_statgen - program that analyzes molecular dynamic trajectories using topological analysis
|
||||
Version: 1.1.0
|
||||
Version: 1.1.1
|
||||
License: GPL
|
||||
|
||||
Usage:
|
||||
|
@ -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.1.0
|
||||
PROJECT_NUMBER = V.1.1.1
|
||||
|
||||
# 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.
@ -1,5 +1,6 @@
|
||||
# set files
|
||||
aux_source_directory (. SOURCES)
|
||||
file (GLOB SOURCES *.c)
|
||||
file (GLOB HEADERS *.h)
|
||||
|
||||
# set library
|
||||
if (CMAKE_COMPILER_IS_GNUCXX)
|
||||
@ -9,17 +10,15 @@ else ()
|
||||
endif ()
|
||||
|
||||
# message
|
||||
message (STATUS "SOURCES: ${SOURCES}")
|
||||
message (STATUS "${PROJECT} SOURCES: ${SOURCES}")
|
||||
message (STATUS "${PROJECT} HEADERS: ${HEADERS}")
|
||||
|
||||
# link libraries and compile
|
||||
add_executable (${PROJECT} ${SOURCES})
|
||||
add_executable (${PROJECT} ${SOURCES} ${HEADERS})
|
||||
target_link_libraries (${PROJECT} ${ADDITIONAL_LIB})
|
||||
|
||||
# install properties
|
||||
INSTALL (TARGETS ${PROJECT} DESTINATION bin)
|
||||
if (ADD_INCLUDE)
|
||||
INSTALL (FILES ${PUBLIC_HEADERS} DESTINATION include/${PROJECT})
|
||||
endif ()
|
||||
if (ADD_DOCS)
|
||||
INSTALL (FILES ${PROJECT_SOURCE_DIR}/../${_PROJECT}.pdf DESTINATION share/doc/mathmech)
|
||||
endif ()
|
||||
|
@ -92,7 +92,7 @@ int printing_head (const char *output, const int log, const int quiet,
|
||||
FILE *f_out;
|
||||
|
||||
f_out = fopen (output, "w");
|
||||
fprintf (f_out, "statgen ::: V.1.1.0\n\n");
|
||||
fprintf (f_out, "statgen ::: V.1.1.1\n\n");
|
||||
fprintf (f_out, "CONFIGURATION\n");
|
||||
|
||||
fprintf (f_out, "LOG=%i\nQUIET=%i\n", log, quiet);
|
||||
|
@ -66,13 +66,23 @@
|
||||
* You may also download compiled executable file for Win_x86.
|
||||
*
|
||||
* @page Changelog
|
||||
* V.1.1.1 (2013-09-03)
|
||||
* <ul>
|
||||
* <li>optimization
|
||||
* </ul>
|
||||
* V.1.1.0 (2013-09-02)
|
||||
* <ul>
|
||||
* <li>added help window
|
||||
* <li>added help docs
|
||||
* <li>small bug fixes
|
||||
* </ul>
|
||||
* V.1.0.3 (2013-08-30)
|
||||
* <ul>
|
||||
* <li> Bug fixes
|
||||
* <li>bug fixes
|
||||
* </ul>
|
||||
* V.1.0.1 (2013-07-27)
|
||||
* <ul>
|
||||
* <li> initial release
|
||||
* <li>initial release
|
||||
* </ul>
|
||||
*/
|
||||
|
||||
@ -168,7 +178,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.1.0 License : GPL\n", tmp_str);
|
||||
sprintf (tmp_str, "%sVersion : 1.1.1 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);
|
||||
|
Reference in New Issue
Block a user