CMakeLists and doxygen

This commit is contained in:
Thomas FORGIONE 2015-03-12 10:49:08 +01:00
parent 730f5534a4
commit ff3e0daba1
2 changed files with 14 additions and 3 deletions

View File

@ -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 <Meshing/Skeleton3D.hpp>

View File

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