Release 1.1.1

* optimization
This commit is contained in:
arcan1s
2013-09-03 18:09:26 +04:00
parent 6b0a2a47db
commit 473d195ea9
41 changed files with 172 additions and 100 deletions

View File

@ -32,7 +32,7 @@ PROJECT_NAME = mm_radf
# 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.

View File

@ -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 ()

View File

@ -127,7 +127,7 @@ int printing_head (const char *output, const int log, const int quiet, const int
FILE *f_out;
f_out = fopen (output, "w");
fprintf (f_out, "radf ::: V.1.1.0\n\n");
fprintf (f_out, "radf ::: V.1.1.1\n\n");
fprintf (f_out, "CONFIGURATION\n");
fprintf (f_out, "LOG=%i\nQUIET=%i\nMATRIX=%i\n", log, quiet, matrix);

View File

@ -70,13 +70,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>
*/
@ -153,7 +163,7 @@ int main(int argc, char *argv[])
sprintf (tmp_str, " mm_radf\n");
sprintf (tmp_str, "%sProgram that calculates radial distribution function (RDF) or radial-angles\n", tmp_str);
sprintf (tmp_str, "%sdistribution function\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);