mirror of
https://github.com/arcan1s/moldyn.git
synced 2025-07-16 07:10:00 +00:00
+ added dependecies
+ added oxygen docs building + added versioning * some optimization
This commit is contained in:
@ -15,6 +15,7 @@ message (STATUS "${SUBPROJECT} HEADERS: ${HEADERS}")
|
||||
|
||||
# link libraries and compile
|
||||
add_executable (${MM_PREFIX}${SUBPROJECT} ${SOURCES} ${HEADERS})
|
||||
add_dependencies (${MM_PREFIX}${SUBPROJECT} ${LIBRARIES})
|
||||
target_link_libraries (${MM_PREFIX}${SUBPROJECT} ${ADDITIONAL_LIB} ${LIBRARIES})
|
||||
|
||||
# install properties
|
||||
|
@ -8,6 +8,7 @@
|
||||
#include <string.h>
|
||||
|
||||
#include "add_main.h"
|
||||
#include <version.h>
|
||||
#include <mathmech/atom_types.h>
|
||||
#include <mathmech/messages.h>
|
||||
#include <mathmech/print_trj.h>
|
||||
@ -62,7 +63,7 @@ int main(int argc, char *argv[])
|
||||
{
|
||||
sprintf (tmp_str, " mm_trj\n");
|
||||
sprintf (tmp_str, "%sProgram that generates trajectory files\n", tmp_str);
|
||||
sprintf (tmp_str, "%sVersion : 1.2.0 License : GPL\n", tmp_str);
|
||||
sprintf (tmp_str, "%sVersion : %s License : GPL\n", tmp_str, PROJ_VERSION);
|
||||
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