Skip to content
Snippets Groups Projects
Commit 91ff3d0b authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

renamed VERSIONS.txt into CHANGELOG.txt

move CHANGELOG, CREDITS and LICENCE to the top-level directory
parent f6a8af0f
No related branches found
No related tags found
No related merge requests found
File moved
...@@ -1544,8 +1544,9 @@ if(UNIX) ...@@ -1544,8 +1544,9 @@ if(UNIX)
endif(UNIX) endif(UNIX)
set(WELCOME_FILE ${CMAKE_CURRENT_SOURCE_DIR}/doc/WELCOME.txt) set(WELCOME_FILE ${CMAKE_CURRENT_SOURCE_DIR}/doc/WELCOME.txt)
set(LICENSE_FILE ${CMAKE_CURRENT_SOURCE_DIR}/doc/LICENSE.txt) set(LICENSE_FILE ${CMAKE_CURRENT_SOURCE_DIR}/LICENSE.txt)
set(CREDITS_FILE ${CMAKE_CURRENT_SOURCE_DIR}/doc/CREDITS.txt) set(CREDITS_FILE ${CMAKE_CURRENT_SOURCE_DIR}/CREDITS.txt)
set(CHANGELOG_FILE ${CMAKE_CURRENT_SOURCE_DIR}/CHANGELOG.txt)
set(ONELAB_PY ${CMAKE_CURRENT_SOURCE_DIR}/contrib/onelab/python/onelab.py) set(ONELAB_PY ${CMAKE_CURRENT_SOURCE_DIR}/contrib/onelab/python/onelab.py)
file(GLOB TUTORIAL_FILES ${CMAKE_CURRENT_SOURCE_DIR}/tutorial/?*.*) file(GLOB TUTORIAL_FILES ${CMAKE_CURRENT_SOURCE_DIR}/tutorial/?*.*)
file(GLOB DEMOS ${CMAKE_CURRENT_SOURCE_DIR}/demos/*) file(GLOB DEMOS ${CMAKE_CURRENT_SOURCE_DIR}/demos/*)
...@@ -1595,6 +1596,7 @@ if(WIN32 OR CYGWIN) ...@@ -1595,6 +1596,7 @@ if(WIN32 OR CYGWIN)
unix2dos(WELCOME_FILE) unix2dos(WELCOME_FILE)
unix2dos(LICENSE_FILE) unix2dos(LICENSE_FILE)
unix2dos(CREDITS_FILE) unix2dos(CREDITS_FILE)
unix2dos(CHANGELOG_FILE)
unix2dos(TUTORIAL_FILES) unix2dos(TUTORIAL_FILES)
foreach(DIR ${DEMOS_DIRS}) foreach(DIR ${DEMOS_DIRS})
file(GLOB DEMO_FILES ${DIR}/?*.*) file(GLOB DEMO_FILES ${DIR}/?*.*)
...@@ -1668,6 +1670,7 @@ endif(ENABLE_BUILD_LIB OR ENABLE_BUILD_SHARED OR ENABLE_BUILD_DYNAMIC) ...@@ -1668,6 +1670,7 @@ endif(ENABLE_BUILD_LIB OR ENABLE_BUILD_SHARED OR ENABLE_BUILD_DYNAMIC)
install(FILES ${WELCOME_FILE} DESTINATION ${GMSH_DOC} RENAME README.txt) install(FILES ${WELCOME_FILE} DESTINATION ${GMSH_DOC} RENAME README.txt)
install(FILES ${LICENSE_FILE} DESTINATION ${GMSH_DOC}) install(FILES ${LICENSE_FILE} DESTINATION ${GMSH_DOC})
install(FILES ${CREDITS_FILE} DESTINATION ${GMSH_DOC}) install(FILES ${CREDITS_FILE} DESTINATION ${GMSH_DOC})
install(FILES ${CHANGELOG_FILE} DESTINATION ${GMSH_DOC})
install(FILES ${TUTORIAL_FILES} DESTINATION ${GMSH_DOC}/tutorial) install(FILES ${TUTORIAL_FILES} DESTINATION ${GMSH_DOC}/tutorial)
foreach(DIR ${DEMOS_DIRS}) foreach(DIR ${DEMOS_DIRS})
get_filename_component(DEMOS_DIR_NAME ${DIR} NAME) get_filename_component(DEMOS_DIR_NAME ${DIR} NAME)
...@@ -1723,7 +1726,7 @@ execute_process(COMMAND ${CMAKE_COMMAND} -E echo "${OPT_TEXI}" ...@@ -1723,7 +1726,7 @@ execute_process(COMMAND ${CMAKE_COMMAND} -E echo "${OPT_TEXI}"
if(MAKEINFO AND TEXI2PDF) if(MAKEINFO AND TEXI2PDF)
add_custom_target(doc COMMAND ${CMAKE_COMMAND} -E tar zcf add_custom_target(doc COMMAND ${CMAKE_COMMAND} -E tar zcf
${CMAKE_CURRENT_BINARY_DIR}/gmsh-${GMSH_VERSION}-doc.tgz ${CMAKE_CURRENT_BINARY_DIR}/gmsh-${GMSH_VERSION}-doc.tgz
doc/CREDITS.txt doc/LICENSE.txt doc/VERSIONS.txt CREDITS.txt LICENSE.txt CHANGELOG.txt
doc/gmsh.1 doc/texinfo/gmsh.html doc/texinfo/gmsh.info doc/gmsh.1 doc/texinfo/gmsh.html doc/texinfo/gmsh.info
doc/texinfo/gmsh.pdf doc/texinfo/gmsh.txt doc/texinfo/gmsh.pdf doc/texinfo/gmsh.txt
COMMAND ${CMAKE_COMMAND} -E remove ${TEX_OBJ} COMMAND ${CMAKE_COMMAND} -E remove ${TEX_OBJ}
......
File moved
File moved
...@@ -170,7 +170,7 @@ algorithms</a>. ...@@ -170,7 +170,7 @@ algorithms</a>.
<a href="http://gitlab.onelab.info/gmsh/gmsh/commits/master">time line</a> <a href="http://gitlab.onelab.info/gmsh/gmsh/commits/master">time line</a>
of changes and the <a href="http://gitlab.onelab.info/gmsh/gmsh/issues">bug of changes and the <a href="http://gitlab.onelab.info/gmsh/gmsh/issues">bug
tracking</a> database tracking</a> database
<li><a href="doc/VERSIONS.txt">Version history</a> <li><a href="CHANGELOG.txt">Version history</a>
<li>Mailing lists: <li>Mailing lists:
<ul> <ul>
<li><a href="http://onelab.info/mailman/listinfo/gmsh/">gmsh</a> <li><a href="http://onelab.info/mailman/listinfo/gmsh/">gmsh</a>
...@@ -208,9 +208,9 @@ program, you can file a report directly ...@@ -208,9 +208,9 @@ program, you can file a report directly
Gmsh is copyright (C) 1997-2017 by Gmsh is copyright (C) 1997-2017 by
<a href="http://www.montefiore.ulg.ac.be/~geuzaine">C. Geuzaine</a> and <a href="http://www.montefiore.ulg.ac.be/~geuzaine">C. Geuzaine</a> and
<a href="http://perso.uclouvain.be/jean-francois.remacle/">J.-F. Remacle</a> <a href="http://perso.uclouvain.be/jean-francois.remacle/">J.-F. Remacle</a>
(see the <a href="doc/CREDITS.txt">CREDITS</a> file for more information) and (see the <a href="CREDITS.txt">CREDITS</a> file for more information) and
is distributed under the terms of is distributed under the terms of
the <a href="doc/LICENSE.txt">GNU General Public License the <a href="LICENSE.txt">GNU General Public License
(GPL)</a> (version 2 or later, with an exception to allow for easier (GPL)</a> (version 2 or later, with an exception to allow for easier
linking with external libraries). linking with external libraries).
</p> </p>
......
...@@ -5660,7 +5660,7 @@ If your dataset is constant per element make sure you don't use the ...@@ -5660,7 +5660,7 @@ If your dataset is constant per element make sure you don't use the
@cindex History, versions @cindex History, versions
@cindex Changelog @cindex Changelog
@verbatiminclude ../VERSIONS.txt @verbatiminclude ../../CHANGELOG.txt
@c ========================================================================= @c =========================================================================
@c Copyright and credits @c Copyright and credits
...@@ -5674,7 +5674,7 @@ If your dataset is constant per element make sure you don't use the ...@@ -5674,7 +5674,7 @@ If your dataset is constant per element make sure you don't use the
@cindex Contributors, list @cindex Contributors, list
@cindex Credits @cindex Credits
@verbatiminclude ../CREDITS.txt @verbatiminclude ../../CREDITS.txt
@c ========================================================================= @c =========================================================================
@c License @c License
...@@ -5685,7 +5685,7 @@ If your dataset is constant per element make sure you don't use the ...@@ -5685,7 +5685,7 @@ If your dataset is constant per element make sure you don't use the
@cindex License @cindex License
@verbatiminclude ../LICENSE.txt @verbatiminclude ../../LICENSE.txt
@c ========================================================================= @c =========================================================================
@c Concept Index (cindex) @c Concept Index (cindex)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment