From ff3e0daba11569aa7673f79ee168e191dbeae792 Mon Sep 17 00:00:00 2001 From: Thomas FORGIONE Date: Thu, 12 Mar 2015 10:49:08 +0100 Subject: [PATCH] CMakeLists and doxygen --- Code/include/Meshing/Meshing.hpp | 14 ++++++++++++++ Code/src/Animation/CMakeLists.txt | 3 --- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/Code/include/Meshing/Meshing.hpp b/Code/include/Meshing/Meshing.hpp index 45cb2b1..4976cbc 100644 --- a/Code/include/Meshing/Meshing.hpp +++ b/Code/include/Meshing/Meshing.hpp @@ -5,6 +5,20 @@ /// \defgroup meshing Meshing module /// /// Contains the function and classes to mesh 3D skeletons +/// +/// This modules contains a few binaries : +/// - \code MainDisplay \endcode +/// - \code TestJunction3 \endcode +/// - \code TestJunction4 \endcode +/// +/// \section MainDisplay +/// This program simply loads a \code .skl \encode file and display it with +/// OpenGL. +/// +/// \section TestJunction +/// This program simply computes the result of the junctions on three circles. +/// \code TestJunction3 \endcode computes a junction from three circles and +/// \code TestJunction4 \endcode computes it from four. ////////////////////////////////////////////////// #include diff --git a/Code/src/Animation/CMakeLists.txt b/Code/src/Animation/CMakeLists.txt index 7054424..a477c09 100644 --- a/Code/src/Animation/CMakeLists.txt +++ b/Code/src/Animation/CMakeLists.txt @@ -1,5 +1,2 @@ -add_executable(MainClick MainClick.cpp Click.cpp) -target_link_libraries(MainClick Geometry ${SFML_LIBRARIES}) - add_executable(AnimatedMain AnimatedMain.cpp AnimatedMesh.cpp Click.cpp Menu.cpp) target_link_libraries(AnimatedMain Geometry SFMLTools ${SFML_LIBRARIES} ${OPENGL_LIBRARIES})