Merge branch 'USE_QT_AUTOMOC' into 'master'

Use qt automoc

See merge request OpenMesh/OpenMesh!201
This commit is contained in:
Jan Möbius
2018-12-14 13:47:17 +01:00
17 changed files with 212 additions and 265 deletions

View File

@@ -16,9 +16,6 @@ macro (acg_qt5)
# Automatically link Qt executables to qtmain target on Windows # Automatically link Qt executables to qtmain target on Windows
cmake_policy(SET CMP0020 NEW) cmake_policy(SET CMP0020 NEW)
endif(POLICY CMP0020) endif(POLICY CMP0020)
#if (NOT QT5_FOUND)
#set (QT_MIN_VERSION ${ARGN})
#try to find qt5 automatically #try to find qt5 automatically
#for custom installation of qt5, dont use any of these variables #for custom installation of qt5, dont use any of these variables
@@ -144,50 +141,8 @@ macro (acg_qt5)
endif() endif()
endif(MSVC_IDE) endif(MSVC_IDE)
endif () # Enable automoc
endmacro () set(CMAKE_AUTOMOC ON)
# generate moc targets for sources in list endif (QT5_FOUND)
macro (acg_qt5_automoc moc_SRCS)
qt5_get_moc_flags (_moc_INCS)
list(REMOVE_DUPLICATES _moc_INCS)
set (_matching_FILES )
foreach (_current_FILE ${ARGN})
get_filename_component (_abs_FILE ${_current_FILE} ABSOLUTE)
# if "SKIP_AUTOMOC" is set to true, we will not handle this file here.
# here. this is required to make bouic work correctly:
# we need to add generated .cpp files to the sources (to compile them),
# but we cannot let automoc handle them, as the .cpp files don't exist yet when
# cmake is run for the very first time on them -> however the .cpp files might
# exist at a later run. at that time we need to skip them, so that we don't add two
# different rules for the same moc file
get_source_file_property (_skip ${_abs_FILE} SKIP_AUTOMOC)
if ( NOT _skip AND EXISTS ${_abs_FILE} )
file (READ ${_abs_FILE} _contents)
get_filename_component (_abs_PATH ${_abs_FILE} PATH)
string (REGEX MATCHALL "Q_OBJECT" _match "${_contents}")
if (_match)
get_filename_component (_basename ${_current_FILE} NAME_WE)
set (_header ${_abs_FILE})
set (_moc ${CMAKE_CURRENT_BINARY_DIR}/moc_${_basename}.cpp)
add_custom_command (OUTPUT ${_moc}
COMMAND ${QT_MOC_EXECUTABLE}
ARGS ${_moc_INCS} ${_header} -o ${_moc}
DEPENDS ${_header}
)
add_file_dependencies (${_abs_FILE} ${_moc})
set (${moc_SRCS} ${${moc_SRCS}} ${_moc})
endif ()
endif ()
endforeach ()
endmacro () endmacro ()

View File

@@ -7,9 +7,6 @@ include_directories (
${QT_INCLUDE_DIR} ${QT_INCLUDE_DIR}
) )
set (targetName DecimaterGui)
# source code directories # source code directories
set (directories set (directories
../../QtViewer ../../QtViewer
@@ -29,22 +26,15 @@ set (sources
# remove template cc files from source file list # remove template cc files from source file list
acg_drop_templates (sources) acg_drop_templates (sources)
# genereate uic and moc targets
if(QT5_FOUND)
acg_qt5_automoc (moc_targets ${headers})
else()
acg_qt4_automoc (moc_targets ${headers})
endif()
if (WIN32) if (WIN32)
acg_add_executable (${targetName} WIN32 ${sources} ${headers} ${moc_targets}) acg_add_executable (DecimaterGui WIN32 ${sources} ${headers})
# link to qtmain library to get WinMain function for a non terminal app # link to qtmain library to get WinMain function for a non terminal app
target_link_libraries (${targetName} ${QT_QTMAIN_LIBRARY}) target_link_libraries (DecimaterGui ${QT_QTMAIN_LIBRARY})
else () else ()
acg_add_executable (${targetName} ${sources} ${headers} ${moc_targets}) acg_add_executable (DecimaterGui ${sources} ${headers} )
endif () endif ()
target_link_libraries (${targetName} target_link_libraries (DecimaterGui
OpenMeshCore OpenMeshCore
OpenMeshTools OpenMeshTools
${QT_LIBRARIES} ${QT_LIBRARIES}

View File

@@ -5,16 +5,14 @@ include_directories (
${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}
) )
set (targetName commandlineDecimater)
# collect all header and source files # collect all header and source files
set (sources set (sources
../decimater.cc ../decimater.cc
) )
acg_add_executable (${targetName} ${sources}) acg_add_executable (commandlineDecimater ${sources})
target_link_libraries (${targetName} target_link_libraries (commandlineDecimater
OpenMeshCore OpenMeshCore
OpenMeshTools OpenMeshTools
) )

View File

@@ -5,15 +5,13 @@ include_directories (
${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}
) )
set (targetName Dualizer)
# collect all header and source files # collect all header and source files
acg_append_files (headers "*.hh" .) acg_append_files (headers "*.hh" .)
acg_append_files (sources "*.cc" .) acg_append_files (sources "*.cc" .)
acg_add_executable (${targetName} ${headers} ${sources}) acg_add_executable (Dualizer ${headers} ${sources})
target_link_libraries (${targetName} target_link_libraries (Dualizer
OpenMeshCore OpenMeshCore
OpenMeshTools OpenMeshTools
) )

View File

@@ -7,8 +7,6 @@ include_directories (
${QT_INCLUDE_DIR} ${QT_INCLUDE_DIR}
) )
set (targetName ProgViewer)
# collect all header and source files # collect all header and source files
acg_append_files (headers "*.hh" .) acg_append_files (headers "*.hh" .)
@@ -20,41 +18,18 @@ list (APPEND sources "../QtViewer/MeshViewerWidgetT.cc")
list (APPEND headers "../QtViewer/QGLViewerWidget.hh") list (APPEND headers "../QtViewer/QGLViewerWidget.hh")
list (APPEND headers "../QtViewer/MeshViewerWidgetT.hh") list (APPEND headers "../QtViewer/MeshViewerWidgetT.hh")
# # source code directories
# set (directories
# .
# ../QtViewer
# )
# # collect all header and source files
# acg_append_files (headers "*.hh" ${directories})
# set (sources
# ../../QtViewer/QGLViewerWidget.cc
# ../../QtViewer/MeshViewerWidgetT.cc
# ./ProgViewerWidget.cc
# )
# remove template cc files from source file list # remove template cc files from source file list
acg_drop_templates (sources) acg_drop_templates (sources)
# genereate uic and moc targets
if(QT5_FOUND)
acg_qt5_automoc (moc_targets ${headers})
else()
acg_qt4_automoc (moc_targets ${headers})
endif()
if (WIN32) if (WIN32)
acg_add_executable (${targetName} WIN32 ${sources} ${headers} ${moc_targets}) acg_add_executable( ProgViewer WIN32 ${sources} ${headers})
# link to qtmain library to get WinMain function for a non terminal app # link to qtmain library to get WinMain function for a non terminal app
target_link_libraries (${targetName} ${QT_QTMAIN_LIBRARY}) target_link_libraries( ProgViewer ${QT_QTMAIN_LIBRARY})
else () else ()
acg_add_executable (${targetName} ${sources} ${headers} ${moc_targets}) acg_add_executable( ProgViewer ${sources} ${headers})
endif () endif ()
target_link_libraries (${targetName} target_link_libraries ( ProgViewer
OpenMeshCore OpenMeshCore
OpenMeshTools OpenMeshTools
${QT_LIBRARIES} ${QT_LIBRARIES}

View File

@@ -7,8 +7,6 @@ include_directories (
${QT_INCLUDE_DIR} ${QT_INCLUDE_DIR}
) )
set (targetName QtViewer)
# source code directories # source code directories
set (directories set (directories
. .
@@ -21,23 +19,15 @@ acg_append_files (sources "*.cc" ${directories})
# remove template cc files from source file list # remove template cc files from source file list
acg_drop_templates (sources) acg_drop_templates (sources)
# genereate uic and moc targets
if(QT5_FOUND)
acg_qt5_automoc (moc_targets ${headers})
else()
acg_qt4_automoc (moc_targets ${headers})
endif()
if (WIN32) if (WIN32)
acg_add_executable (${targetName} WIN32 ${uic_targets} ${sources} ${headers} ${moc_targets}) acg_add_executable (QtViewer WIN32 ${sources} ${headers})
# link to qtmain library to get WinMain function for a non terminal app # link to qtmain library to get WinMain function for a non terminal app
target_link_libraries (${targetName} ${QT_QTMAIN_LIBRARY}) target_link_libraries (QtViewer ${QT_QTMAIN_LIBRARY})
else () else ()
acg_add_executable (${targetName} ${uic_targets} ${sources} ${headers} ${moc_targets}) acg_add_executable (QtViewer ${sources} ${headers})
endif () endif ()
target_link_libraries (${targetName} target_link_libraries (QtViewer
OpenMeshCore OpenMeshCore
OpenMeshTools OpenMeshTools
${QT_LIBRARIES} ${QT_LIBRARIES}

View File

@@ -0,0 +1,119 @@
/* ========================================================================= *
* *
* OpenMesh *
* Copyright (c) 2001-2015, RWTH-Aachen University *
* Department of Computer Graphics and Multimedia *
* All rights reserved. *
* www.openmesh.org *
* *
*---------------------------------------------------------------------------*
* This file is part of OpenMesh. *
*---------------------------------------------------------------------------*
* *
* Redistribution and use in source and binary forms, with or without *
* modification, are permitted provided that the following conditions *
* are met: *
* *
* 1. Redistributions of source code must retain the above copyright notice, *
* this list of conditions and the following disclaimer. *
* *
* 2. Redistributions in binary form must reproduce the above copyright *
* notice, this list of conditions and the following disclaimer in the *
* documentation and/or other materials provided with the distribution. *
* *
* 3. Neither the name of the copyright holder nor the names of its *
* contributors may be used to endorse or promote products derived from *
* this software without specific prior written permission. *
* *
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS *
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED *
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A *
* PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER *
* OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, *
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, *
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR *
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF *
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING *
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS *
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. *
* *
* ========================================================================= */
/*===========================================================================*\
* *
* $Revision$ *
* $Date$ *
* *
\*===========================================================================*/
#define OPENMESHAPPS_MESHVIEWERWIDGET_CC
//== INCLUDES =================================================================
#include <OpenMesh/Apps/QtViewer/MeshViewerWidget.hh>
//== IMPLEMENTATION ==========================================================
/// default constructor
MeshViewerWidget::MeshViewerWidget(QWidget* parent) : MeshViewerWidgetT<MyMesh>(parent)
{}
void MeshViewerWidget::open_mesh_gui(QString fname)
{
OpenMesh::Utils::Timer t;
t.start();
if ( fname.isEmpty() || !open_mesh(fname.toLocal8Bit(), _options) )
{
QString msg = "Cannot read mesh from file:\n '";
msg += fname;
msg += "'";
QMessageBox::critical( NULL, windowTitle(), msg);
}
t.stop();
std::cout << "Loaded mesh in ~" << t.as_string() << std::endl;
}
void MeshViewerWidget::open_texture_gui(QString fname)
{
if ( fname.isEmpty() || !open_texture( fname.toLocal8Bit() ) )
{
QString msg = "Cannot load texture image from file:\n '";
msg += fname;
msg += "'\n\nPossible reasons:\n";
msg += "- Mesh file didn't provide texture coordinates\n";
msg += "- Texture file does not exist\n";
msg += "- Texture file is not accessible.\n";
QMessageBox::warning( NULL, windowTitle(), msg );
}
}
void MeshViewerWidget::query_open_mesh_file() {
QString fileName = QFileDialog::getOpenFileName(this,
tr("Open mesh file"),
tr(""),
tr("OBJ Files (*.obj);;"
"OFF Files (*.off);;"
"STL Files (*.stl);;"
"All Files (*)"));
if (!fileName.isEmpty())
open_mesh_gui(fileName);
}
void MeshViewerWidget::query_open_texture_file() {
QString fileName = QFileDialog::getOpenFileName(this,
tr("Open texture file"),
tr(""),
tr("PNG Files (*.png);;"
"BMP Files (*.bmp);;"
"GIF Files (*.gif);;"
"JPEG Files (*.jpg);;"
"TIFF Files (*.tif);;"
"All Files (*)"));
if (!fileName.isEmpty())
open_texture_gui(fileName);
}
//=============================================================================

View File

@@ -46,8 +46,7 @@
* * * *
\*===========================================================================*/ \*===========================================================================*/
#ifndef OPENMESHAPPS_VIEWERWIDGET_HH #pragma once
#define OPENMESHAPPS_VIEWERWIDGET_HH
//== INCLUDES ================================================================= //== INCLUDES =================================================================
@@ -55,6 +54,7 @@
#include <QString> #include <QString>
#include <QMessageBox> #include <QMessageBox>
#include <QFileDialog> #include <QFileDialog>
#include <iostream>
#include <OpenMesh/Tools/Utils/getopt.h> #include <OpenMesh/Tools/Utils/getopt.h>
#include <OpenMesh/Tools/Utils/Timer.hh> #include <OpenMesh/Tools/Utils/Timer.hh>
#include <OpenMesh/Apps/QtViewer/MeshViewerWidgetT.hh> #include <OpenMesh/Apps/QtViewer/MeshViewerWidgetT.hh>
@@ -80,70 +80,24 @@ typedef OpenMesh::TriMesh_ArrayKernelT<MyTraits> MyMesh;
class MeshViewerWidget : public MeshViewerWidgetT<MyMesh> class MeshViewerWidget : public MeshViewerWidgetT<MyMesh>
{ {
Q_OBJECT Q_OBJECT
public: public:
/// default constructor /// default constructor
explicit MeshViewerWidget(QWidget* parent=0) : MeshViewerWidgetT<MyMesh>(parent) explicit MeshViewerWidget(QWidget* parent=0);
{}
OpenMesh::IO::Options& options() { return _options; } OpenMesh::IO::Options& options() { return _options; }
const OpenMesh::IO::Options& options() const { return _options; } const OpenMesh::IO::Options& options() const { return _options; }
void setOptions(const OpenMesh::IO::Options& opts) { _options = opts; } void setOptions(const OpenMesh::IO::Options& opts) { _options = opts; }
void open_mesh_gui(QString fname) void open_mesh_gui(QString fname);
{
OpenMesh::Utils::Timer t; void open_texture_gui(QString fname);
t.start();
if ( fname.isEmpty() || !open_mesh(fname.toLocal8Bit(), _options) )
{
QString msg = "Cannot read mesh from file:\n '";
msg += fname;
msg += "'";
QMessageBox::critical( NULL, windowTitle(), msg);
}
t.stop();
std::cout << "Loaded mesh in ~" << t.as_string() << std::endl;
}
void open_texture_gui(QString fname)
{
if ( fname.isEmpty() || !open_texture( fname.toLocal8Bit() ) )
{
QString msg = "Cannot load texture image from file:\n '";
msg += fname;
msg += "'\n\nPossible reasons:\n";
msg += "- Mesh file didn't provide texture coordinates\n";
msg += "- Texture file does not exist\n";
msg += "- Texture file is not accessible.\n";
QMessageBox::warning( NULL, windowTitle(), msg );
}
}
public slots: public slots:
void query_open_mesh_file() { void query_open_mesh_file();
QString fileName = QFileDialog::getOpenFileName(this,
tr("Open mesh file"), void query_open_texture_file();
tr(""),
tr("OBJ Files (*.obj);;"
"OFF Files (*.off);;"
"STL Files (*.stl);;"
"All Files (*)"));
if (!fileName.isEmpty())
open_mesh_gui(fileName);
}
void query_open_texture_file() {
QString fileName = QFileDialog::getOpenFileName(this,
tr("Open texture file"),
tr(""),
tr("PNG Files (*.png);;"
"BMP Files (*.bmp);;"
"GIF Files (*.gif);;"
"JPEG Files (*.jpg);;"
"TIFF Files (*.tif);;"
"All Files (*)"));
if (!fileName.isEmpty())
open_texture_gui(fileName);
}
private: private:
OpenMesh::IO::Options _options; OpenMesh::IO::Options _options;
}; };
#endif

View File

@@ -47,8 +47,7 @@
\*===========================================================================*/ \*===========================================================================*/
#ifndef OPENMESHAPPS_MESHVIEWERWIDGETT_HH #pragma once
#define OPENMESHAPPS_MESHVIEWERWIDGETT_HH
//== INCLUDES ================================================================= //== INCLUDES =================================================================
@@ -75,6 +74,7 @@ class QImage;
template <typename M> template <typename M>
class MeshViewerWidgetT : public QGLViewerWidget class MeshViewerWidgetT : public QGLViewerWidget
{ {
public: public:
typedef M Mesh; typedef M Mesh;
@@ -200,6 +200,4 @@ protected:
# include "MeshViewerWidgetT.cc" # include "MeshViewerWidgetT.cc"
#endif #endif
//============================================================================= //=============================================================================
#endif // OPENMESHAPPS_MESHVIEWERWIDGETT_HH defined
//=============================================================================

View File

@@ -5,15 +5,13 @@ include_directories (
${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}
) )
set (targetName Smoothing)
# collect all header and source files # collect all header and source files
acg_append_files (headers "*.hh" .) acg_append_files (headers "*.hh" .)
acg_append_files (sources "*.cc" .) acg_append_files (sources "*.cc" .)
acg_add_executable (${targetName} ${headers} ${sources}) acg_add_executable (Smoothing ${headers} ${sources})
target_link_libraries (${targetName} target_link_libraries (Smoothing
OpenMeshCore OpenMeshCore
OpenMeshTools OpenMeshTools
) )

View File

@@ -7,8 +7,6 @@ include_directories (
${QT_INCLUDE_DIR} ${QT_INCLUDE_DIR}
) )
set (targetName SubdividerGui)
# source code directories # source code directories
set (directories set (directories
../../QtViewer ../../QtViewer
@@ -28,22 +26,15 @@ set (sources
# remove template cc files from source file list # remove template cc files from source file list
acg_drop_templates (sources) acg_drop_templates (sources)
# genereate uic and moc targets
if(QT5_FOUND)
acg_qt5_automoc (moc_targets ${headers})
else()
acg_qt4_automoc (moc_targets ${headers})
endif()
if (WIN32) if (WIN32)
acg_add_executable (${targetName} WIN32 ${sources} ${headers} ${moc_targets}) acg_add_executable (SubdividerGui WIN32 ${sources} ${headers})
# link to qtmain library to get WinMain function for a non terminal app # link to qtmain library to get WinMain function for a non terminal app
target_link_libraries (${targetName} ${QT_QTMAIN_LIBRARY}) target_link_libraries (SubdividerGui ${QT_QTMAIN_LIBRARY})
else () else ()
acg_add_executable (${targetName} ${sources} ${headers} ${moc_targets}) acg_add_executable (SubdividerGui ${sources} ${headers})
endif () endif ()
target_link_libraries (${targetName} target_link_libraries (SubdividerGui
OpenMeshCore OpenMeshCore
OpenMeshTools OpenMeshTools
${QT_LIBRARIES} ${QT_LIBRARIES}

View File

@@ -5,16 +5,14 @@ include_directories (
${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}
) )
set (targetName commandlineAdaptiveSubdivider)
# collect all header and source files # collect all header and source files
set (sources set (sources
../adaptive_subdivider.cc ../adaptive_subdivider.cc
) )
acg_add_executable (${targetName} ${sources}) acg_add_executable (commandlineAdaptiveSubdivider ${sources})
target_link_libraries (${targetName} target_link_libraries (commandlineAdaptiveSubdivider
OpenMeshCore OpenMeshCore
OpenMeshTools OpenMeshTools
) )

View File

@@ -5,16 +5,14 @@ include_directories (
${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}
) )
set (targetName commandlineSubdivider)
# collect all header and source files # collect all header and source files
set (sources set (sources
../subdivider.cc ../subdivider.cc
) )
acg_add_executable (${targetName} ${sources}) acg_add_executable (commandlineSubdivider ${sources})
target_link_libraries (${targetName} target_link_libraries (commandlineSubdivider
OpenMeshCore OpenMeshCore
OpenMeshTools OpenMeshTools
) )

View File

@@ -5,16 +5,14 @@ include_directories (
${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}
) )
set (targetName Analyzer)
# collect all header and source files # collect all header and source files
set (sources set (sources
./vdpmanalyzer.cc ./vdpmanalyzer.cc
) )
acg_add_executable (${targetName} ${sources}) acg_add_executable (Analyzer ${sources})
target_link_libraries (${targetName} target_link_libraries (Analyzer
OpenMeshCore OpenMeshCore
OpenMeshTools OpenMeshTools
) )

View File

@@ -7,8 +7,6 @@ include_directories (
${QT_INCLUDE_DIR} ${QT_INCLUDE_DIR}
) )
set (targetName Synthesizer)
# collect all header and source files # collect all header and source files
acg_append_files (headers "*.hh" .) acg_append_files (headers "*.hh" .)
acg_append_files (sources "*.cc" .) acg_append_files (sources "*.cc" .)
@@ -22,22 +20,15 @@ list (APPEND headers "../../QtViewer/MeshViewerWidgetT.hh")
# remove template cc files from source file list # remove template cc files from source file list
acg_drop_templates (sources) acg_drop_templates (sources)
# genereate uic and moc targets
if(QT5_FOUND)
acg_qt5_automoc (moc_targets ${headers})
else()
acg_qt4_automoc (moc_targets ${headers})
endif()
if (WIN32) if (WIN32)
acg_add_executable (${targetName} WIN32 ${sources} ${headers} ${moc_targets}) acg_add_executable (Synthesizer WIN32 ${sources} ${headers})
# link to qtmain library to get WinMain function for a non terminal app # link to qtmain library to get WinMain function for a non terminal app
target_link_libraries (${targetName} ${QT_QTMAIN_LIBRARY}) target_link_libraries (Synthesizer ${QT_QTMAIN_LIBRARY})
else () else ()
acg_add_executable (${targetName} ${sources} ${headers} ${moc_targets}) acg_add_executable (Synthesizer ${sources} ${headers})
endif () endif ()
target_link_libraries (${targetName} target_link_libraries (Synthesizer
OpenMeshCore OpenMeshCore
OpenMeshTools OpenMeshTools
${QT_LIBRARIES} ${QT_LIBRARIES}

View File

@@ -5,16 +5,14 @@ include_directories (
${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}
) )
set (targetName mkbalancedpm)
# collect all header and source files # collect all header and source files
set (sources set (sources
./mkbalancedpm.cc ./mkbalancedpm.cc
) )
acg_add_executable (${targetName} ${sources}) acg_add_executable (mkbalancedpm ${sources})
target_link_libraries (${targetName} target_link_libraries (mkbalancedpm
OpenMeshCore OpenMeshCore
OpenMeshTools OpenMeshTools
) )

View File

@@ -5,15 +5,13 @@ include_directories (
${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}
) )
set (targetName mconvert)
# collect all header and source files # collect all header and source files
acg_append_files (headers "*.hh" .) acg_append_files (headers "*.hh" .)
acg_append_files (sources "*.cc" .) acg_append_files (sources "*.cc" .)
acg_add_executable (${targetName} ${headers} ${sources}) acg_add_executable (mconvert ${headers} ${sources})
target_link_libraries (${targetName} target_link_libraries (mconvert
OpenMeshCore OpenMeshCore
OpenMeshTools OpenMeshTools
) )