Merge branch 'refs/heads/master' into review-CL-Bundler
This commit is contained in:
commit
38fc7ba604
39
Makefile.am
39
Makefile.am
|
@ -1,39 +0,0 @@
|
|||
ACLOCAL_AMFLAGS = -I m4
|
||||
|
||||
SUBDIRS=data src
|
||||
|
||||
EXTRA_DIST = \
|
||||
cMake/ConfigureChecks.cmake \
|
||||
cMake/FindCoin3D.cmake \
|
||||
cMake/FindCoin3DDoc.cmake \
|
||||
cMake/FindEigen2.cmake \
|
||||
cMake/FindEigen3.cmake \
|
||||
cMake/FindF2C.cmake \
|
||||
cMake/FindODE.cmake \
|
||||
cMake/FindOpenCasCade.cmake \
|
||||
cMake/FindOpenCV.cmake \
|
||||
cMake/FindSoQt.cmake \
|
||||
cMake/FindSpnav.cmake \
|
||||
cMake/FindXercesC.cmake \
|
||||
cMake/FreeCadMacros.cmake \
|
||||
cMake/UseLibPack6x.cmake \
|
||||
cMake/UseLibPack7x.cmake \
|
||||
cMake/UseLibPackCustom.cmake \
|
||||
config.h.cmake \
|
||||
CMakeLists.txt \
|
||||
autogen.sh \
|
||||
BuildAll.bat \
|
||||
build.sh \
|
||||
ChangeLog.txt \
|
||||
copying.lib \
|
||||
README.Linux \
|
||||
README.Win32
|
||||
|
||||
debian-package:
|
||||
$(top_srcdir)/package/makedebian.sh
|
||||
|
||||
if HAVE_DOXYGEN
|
||||
devdoc:
|
||||
doxygen $(top_builddir)/src/Doc/BuildDevDoc.cfg
|
||||
endif
|
||||
|
503
acinclude.m4
503
acinclude.m4
|
@ -1,503 +0,0 @@
|
|||
dnl @synopsis AC_CXX_HAVE_STL
|
||||
dnl
|
||||
dnl If the compiler supports the Standard Template Library, define HAVE_STL.
|
||||
dnl
|
||||
dnl @version $Id: acinclude.m4,v 1.2 2006/02/24 00:09:19 wmayer Exp $
|
||||
dnl @author Luc Maisonobe
|
||||
dnl
|
||||
AC_DEFUN([AC_CXX_HAVE_STL],
|
||||
[AC_CACHE_CHECK(whether the compiler supports Standard Template Library,
|
||||
ac_cv_cxx_have_stl,
|
||||
[AC_REQUIRE([AC_CXX_NAMESPACES])
|
||||
AC_LANG_SAVE
|
||||
AC_LANG_CPLUSPLUS
|
||||
AC_TRY_COMPILE([#include <list>
|
||||
#include <deque>
|
||||
#ifdef HAVE_NAMESPACES
|
||||
using namespace std;
|
||||
#endif],[list<int> x; x.push_back(5);
|
||||
list<int>::iterator iter = x.begin(); if (iter != x.end()) ++iter; return 0;],
|
||||
ac_cv_cxx_have_stl=yes, ac_cv_cxx_have_stl=no)
|
||||
AC_LANG_RESTORE
|
||||
])
|
||||
if test "$ac_cv_cxx_have_stl" = yes; then
|
||||
AC_DEFINE(HAVE_STL,,[define if the compiler supports Standard Template Library])
|
||||
fi
|
||||
])
|
||||
dnl @synopsis AC_CXX_HAVE_STD
|
||||
dnl
|
||||
dnl If the compiler supports ISO C++ standard library (i.e., can include the
|
||||
dnl files iostream, map, iomanip and cmath}), define HAVE_STD.
|
||||
dnl
|
||||
dnl @version $Id: acinclude.m4,v 1.2 2006/02/24 00:09:19 wmayer Exp $
|
||||
dnl @author Luc Maisonobe
|
||||
dnl
|
||||
AC_DEFUN([AC_CXX_HAVE_STD],
|
||||
[AC_CACHE_CHECK(whether the compiler supports ISO C++ standard library,
|
||||
ac_cv_cxx_have_std,
|
||||
[AC_REQUIRE([AC_CXX_NAMESPACES])
|
||||
AC_LANG_SAVE
|
||||
AC_LANG_CPLUSPLUS
|
||||
AC_TRY_COMPILE([#include <iostream>
|
||||
#include <map>
|
||||
#include <iomanip>
|
||||
#include <cmath>
|
||||
#ifdef HAVE_NAMESPACES
|
||||
using namespace std;
|
||||
#endif],[return 0;],
|
||||
ac_cv_cxx_have_std=yes, ac_cv_cxx_have_std=no)
|
||||
AC_LANG_RESTORE
|
||||
])
|
||||
if test "$ac_cv_cxx_have_std" = yes; then
|
||||
AC_DEFINE(HAVE_STD,,[define if the compiler supports ISO C++ standard library])
|
||||
fi
|
||||
])
|
||||
dnl @synopsis AC_CXX_NAMESPACES
|
||||
dnl
|
||||
dnl If the compiler can prevent names clashes using namespaces, define
|
||||
dnl HAVE_NAMESPACES.
|
||||
dnl
|
||||
dnl @version $Id: acinclude.m4,v 1.2 2006/02/24 00:09:19 wmayer Exp $
|
||||
dnl @author Luc Maisonobe
|
||||
dnl
|
||||
AC_DEFUN([AC_CXX_NAMESPACES],
|
||||
[AC_CACHE_CHECK(whether the compiler implements namespaces,
|
||||
ac_cv_cxx_namespaces,
|
||||
[AC_LANG_SAVE
|
||||
AC_LANG_CPLUSPLUS
|
||||
AC_TRY_COMPILE([namespace Outer { namespace Inner { int i = 0; }}],
|
||||
[using namespace Outer::Inner; return i;],
|
||||
ac_cv_cxx_namespaces=yes, ac_cv_cxx_namespaces=no)
|
||||
AC_LANG_RESTORE
|
||||
])
|
||||
if test "$ac_cv_cxx_namespaces" = yes; then
|
||||
AC_DEFINE(HAVE_NAMESPACES,,[define if the compiler implements namespaces])
|
||||
fi
|
||||
])
|
||||
dnl @synopsis AC_CXX_HAVE_SSTREAM
|
||||
dnl
|
||||
dnl If sstream (part of Standard C++ Library) exists
|
||||
dnl define HAVE_SSTREAM.
|
||||
dnl
|
||||
dnl @version ac_cxx_have_std.m4 Tue Mar 28 18:20:26 CEST 2000
|
||||
dnl @author Thomas Sondergaard thomass@deltadata.dk
|
||||
dnl
|
||||
AC_DEFUN([AC_CXX_HAVE_SSTREAM],
|
||||
[AC_CACHE_CHECK(for sstream,
|
||||
ac_cv_cxx_have_sstream,
|
||||
[AC_REQUIRE([AC_CXX_NAMESPACES])
|
||||
AC_LANG_SAVE
|
||||
AC_LANG_CPLUSPLUS
|
||||
AC_TRY_COMPILE([#include <sstream>
|
||||
#ifdef HAVE_NAMESPACES
|
||||
using namespace std;
|
||||
#endif],[return 0;],
|
||||
ac_cv_cxx_have_sstream=yes, ac_cv_cxx_have_sstream=no)
|
||||
AC_LANG_RESTORE
|
||||
])
|
||||
if test "$ac_cv_cxx_have_sstream" = yes; then
|
||||
AC_DEFINE(HAVE_SSTREAM,1,[define if the compiler supports sstream])
|
||||
fi
|
||||
])
|
||||
dnl @synopsis AC_CXX_HAVE_STD_IOSTREAM
|
||||
dnl
|
||||
dnl If std iostream (part of Standard C++ Library) exists
|
||||
dnl define HAVE_STD_IOSTREAM.
|
||||
dnl
|
||||
dnl @version ac_cxx_have_std.m4 Tue Mar 28 18:20:26 CEST 2000
|
||||
dnl @author Thomas Sondergaard thomass@deltadata.dk
|
||||
dnl
|
||||
AC_DEFUN([AC_CXX_HAVE_STD_IOSTREAM],
|
||||
[AC_CACHE_CHECK(for std iostream,
|
||||
ac_cv_cxx_have_std_iostream,
|
||||
[AC_REQUIRE([AC_CXX_NAMESPACES])
|
||||
AC_LANG_SAVE
|
||||
AC_LANG_CPLUSPLUS
|
||||
AC_TRY_COMPILE([
|
||||
#include <sstream>
|
||||
#include <streambuf>
|
||||
#include <ios>
|
||||
#ifdef HAVE_NAMESPACES
|
||||
using namespace std;
|
||||
#endif
|
||||
],[return 0;],
|
||||
ac_cv_cxx_have_std_iostream=yes, ac_cv_cxx_have_std_iostream=no)
|
||||
AC_LANG_RESTORE
|
||||
])
|
||||
if test "$ac_cv_cxx_have_std_iostream" = yes; then
|
||||
AC_DEFINE(HAVE_STD_IOSTREAM,,[define if the compiler has std compliant iostream library])
|
||||
fi
|
||||
])
|
||||
dnl @synopsis FREECAD_AC_HAVE_QT(MINIMUM_VERSION)
|
||||
dnl
|
||||
dnl @summary Search for Trolltech's Qt GUI framework.
|
||||
dnl
|
||||
dnl Checks for the Qt4 library and its tools uic, moc and rcc.
|
||||
dnl
|
||||
dnl The following variables are exported:
|
||||
dnl
|
||||
dnl QT_DIR
|
||||
dnl QT_CXXFLAGS
|
||||
dnl QT_LIBS
|
||||
dnl QT_MOC
|
||||
dnl QT_UIC
|
||||
dnl QT_RCC
|
||||
dnl
|
||||
AC_DEFUN([FREECAD_AC_HAVE_QT],
|
||||
[
|
||||
|
||||
AC_ARG_WITH([qt4-dir],
|
||||
AC_HELP_STRING([--with-qt4-dir=DIR], [give prefix location of Qt4]),
|
||||
[fc_qt4_dir="$withval"],
|
||||
[fc_qt4_dir="/usr/share/qt4"])
|
||||
|
||||
AC_ARG_WITH([qt4-include],
|
||||
AC_HELP_STRING([--with-qt4-include=DIR], [give include prefix of Qt4]),
|
||||
[fc_qt4_include="$withval"],
|
||||
[fc_qt4_include="$fc_qt4_dir/include"])
|
||||
|
||||
AC_ARG_WITH([qt4-lib],
|
||||
AC_HELP_STRING([--with-qt4-lib=DIR], [give library path to Qt4]),
|
||||
[fc_qt4_lib="$withval"],
|
||||
[fc_qt4_lib="$fc_qt4_dir/lib"])
|
||||
|
||||
AC_ARG_WITH([qt4-bin],
|
||||
AC_HELP_STRING([--with-qt4-bin=DIR], [give path to Qt4 utilities (moc, uic, rcc)]),
|
||||
[fc_qt4_bin="$withval"],
|
||||
[fc_qt4_bin="$fc_qt4_dir/bin"])
|
||||
|
||||
AC_ARG_WITH([qt4-framework],
|
||||
AC_HELP_STRING([--with-qt4-framework],
|
||||
[give prefix path to the Qt4 framework on Mac OS X]),
|
||||
[fc_qt4_frm="$withval"],
|
||||
[fc_qt4_frm=""])
|
||||
|
||||
AC_MSG_CHECKING(for host)
|
||||
AC_MSG_RESULT($host_os)
|
||||
case $host_os in
|
||||
mingw32*)
|
||||
fc_qt4_lib_core="-L$fc_qt4_lib -lQtCore"
|
||||
QT_LIBS="-L$fc_qt4_lib -lopengl32 -lglu32 -lgdi32 -luser32 -lmingw32 -mthreads -Wl,-enable-stdcall-fixup -Wl,-enable-auto-import -Wl,-enable-runtime-pseudo-reloc -Wl,-s -Wl,-s -Wl,-subsystem,windows"
|
||||
QT_CXXFLAGS="-I$fc_qt4_include -I$fc_qt4_include/QtCore -I$fc_qt4_include/QtGui -I$fc_qt4_include/QtOpenGL -I$fc_qt4_include/QtSvg -DUNICODE -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_THREAD_SUPPORT -DQT_NEEDS_QMAIN -frtti -fexceptions"
|
||||
;;
|
||||
darwin*)
|
||||
AC_PATH_XTRA
|
||||
if test -d $fc_qt4_frm/QtCore.framework; then
|
||||
ac_save_ldflags_fw=$LDFLAGS
|
||||
LDFLAGS="$LDFLAGS -F$fc_qt4_frm -framework QtCore"
|
||||
AC_CACHE_CHECK(
|
||||
[whether Qt is installed as framework],
|
||||
ac_cv_have_qt_framework,
|
||||
[AC_TRY_LINK([#include <QtCore/qglobal.h>
|
||||
#include <stdio.h>],
|
||||
[printf("%s\n", qVersion());],
|
||||
[ac_cv_have_qt_framework=yes],
|
||||
[ac_cv_have_qt_framework=no])
|
||||
])
|
||||
LDFLAGS=$ac_save_ldflags_fw
|
||||
else
|
||||
ac_cv_have_qt_framework=no
|
||||
fi
|
||||
if test "$ac_cv_have_qt_framework" = yes; then
|
||||
# Qt as framework installed
|
||||
fc_qt4_lib_core="-Wl,-F$fc_qt4_frm -Wl,-framework,QtCore"
|
||||
QT_LIBS="-Wl,-F$fc_qt4_frm"
|
||||
#QT_LIBS="$QT_LIBS -Wl,-framework,Qt3Support"
|
||||
QT_LIBS="$QT_LIBS -Wl,-framework,QtGui"
|
||||
QT_LIBS="$QT_LIBS -Wl,-framework,QtOpenGL"
|
||||
QT_LIBS="$QT_LIBS -Wl,-framework,QtCore"
|
||||
QT_LIBS="$QT_LIBS -Wl,-framework,QtNetwork"
|
||||
QT_LIBS="$QT_LIBS -Wl,-framework,QtXml"
|
||||
QT_LIBS="$QT_LIBS -Wl,-framework,QtSql"
|
||||
QT_LIBS="$QT_LIBS -Wl,-framework,QtSvg"
|
||||
# Separated libs
|
||||
QT4_CORE_LIBS="-Wl,-F$fc_qt4_frm -Wl,-framework,QtCore"
|
||||
|
||||
QT_CXXFLAGS="-F$fc_qt4_frm -I$fc_qt4_frm/Qt3Support.framework/Headers"
|
||||
QT_CXXFLAGS="$QT_CXXFLAGS -I$fc_qt4_frm/QtGui.framework/Headers"
|
||||
QT_CXXFLAGS="$QT_CXXFLAGS -I$fc_qt4_frm/QtCore.framework/Headers"
|
||||
QT_CXXFLAGS="$QT_CXXFLAGS -I$fc_qt4_frm/QtOpenGL.framework/Headers"
|
||||
QT_CXXFLAGS="$QT_CXXFLAGS -I$fc_qt4_frm/QtNetwork.framework/Headers"
|
||||
QT_CXXFLAGS="$QT_CXXFLAGS -I$fc_qt4_frm/QtSvg.framework/Headers"
|
||||
QT_CXXFLAGS="$QT_CXXFLAGS -I$fc_qt4_frm/QtXml.framework/Headers"
|
||||
QT_CXXFLAGS="$QT_CXXFLAGS -I$fc_qt4_frm/QtUiTools.framework/Headers"
|
||||
# Separated flags
|
||||
QT4_CORE_CXXFLAGS="-F$fc_qt4_frm -I$fc_qt4_frm/QtCore.framework/Headers"
|
||||
# QtUiTools doesn't seem to be available as framework
|
||||
#QT_CXXFLAGS="$QT_CXXFLAGS -I/usr/include/QtUiTools"
|
||||
# QtWebKit check
|
||||
fc_ac_save_cppflags=$CPPFLAGS
|
||||
CPPFLAGS="$QT_CXXFLAGS -I$fc_qt4_frm/QtWebKit.framework/Headers"
|
||||
AC_MSG_CHECKING([whether QtWebKit is available])
|
||||
AC_TRY_COMPILE([#include <QWebView>], [],
|
||||
[
|
||||
QT_CXXFLAGS="$QT_CXXFLAGS -I$fc_qt4_frm/QtWebKit.framework/Headers"
|
||||
QT_LIBS="$QT_LIBS -Wl,-framework,QtWebKit"
|
||||
AC_MSG_RESULT(yes)],
|
||||
AC_MSG_RESULT(no))
|
||||
CPPFLAGS=$fc_ac_save_cppflags
|
||||
else
|
||||
# Qt not as framework installed
|
||||
fc_qt4_lib_core="-L$fc_qt4_lib -lQtCore"
|
||||
QT_LIBS="-L$fc_qt4_lib -lQtCore -lQtGui -lQt3Support -lQtNetwork -lQtOpenGL -lQtSvg -lQtXml"
|
||||
QT_CXXFLAGS="-I$fc_qt4_include -I$fc_qt4_include/Qt3Support"
|
||||
QT_CXXFLAGS="$QT_CXXFLAGS -I$fc_qt4_include/QtGui"
|
||||
QT_CXXFLAGS="$QT_CXXFLAGS -I$fc_qt4_include/QtCore"
|
||||
QT_CXXFLAGS="$QT_CXXFLAGS -I$fc_qt4_include/QtOpenGL"
|
||||
QT_CXXFLAGS="$QT_CXXFLAGS -I$fc_qt4_include/QtNetwork"
|
||||
QT_CXXFLAGS="$QT_CXXFLAGS -I$fc_qt4_include/QtSvg"
|
||||
QT_CXXFLAGS="$QT_CXXFLAGS -I$fc_qt4_include/QtXml"
|
||||
QT_CXXFLAGS="$QT_CXXFLAGS -I$fc_qt4_include/QtUiTools"
|
||||
# Separated flags and libs
|
||||
QT4_CORE_CXXFLAGS="-I$fc_qt4_include -I$fc_qt4_include/QtCore"
|
||||
QT4_CORE_LIBS="-L$fc_qt4_lib -lQtCore"
|
||||
# QtWebKit check
|
||||
fc_ac_save_cppflags=$CPPFLAGS
|
||||
CPPFLAGS="$QT_CXXFLAGS -I$fc_qt4_include/QtWebKit"
|
||||
AC_MSG_CHECKING([whether QtWebKit is available])
|
||||
AC_TRY_COMPILE([#include <QWebView>], [],
|
||||
[
|
||||
QT_CXXFLAGS="$QT_CXXFLAGS -I$fc_qt4_include/QtWebKit"
|
||||
QT_LIBS="$QT_LIBS -lQtWebKit"
|
||||
AC_MSG_RESULT(yes)],
|
||||
AC_MSG_RESULT(no))
|
||||
CPPFLAGS=$fc_ac_save_cppflags
|
||||
fi
|
||||
;;
|
||||
*) # UNIX/Linux based
|
||||
AC_PATH_XTRA
|
||||
fc_qt4_lib_core="-L$fc_qt4_lib -lQtCore"
|
||||
QT_LIBS="-L$fc_qt4_lib -lQtCore -lQtGui -lQt3Support -lQtNetwork -lQtOpenGL -lQtSvg -lQtXml $X_LIBS -lX11 -lXext -lXmu -lXt -lXi $X_EXTRA_LIBS"
|
||||
QT_CXXFLAGS="-I$fc_qt4_include -I$fc_qt4_include/Qt3Support"
|
||||
QT_CXXFLAGS="$QT_CXXFLAGS -I$fc_qt4_include/QtGui"
|
||||
QT_CXXFLAGS="$QT_CXXFLAGS -I$fc_qt4_include/QtCore"
|
||||
QT_CXXFLAGS="$QT_CXXFLAGS -I$fc_qt4_include/QtOpenGL"
|
||||
QT_CXXFLAGS="$QT_CXXFLAGS -I$fc_qt4_include/QtNetwork"
|
||||
QT_CXXFLAGS="$QT_CXXFLAGS -I$fc_qt4_include/QtSvg"
|
||||
QT_CXXFLAGS="$QT_CXXFLAGS -I$fc_qt4_include/QtXml"
|
||||
QT_CXXFLAGS="$QT_CXXFLAGS -I$fc_qt4_include/QtUiTools $X_CFLAGS"
|
||||
# QtWebKit check
|
||||
fc_ac_save_cppflags=$CPPFLAGS
|
||||
CPPFLAGS="-I$fc_qt4_include -I$fc_qt4_include/QtWebKit"
|
||||
AC_MSG_CHECKING([whether QtWebKit is available])
|
||||
AC_TRY_LINK([#include <QWebView>], [],
|
||||
[
|
||||
QT_CXXFLAGS="$QT_CXXFLAGS -I$fc_qt4_include/QtWebKit"
|
||||
QT_LIBS="$QT_LIBS -lQtWebKit"
|
||||
AC_MSG_RESULT(yes)],
|
||||
AC_MSG_RESULT(no))
|
||||
CPPFLAGS=$fc_ac_save_cppflags
|
||||
#QT4_CXXFLAGS="-I$fc_qt4_include"
|
||||
#QT4_LIBS="-L$fc_qt4_lib $X_LIBS -lX11 -lXext -lXmu -lXt -lXi $X_EXTRA_LIBS"
|
||||
# Separated flags and libs
|
||||
QT4_CORE_CXXFLAGS="-I$fc_qt4_include -I$fc_qt4_include/QtCore"
|
||||
QT4_CORE_LIBS="-L$fc_qt4_lib -lQtCore"
|
||||
#QT4_GUI_CXXFLAGS="-I$fc_qt4_include/QtGui"
|
||||
#QT4_GUI_LIBS="-lQtGui"
|
||||
#QT4_NETWORK_CFLAGS="-I$fc_qt4_include/QtNetwork"
|
||||
#QT4_NETWORK_LIBS="-lQtNetwork"
|
||||
#QT4_XML_CFLAGS="-I$fc_qt4_include/QtXml"
|
||||
#QT4_XML_LIBS="-lQtXml"
|
||||
;;
|
||||
esac
|
||||
|
||||
min_qt_version=ifelse([$1], ,4.0.0, $1)
|
||||
|
||||
AC_MSG_CHECKING(for Qt >= $min_qt_version)
|
||||
QT_MOC="$fc_qt4_bin/moc"
|
||||
QT_UIC="$fc_qt4_bin/uic"
|
||||
QT_RCC="$fc_qt4_bin/rcc"
|
||||
|
||||
# Now we check whether we can actually build a Qt app.
|
||||
cat > myqt.h << EOF
|
||||
#include <QObject>
|
||||
class Test : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
Test() {}
|
||||
~Test() {}
|
||||
public slots:
|
||||
void receive() {}
|
||||
signals:
|
||||
void send();
|
||||
};
|
||||
EOF
|
||||
|
||||
cat > myqt.cpp << EOF
|
||||
#include "myqt.h"
|
||||
#include <QCoreApplication>
|
||||
#include <QByteArray>
|
||||
#include <QGlobalStatic>
|
||||
#include <QStringList>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
int main( int argc, char **argv )
|
||||
{
|
||||
QCoreApplication app( argc, argv );
|
||||
Test t;
|
||||
QObject::connect( &t, SIGNAL(send()), &t, SLOT(receive()) );
|
||||
|
||||
// major, minor, patch
|
||||
QString version = "$min_qt_version";
|
||||
QStringList numbers = version.split('.');
|
||||
|
||||
int shift[[3]] = {16,8,0};
|
||||
int minversion = 0, i = 0;
|
||||
for (QStringList::ConstIterator it = numbers.begin(); it != numbers.end(); ++it, ++i) {
|
||||
bool ok;
|
||||
int val = (*it).toInt(&ok);
|
||||
if (ok) {
|
||||
minversion = minversion + (val << shift[[i]]);
|
||||
}
|
||||
}
|
||||
|
||||
exit(QT_VERSION < minversion);
|
||||
}
|
||||
EOF
|
||||
|
||||
bnv_try_1="$QT_MOC myqt.h -o moc_myqt.cpp"
|
||||
AC_TRY_EVAL(bnv_try_1)
|
||||
if test x"$ac_status" != x0; then
|
||||
AC_MSG_ERROR([Cannot find Qt meta object compiler (moc), bye...])
|
||||
fi
|
||||
|
||||
bnv_try_2="$CXX $QT_CXXFLAGS -c $CXXFLAGS -o moc_myqt.o moc_myqt.cpp"
|
||||
AC_TRY_EVAL(bnv_try_2)
|
||||
if test x"$ac_status" != x0; then
|
||||
AC_MSG_ERROR([Failed to compile source file created by Qt meta object compiler (moc), bye...])
|
||||
fi
|
||||
|
||||
bnv_try_3="$CXX $QT_CXXFLAGS -c $CXXFLAGS -o myqt.o myqt.cpp"
|
||||
AC_TRY_EVAL(bnv_try_3)
|
||||
if test x"$ac_status" != x0; then
|
||||
AC_MSG_ERROR([Failed to compile Qt test app, bye...])
|
||||
fi
|
||||
|
||||
# Make sure not to link against X11 libs so that configure succeeds whithout xserver started
|
||||
bnv_try_4="$CXX myqt.o moc_myqt.o $fc_qt4_lib_core $LIBS -o myqt"
|
||||
AC_TRY_EVAL(bnv_try_4)
|
||||
if test x"$ac_status" != x0; then
|
||||
AC_MSG_ERROR([Failed to link with Qt, bye...])
|
||||
fi
|
||||
|
||||
AS_IF([AM_RUN_LOG([./myqt])],
|
||||
[AC_MSG_RESULT(yes)],
|
||||
[AC_MSG_ERROR([Version of Qt4 found but < $min_qt_version])
|
||||
])
|
||||
|
||||
rm -f moc_myqt.cpp myqt.h myqt.cpp myqt.o myqt moc_myqt.o
|
||||
|
||||
if test -d $fc_qt4_dir; then
|
||||
QT_DIR="$fc_qt4_dir"
|
||||
else
|
||||
QT_DIR=""
|
||||
fi
|
||||
|
||||
AC_SUBST(QT_DIR)
|
||||
AC_SUBST(QT_CXXFLAGS)
|
||||
AC_SUBST(QT_LIBS)
|
||||
AC_SUBST(QT4_CORE_CXXFLAGS)
|
||||
AC_SUBST(QT4_CORE_LIBS)
|
||||
AC_SUBST(QT_UIC)
|
||||
AC_SUBST(QT_MOC)
|
||||
AC_SUBST(QT_RCC)
|
||||
])
|
||||
dnl @synopsis FREECAD_AC_HAVE_BOOST
|
||||
dnl
|
||||
dnl @summary Search for boost header and library files.
|
||||
dnl
|
||||
dnl
|
||||
AC_DEFUN([FREECAD_AC_HAVE_BOOST],
|
||||
[
|
||||
AC_MSG_CHECKING(for boost)
|
||||
|
||||
AC_ARG_WITH(boost-include,
|
||||
AC_HELP_STRING([--with-boost-include=DIR], [Path to the boost header files]),
|
||||
[fc_boost_incs=$withval], [fc_boost_incs=/usr/include])
|
||||
|
||||
AC_ARG_WITH(boost-lib,
|
||||
AC_HELP_STRING([--with-boost-lib=DIR], [Path to the boost library files]),
|
||||
[fc_boost_libs=$withval], [fc_boost_libs=/usr/lib])
|
||||
|
||||
fc_boost_ac_save_cppflags=$CPPFLAGS
|
||||
fc_boost_ac_save_ldflags=$LDFLAGS
|
||||
fc_boost_ac_save_libs=$LIBS
|
||||
CPPFLAGS="$CPPFLAGS -I$fc_boost_incs"
|
||||
LDFLAGS="$LDFLAGS -L$fc_boost_libs"
|
||||
LIBS="-lboost_program_options-mt"
|
||||
|
||||
AC_TRY_LINK([#include <boost/program_options.hpp>],
|
||||
[namespace po = boost::program_options;
|
||||
po::options_description generic("Generic options");
|
||||
generic.add_options()
|
||||
("version,v", "print version string")
|
||||
("help", "produce help message");
|
||||
],
|
||||
[AC_MSG_RESULT(yes)],
|
||||
[AC_MSG_ERROR(failed)])
|
||||
|
||||
|
||||
|
||||
AC_MSG_CHECKING(for boost >= 1.35.0)
|
||||
|
||||
cat > boost.cpp << EOF
|
||||
#include <boost/version.hpp>
|
||||
#include <cstdio>
|
||||
#include <cstdlib>
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
exit(BOOST_VERSION >= 103500);
|
||||
}
|
||||
EOF
|
||||
|
||||
# Depending on boost version decide if boost_system is required
|
||||
boost_try="$CXX boost.cpp $CPPFLAGS -o boost"
|
||||
AC_TRY_EVAL(boost_try)
|
||||
if test x"$ac_status" != x0; then
|
||||
AC_MSG_ERROR([Failed to get version of boost, bye...])
|
||||
fi
|
||||
|
||||
AS_IF([AM_RUN_LOG([./boost])],
|
||||
[ac_cv_boost_system=no],
|
||||
[ac_cv_boost_system=yes
|
||||
])
|
||||
AC_MSG_RESULT($ac_cv_boost_system)
|
||||
rm -f boost.cpp boost
|
||||
|
||||
BOOST_FILESYSTEM_LIB="-lboost_filesystem-mt"
|
||||
BOOST_PROGOPTIONS_LIB="-lboost_program_options-mt"
|
||||
BOOST_SIGNALS_LIB="-lboost_signals-mt"
|
||||
BOOST_SYSTEM_LIB=""
|
||||
BOOST_REGEX_LIB="-lboost_regex-mt"
|
||||
if test x"$ac_cv_boost_system" = xyes; then
|
||||
LIBS="-lboost_system-mt"
|
||||
AC_MSG_CHECKING(for boost system library)
|
||||
AC_TRY_LINK([#include <boost/system/error_code.hpp>],
|
||||
[ boost::system::error_code error_code; std::string message(error_code.message()); return 0; ],
|
||||
[BOOST_SYSTEM_LIB="-lboost_system-mt"],
|
||||
[BOOST_SYSTEM_LIB=""])
|
||||
|
||||
if test "x$BOOST_SYSTEM_LIB" = "x"; then
|
||||
AC_MSG_RESULT(no)
|
||||
AC_MSG_ERROR(Unable to link with the boost::system library)
|
||||
else
|
||||
AC_MSG_RESULT(yes)
|
||||
fi
|
||||
fi
|
||||
|
||||
AC_SUBST(BOOST_FILESYSTEM_LIB)
|
||||
AC_SUBST(BOOST_PROGOPTIONS_LIB)
|
||||
AC_SUBST(BOOST_SIGNALS_LIB)
|
||||
AC_SUBST(BOOST_SYSTEM_LIB)
|
||||
AC_SUBST(BOOST_REGEX_LIB)
|
||||
|
||||
|
||||
CPPFLAGS=$fc_boost_ac_save_cppflags
|
||||
LDFLAGS=$fc_boost_ac_save_ldflags
|
||||
LIBS=$fc_boost_ac_save_libs
|
||||
|
||||
all_includes="$all_includes -I$fc_boost_incs"
|
||||
all_libraries="$all_libraries -L$fc_boost_libs"
|
||||
])
|
69
autogen.sh
69
autogen.sh
|
@ -1,69 +0,0 @@
|
|||
#!/bin/bash
|
||||
# autogen.sh
|
||||
# Run this script to generate all initial makefiles.
|
||||
|
||||
# Get version and revision number
|
||||
MAJ=0
|
||||
MIN=13
|
||||
REV=0
|
||||
|
||||
#if svn --xml info >/dev/null 2>&1; then
|
||||
# REV=`svn --xml info | tr -d '\r\n' | sed -e 's/.*<commit.*revision="\([0-9]*\)".*<\/commit>.*/\1/'`
|
||||
#elif svn --version --quiet >/dev/null 2>&1; then
|
||||
# REV=`svn info | grep "^Revision:" | cut -d" " -f2`
|
||||
#fi
|
||||
# count all lines that don't match this string
|
||||
REV=`git rev-list HEAD | grep -cv "*"`
|
||||
|
||||
# if revision.m4 does not exist, create it
|
||||
REV_FILE=revision.m4
|
||||
#if [ -f $REV_FILE ]; then
|
||||
# echo "$REV_FILE found"
|
||||
#else
|
||||
# echo "m4_define([FREECAD_MAJOR], $MAJ)" > $REV_FILE
|
||||
# echo "m4_define([FREECAD_MINOR], $MIN)" >> $REV_FILE
|
||||
# echo "m4_define([FREECAD_MICRO], $REV)" >> $REV_FILE
|
||||
# echo "$REV_FILE created"
|
||||
#fi
|
||||
echo "m4_define([FREECAD_MAJOR], $MAJ)" > $REV_FILE
|
||||
echo "m4_define([FREECAD_MINOR], $MIN)" >> $REV_FILE
|
||||
echo "m4_define([FREECAD_MICRO], $REV)" >> $REV_FILE
|
||||
|
||||
# create m4 subdirectory which fails for some older versions of autotools
|
||||
[ -d m4 ] || mkdir m4
|
||||
|
||||
if which glibtoolize > /dev/null 2>&1; then
|
||||
echo "calling glibtoolize"
|
||||
glibtoolize --force --copy
|
||||
elif which libtoolize > /dev/null 2>&1; then
|
||||
echo "calling libtoolize"
|
||||
libtoolize --force --copy
|
||||
else
|
||||
echo "can't find libtoolize or glibtoolize"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# http://www.gnu.org/software/hello/manual/automake/Macro-Search-Path.html
|
||||
if [ -d /usr/local/share/aclocal ]; then
|
||||
echo "calling aclocal -I /usr/local/share/aclocal"
|
||||
aclocal -I /usr/local/share/aclocal
|
||||
else
|
||||
echo "calling aclocal"
|
||||
aclocal
|
||||
fi
|
||||
|
||||
echo "calling autoheader"
|
||||
autoheader
|
||||
|
||||
echo "calling automake"
|
||||
automake --add-missing --copy
|
||||
|
||||
echo "calling autoconf"
|
||||
autoconf
|
||||
|
||||
echo "Done"
|
||||
echo "Please run configure."
|
||||
|
||||
# touch file to update Version.h
|
||||
touch src/Build/Version.h.in
|
||||
|
8
build.sh
8
build.sh
|
@ -1,8 +0,0 @@
|
|||
#! /bin/sh
|
||||
|
||||
# We almost need to specify the switches for the OpenCascade library to make
|
||||
# configure running successfully.
|
||||
# CASROOT=${CASROOT:-/opt/OpenCASCADE6.2.0/ros}
|
||||
#./configure CXXFLAGS="-fno-strict-aliasing" LDFLAGS="-Wl,-z,defs" --with-occ-include=$CASROOT/inc --with-occ-lib=$CASROOT/Linux/lib
|
||||
./configure CXXFLAGS="-fno-strict-aliasing -Wno-write-strings" LDFLAGS="-Wl,-z,defs"
|
||||
|
|
@ -74,8 +74,16 @@ IF(EXISTS ${PYSIDEUIC4BINARY} AND EXISTS ${PYSIDERCC4BINARY})
|
|||
set(PYSIDE_TOOLS_FOUND TRUE)
|
||||
ENDIF(EXISTS ${PYSIDEUIC4BINARY} AND EXISTS ${PYSIDERCC4BINARY})
|
||||
|
||||
if(PYSIDE_TOOLS_FOUND)
|
||||
if(NOT PYSIDE_TOOLS_FOUND_QUIETLY)
|
||||
if(PYSIDERCC4BINARY AND PYSIDEUIC4BINARY)
|
||||
if (NOT PySideTools_FIND_QUIETLY)
|
||||
message(STATUS "Found PySide Tools: ${PYSIDEUIC4BINARY}, ${PYSIDERCC4BINARY}")
|
||||
endif(NOT PYSIDE_TOOLS_FOUND_QUIETLY)
|
||||
endif(PYSIDE_TOOLS_FOUND)
|
||||
endif (NOT PySideTools_FIND_QUIETLY)
|
||||
else(PYSIDERCC4BINARY AND PYSIDEUIC4BINARY)
|
||||
if(PySideTools_FIND_REQUIRED)
|
||||
message(FATAL_ERROR "PySideTools could not be not found, but are required.")
|
||||
else(PySideTools_FIND_REQUIRED)
|
||||
if (NOT PySideTools_FIND_QUIETLY)
|
||||
message(STATUS "PySideTools: not found.")
|
||||
endif (NOT PySideTools_FIND_QUIETLY)
|
||||
endif(PySideTools_FIND_REQUIRED)
|
||||
endif(PYSIDERCC4BINARY AND PYSIDEUIC4BINARY)
|
||||
|
|
1113
configure.ac
1113
configure.ac
File diff suppressed because it is too large
Load Diff
|
@ -1,11 +0,0 @@
|
|||
SUBDIRS=examples
|
||||
|
||||
# Change data dir from default
|
||||
datadir = @datadir@/data
|
||||
data_DATA = \
|
||||
License.txt
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(data_DATA) \
|
||||
CMakeLists.txt
|
||||
|
|
@ -1,15 +0,0 @@
|
|||
|
||||
# Change data dir from default
|
||||
datadir = @datadir@/data/examples
|
||||
data_DATA = \
|
||||
DrawingExample.FCStd \
|
||||
EngineBlock.FCStd \
|
||||
PartDesignExample.FCStd \
|
||||
RobotExample.FCStd \
|
||||
Schenkel.stp \
|
||||
ArchDetail.FCStd
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(data_DATA) \
|
||||
CMakeLists.txt
|
||||
|
111
mkinstalldirs
111
mkinstalldirs
|
@ -1,111 +0,0 @@
|
|||
#! /bin/sh
|
||||
# mkinstalldirs --- make directory hierarchy
|
||||
# Author: Noah Friedman <friedman@prep.ai.mit.edu>
|
||||
# Created: 1993-05-16
|
||||
# Public domain
|
||||
|
||||
errstatus=0
|
||||
dirmode=""
|
||||
|
||||
usage="\
|
||||
Usage: mkinstalldirs [-h] [--help] [-m mode] dir ..."
|
||||
|
||||
# process command line arguments
|
||||
while test $# -gt 0 ; do
|
||||
case $1 in
|
||||
-h | --help | --h*) # -h for help
|
||||
echo "$usage" 1>&2
|
||||
exit 0
|
||||
;;
|
||||
-m) # -m PERM arg
|
||||
shift
|
||||
test $# -eq 0 && { echo "$usage" 1>&2; exit 1; }
|
||||
dirmode=$1
|
||||
shift
|
||||
;;
|
||||
--) # stop option processing
|
||||
shift
|
||||
break
|
||||
;;
|
||||
-*) # unknown option
|
||||
echo "$usage" 1>&2
|
||||
exit 1
|
||||
;;
|
||||
*) # first non-opt arg
|
||||
break
|
||||
;;
|
||||
esac
|
||||
done
|
||||
|
||||
for file
|
||||
do
|
||||
if test -d "$file"; then
|
||||
shift
|
||||
else
|
||||
break
|
||||
fi
|
||||
done
|
||||
|
||||
case $# in
|
||||
0) exit 0 ;;
|
||||
esac
|
||||
|
||||
case $dirmode in
|
||||
'')
|
||||
if mkdir -p -- . 2>/dev/null; then
|
||||
echo "mkdir -p -- $*"
|
||||
exec mkdir -p -- "$@"
|
||||
fi
|
||||
;;
|
||||
*)
|
||||
if mkdir -m "$dirmode" -p -- . 2>/dev/null; then
|
||||
echo "mkdir -m $dirmode -p -- $*"
|
||||
exec mkdir -m "$dirmode" -p -- "$@"
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
|
||||
for file
|
||||
do
|
||||
set fnord `echo ":$file" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'`
|
||||
shift
|
||||
|
||||
pathcomp=
|
||||
for d
|
||||
do
|
||||
pathcomp="$pathcomp$d"
|
||||
case $pathcomp in
|
||||
-*) pathcomp=./$pathcomp ;;
|
||||
esac
|
||||
|
||||
if test ! -d "$pathcomp"; then
|
||||
echo "mkdir $pathcomp"
|
||||
|
||||
mkdir "$pathcomp" || lasterr=$?
|
||||
|
||||
if test ! -d "$pathcomp"; then
|
||||
errstatus=$lasterr
|
||||
else
|
||||
if test ! -z "$dirmode"; then
|
||||
echo "chmod $dirmode $pathcomp"
|
||||
lasterr=""
|
||||
chmod "$dirmode" "$pathcomp" || lasterr=$?
|
||||
|
||||
if test ! -z "$lasterr"; then
|
||||
errstatus=$lasterr
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
|
||||
pathcomp="$pathcomp/"
|
||||
done
|
||||
done
|
||||
|
||||
exit $errstatus
|
||||
|
||||
# Local Variables:
|
||||
# mode: shell-script
|
||||
# sh-indentation: 2
|
||||
# End:
|
||||
# mkinstalldirs ends here
|
132
src/3rdParty/Makefile.am
vendored
132
src/3rdParty/Makefile.am
vendored
|
@ -1,132 +0,0 @@
|
|||
#SUBDIRS=Pivy
|
||||
if HAVE_OPENCASCADE
|
||||
SUBDIRS=salomesmesh
|
||||
endif
|
||||
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
boost/numeric/bindings/LICENSE_1_0.txt \
|
||||
boost/numeric/bindings/amos/amos.h \
|
||||
boost/numeric/bindings/amos/amos.hpp \
|
||||
boost/numeric/bindings/amos/amos_names.h \
|
||||
boost/numeric/bindings/amos/amos_overloads.hpp \
|
||||
boost/numeric/bindings/atlas/cblas.hpp \
|
||||
boost/numeric/bindings/atlas/cblas1.hpp \
|
||||
boost/numeric/bindings/atlas/cblas1_overloads.hpp \
|
||||
boost/numeric/bindings/atlas/cblas2.hpp \
|
||||
boost/numeric/bindings/atlas/cblas2_overloads.hpp \
|
||||
boost/numeric/bindings/atlas/cblas3.hpp \
|
||||
boost/numeric/bindings/atlas/cblas3_overloads.hpp \
|
||||
boost/numeric/bindings/atlas/cblas_enum.hpp \
|
||||
boost/numeric/bindings/atlas/cblas_inc.hpp \
|
||||
boost/numeric/bindings/atlas/clapack.hpp \
|
||||
boost/numeric/bindings/atlas/clapack_inc.hpp \
|
||||
boost/numeric/bindings/atlas/clapack_overloads.hpp \
|
||||
boost/numeric/bindings/blas/blas.h \
|
||||
boost/numeric/bindings/blas/blas.hpp \
|
||||
boost/numeric/bindings/blas/blas1.hpp \
|
||||
boost/numeric/bindings/blas/blas1_overloads.hpp \
|
||||
boost/numeric/bindings/blas/blas2.hpp \
|
||||
boost/numeric/bindings/blas/blas2_overloads.hpp \
|
||||
boost/numeric/bindings/blas/blas3.hpp \
|
||||
boost/numeric/bindings/blas/blas3_overloads.hpp \
|
||||
boost/numeric/bindings/blas/blas_names.h \
|
||||
boost/numeric/bindings/lapack/gees.hpp \
|
||||
boost/numeric/bindings/lapack/geev.hpp \
|
||||
boost/numeric/bindings/lapack/geqrf.hpp \
|
||||
boost/numeric/bindings/lapack/gesdd.hpp \
|
||||
boost/numeric/bindings/lapack/gesv.hpp \
|
||||
boost/numeric/bindings/lapack/gesvd.hpp \
|
||||
boost/numeric/bindings/lapack/hbev.hpp \
|
||||
boost/numeric/bindings/lapack/hbevx.hpp \
|
||||
boost/numeric/bindings/lapack/heev.hpp \
|
||||
boost/numeric/bindings/lapack/heevd.hpp \
|
||||
boost/numeric/bindings/lapack/heevx.hpp \
|
||||
boost/numeric/bindings/lapack/hesv.hpp \
|
||||
boost/numeric/bindings/lapack/hpsv.hpp \
|
||||
boost/numeric/bindings/lapack/hseqr.hpp \
|
||||
boost/numeric/bindings/lapack/ilaenv.hpp \
|
||||
boost/numeric/bindings/lapack/lapack.h \
|
||||
boost/numeric/bindings/lapack/lapack.hpp \
|
||||
boost/numeric/bindings/lapack/lapack_names.h \
|
||||
boost/numeric/bindings/lapack/orgqr.hpp \
|
||||
boost/numeric/bindings/lapack/ormqr.hpp \
|
||||
boost/numeric/bindings/lapack/posv.hpp \
|
||||
boost/numeric/bindings/lapack/ppsv.hpp \
|
||||
boost/numeric/bindings/lapack/spsv.hpp \
|
||||
boost/numeric/bindings/lapack/steqr.hpp \
|
||||
boost/numeric/bindings/lapack/syev.hpp \
|
||||
boost/numeric/bindings/lapack/syevd.hpp \
|
||||
boost/numeric/bindings/lapack/syevx.hpp \
|
||||
boost/numeric/bindings/lapack/sysv.hpp \
|
||||
boost/numeric/bindings/lapack/sytrd.hpp \
|
||||
boost/numeric/bindings/lapack/trevc.hpp \
|
||||
boost/numeric/bindings/lapack/trexc.hpp \
|
||||
boost/numeric/bindings/lapack/workspace.hpp \
|
||||
boost/numeric/bindings/umfpack/umfpack.hpp \
|
||||
boost/numeric/bindings/umfpack/umfpack_inc.hpp \
|
||||
boost/numeric/bindings/umfpack/umfpack_overloads.hpp \
|
||||
boost/numeric/bindings/traits/detail/array.hpp \
|
||||
boost/numeric/bindings/traits/detail/array_impl.hpp \
|
||||
boost/numeric/bindings/traits/detail/generate_const.hpp \
|
||||
boost/numeric/bindings/traits/detail/symm_herm_traits.hpp \
|
||||
boost/numeric/bindings/traits/detail/ublas_ordering.hpp \
|
||||
boost/numeric/bindings/traits/detail/ublas_uplo.hpp \
|
||||
boost/numeric/bindings/traits/detail/utils.hpp \
|
||||
boost/numeric/bindings/traits/algorithm.hpp \
|
||||
boost/numeric/bindings/traits/boost_array.hpp \
|
||||
boost/numeric/bindings/traits/c_array.hpp \
|
||||
boost/numeric/bindings/traits/config.hpp \
|
||||
boost/numeric/bindings/traits/fortran.h \
|
||||
boost/numeric/bindings/traits/matrix_raw.hpp \
|
||||
boost/numeric/bindings/traits/matrix_traits.hpp \
|
||||
boost/numeric/bindings/traits/sparse_traits.hpp \
|
||||
boost/numeric/bindings/traits/std_valarray.hpp \
|
||||
boost/numeric/bindings/traits/std_vector.hpp \
|
||||
boost/numeric/bindings/traits/symm_herm_raw.hpp \
|
||||
boost/numeric/bindings/traits/tnt.hpp \
|
||||
boost/numeric/bindings/traits/traits.hpp \
|
||||
boost/numeric/bindings/traits/transpose.hpp \
|
||||
boost/numeric/bindings/traits/type.h \
|
||||
boost/numeric/bindings/traits/type.hpp \
|
||||
boost/numeric/bindings/traits/type_traits.hpp \
|
||||
boost/numeric/bindings/traits/ublas_banded.hpp \
|
||||
boost/numeric/bindings/traits/ublas_hermitian.hpp \
|
||||
boost/numeric/bindings/traits/ublas_matrix.hpp \
|
||||
boost/numeric/bindings/traits/ublas_sparse.hpp \
|
||||
boost/numeric/bindings/traits/ublas_symmetric.hpp \
|
||||
boost/numeric/bindings/traits/ublas_vector.hpp \
|
||||
boost/numeric/bindings/traits/ublas_vector2.hpp \
|
||||
boost/numeric/bindings/traits/vector_raw.hpp \
|
||||
boost/numeric/bindings/traits/vector_traits.hpp
|
||||
|
||||
# For Debian based system we don't need these sources
|
||||
if MAKE_NO_DFSG_PACKAGE
|
||||
EXTRA_DIST += \
|
||||
Pivy/gui/__init__.py \
|
||||
Pivy/gui/soqt.py \
|
||||
Pivy/AUTHORS \
|
||||
Pivy/CMakeLists.txt \
|
||||
Pivy/coin.py \
|
||||
Pivy/coin_header_includes.h \
|
||||
Pivy/coin_wrap.cpp \
|
||||
Pivy/__init__.py \
|
||||
Pivy/LICENSE \
|
||||
Pivy/README \
|
||||
Pivy/sogui.py \
|
||||
Pivy/soqt_wrap.cpp \
|
||||
Pivy-0.5/gui/__init__.py \
|
||||
Pivy-0.5/gui/soqt.py \
|
||||
Pivy-0.5/AUTHORS \
|
||||
Pivy-0.5/CMakeLists.txt \
|
||||
Pivy-0.5/coin.py \
|
||||
Pivy-0.5/coin_header_includes.h \
|
||||
Pivy-0.5/coin_wrap.cpp \
|
||||
Pivy-0.5/__init__.py \
|
||||
Pivy-0.5/LICENSE \
|
||||
Pivy-0.5/README \
|
||||
Pivy-0.5/sogui.py \
|
||||
Pivy-0.5/soqt.py \
|
||||
Pivy-0.5/soqt_wrap.cpp
|
||||
endif
|
||||
|
73
src/3rdParty/Pivy/Makefile.am
vendored
73
src/3rdParty/Pivy/Makefile.am
vendored
|
@ -1,73 +0,0 @@
|
|||
|
||||
lib_LTLIBRARIES=_coin.la _soqt.la
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
# Coin
|
||||
|
||||
_coin_la_SOURCES=\
|
||||
coin_wrap.cpp \
|
||||
coin_header_includes.h
|
||||
|
||||
# the library search path.
|
||||
_coin_la_LDFLAGS = $(sim_ac_coin_ldflags) -module -avoid-version
|
||||
_coin_la_CPPFLAGS = -fno-strict-aliasing
|
||||
|
||||
_coin_la_LIBADD = \
|
||||
-l@PYTHON_LIB@ \
|
||||
$(sim_ac_coin_libs)
|
||||
|
||||
_coindir = $(prefix)/bin/pivy
|
||||
_coin_DATA = \
|
||||
__init__.py \
|
||||
coin.py \
|
||||
sogui.py
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
# SoQt
|
||||
|
||||
_soqt_la_SOURCES=\
|
||||
soqt_wrap.cpp
|
||||
|
||||
# the library search path.
|
||||
_soqt_la_LDFLAGS = $(sim_ac_coin_ldflags) $(sim_ac_soqt_ldflags) $(QT_LIBS) -module -avoid-version
|
||||
_soqt_la_CPPFLAGS = -fno-strict-aliasing
|
||||
|
||||
_soqt_la_LIBADD = \
|
||||
-l@PYTHON_LIB@ \
|
||||
$(sim_ac_coin_libs) \
|
||||
$(sim_ac_soqt_libs)
|
||||
|
||||
_soqt.la: $(_soqt_la_OBJECTS) $(_soqt_la_DEPENDENCIES)
|
||||
$(CXXLINK) -rpath $(libdir)/gui $(_soqt_la_LDFLAGS) $(_soqt_la_OBJECTS) $(_soqt_la_LIBADD) $(LIBS)
|
||||
|
||||
_soqtdir = $(prefix)/bin/pivy/gui
|
||||
_soqt_DATA = \
|
||||
__init__.py \
|
||||
soqt.py
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
|
||||
# set the include path found by configure
|
||||
AM_CXXFLAGS = $(all_includes) $(QT_CXXFLAGS) -I$(top_srcdir)/src -I$(top_builddir)/src
|
||||
|
||||
libdir = $(prefix)/bin/pivy
|
||||
install-exec-hook:
|
||||
$(mkdir_p) $(DESTDIR)$(libdir)/gui
|
||||
mv $(DESTDIR)$(libdir)/_soqt.* \
|
||||
$(DESTDIR)$(libdir)/gui/
|
||||
|
||||
uninstall-hook:
|
||||
rm -r $(DESTDIR)$(libdir)/gui
|
||||
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
||||
EXTRA_DIST = \
|
||||
__init__.py \
|
||||
coin.py \
|
||||
sogui.py \
|
||||
soqt.py \
|
||||
AUTHORS \
|
||||
LICENSE \
|
||||
README \
|
||||
CMakeLists.txt
|
||||
|
389
src/3rdParty/salomesmesh/Makefile.am
vendored
389
src/3rdParty/salomesmesh/Makefile.am
vendored
|
@ -1,389 +0,0 @@
|
|||
# dir variable for easy change of Makefile.am locations
|
||||
smeshdir = ./
|
||||
|
||||
# copy some files
|
||||
targetdir = $(prefix)
|
||||
#dist_target_DATA = LICENCE.lgpl
|
||||
EXTRA_DIST = CMakeLists.txt LICENCE.lgpl.txt
|
||||
|
||||
# set compiler flags and include directories, -fpermissive and -ffriend-injection not needed for occ6.3
|
||||
AM_CPPFLAGS = -I$(OCC_INC) -I$(srcdir)/$(smeshdir)inc/ $(all_includes)
|
||||
AM_CXXFLAGS = -Wno-sign-compare -Wno-switch -Wno-reorder -Wno-unused -Wno-parentheses -Wno-comment
|
||||
|
||||
# set library names
|
||||
if NETGEN
|
||||
lib_LTLIBRARIES = libNETGENPlugin.la libSMDS.la libDriver.la libDriverSTL.la libDriverDAT.la libDriverUNV.la libSMESHDS.la libSMESH.la libStdMeshers.la
|
||||
else
|
||||
lib_LTLIBRARIES = libDriver.la libSMDS.la libDriverSTL.la libDriverDAT.la libDriverUNV.la libSMESHDS.la libSMESH.la libStdMeshers.la
|
||||
endif
|
||||
|
||||
# set global linker flags (remove '-Wl,--no-undefined' since this doesn't seem to work on MacOSX)
|
||||
#AM_LDFLAGS = -version-info 1:0:0 -Wl,--no-undefined -L$(OCC_LIB)
|
||||
AM_LDFLAGS = -version-info 1:0:0 -L$(OCC_LIB) \
|
||||
-lTKernel -lTKService -lTKMath -lTKBRep -lTKTopAlgo -lTKGeomAlgo \
|
||||
-lTKGeomBase -lTKG3d -lTKG2d -lTKMeshVS -lTKShHealing -lTKPrim
|
||||
|
||||
#uninstall-local:
|
||||
# -rm -rf $(DESTDIR)$(libdir)
|
||||
# -rm -rf $(DESTDIR)$(includedir)
|
||||
# -rm $(DESTDIR)$(prefix)/env_smesh.sh
|
||||
#
|
||||
#install-exec-local:
|
||||
# test -z "$(DESTDIR)$(prefix)" || $(mkdir_p) "$(DESTDIR)$(prefix)"
|
||||
# @echo "#!/bin/bash" > $(DESTDIR)$(prefix)/env_smesh.sh
|
||||
# @echo "export SMESHROOT="$(prefix) >> $(DESTDIR)$(prefix)/env_smesh.sh
|
||||
# @echo "if [ -z "LD_LIBRARY_PATH" ];" >> $(DESTDIR)$(prefix)/env_smesh.sh
|
||||
# @echo "then LD_LIBRARY_PATH="$(libdir)";" >> $(DESTDIR)$(prefix)/env_smesh.sh
|
||||
# @echo "else LD_LIBRARY_PATH="$(libdir)":\$$LD_LIBRARY_PATH;" >> $(DESTDIR)$(prefix)/env_smesh.sh
|
||||
# @echo "fi" >> $(DESTDIR)$(prefix)/env_smesh.sh
|
||||
# chmod a+x $(DESTDIR)$(prefix)/env_smesh.sh
|
||||
|
||||
# set SMDS sources
|
||||
libSMDS_la_SOURCES = $(srcdir)/$(smeshdir)src/SMDS/SMDS_EdgePosition.cpp \
|
||||
$(srcdir)/$(smeshdir)src/SMDS/SMDS_FaceOfEdges.cpp \
|
||||
$(srcdir)/$(smeshdir)src/SMDS/SMDS_FaceOfNodes.cpp \
|
||||
$(srcdir)/$(smeshdir)src/SMDS/SMDS_FacePosition.cpp \
|
||||
$(srcdir)/$(smeshdir)src/SMDS/SMDS_IteratorOfElements.cpp \
|
||||
$(srcdir)/$(smeshdir)src/SMDS/SMDS_Mesh.cpp \
|
||||
$(srcdir)/$(smeshdir)src/SMDS/SMDS_MeshEdge.cpp \
|
||||
$(srcdir)/$(smeshdir)src/SMDS/SMDS_MeshElement.cpp \
|
||||
$(srcdir)/$(smeshdir)src/SMDS/SMDS_MeshElementIDFactory.cpp \
|
||||
$(srcdir)/$(smeshdir)src/SMDS/SMDS_MeshFace.cpp \
|
||||
$(srcdir)/$(smeshdir)src/SMDS/SMDS_MeshGroup.cpp \
|
||||
$(srcdir)/$(smeshdir)src/SMDS/SMDS_MeshIDFactory.cpp \
|
||||
$(srcdir)/$(smeshdir)src/SMDS/SMDS_MeshNode.cpp \
|
||||
$(srcdir)/$(smeshdir)src/SMDS/SMDS_MeshObject.cpp \
|
||||
$(srcdir)/$(smeshdir)src/SMDS/SMDS_MeshVolume.cpp \
|
||||
$(srcdir)/$(smeshdir)src/SMDS/SMDS_PolygonalFaceOfNodes.cpp \
|
||||
$(srcdir)/$(smeshdir)src/SMDS/SMDS_PolyhedralVolumeOfNodes.cpp \
|
||||
$(srcdir)/$(smeshdir)src/SMDS/SMDS_Position.cpp \
|
||||
$(srcdir)/$(smeshdir)src/SMDS/SMDS_QuadraticEdge.cpp \
|
||||
$(srcdir)/$(smeshdir)src/SMDS/SMDS_QuadraticFaceOfNodes.cpp \
|
||||
$(srcdir)/$(smeshdir)src/SMDS/SMDS_QuadraticVolumeOfNodes.cpp \
|
||||
$(srcdir)/$(smeshdir)src/SMDS/SMDS_SpacePosition.cpp \
|
||||
$(srcdir)/$(smeshdir)src/SMDS/SMDS_VertexPosition.cpp \
|
||||
$(srcdir)/$(smeshdir)src/SMDS/SMDS_VolumeOfFaces.cpp \
|
||||
$(srcdir)/$(smeshdir)src/SMDS/SMDS_VolumeOfNodes.cpp \
|
||||
$(srcdir)/$(smeshdir)src/SMDS/SMDS_MemoryLimit.cpp \
|
||||
$(srcdir)/$(smeshdir)src/SMDS/SMDS_VolumeTool.cpp \
|
||||
$(srcdir)/$(smeshdir)src/SMDS/SMDS_Mesh0DElement.cpp
|
||||
|
||||
# set Driver sources
|
||||
libDriver_la_SOURCES = $(srcdir)/$(smeshdir)src/Driver/Driver_Document.cpp \
|
||||
$(srcdir)/$(smeshdir)src/Driver/Driver_Mesh.cpp \
|
||||
$(srcdir)/$(smeshdir)src/Driver/Driver_SMDS_Mesh.cpp \
|
||||
$(srcdir)/$(smeshdir)src/Driver/Driver_SMESHDS_Mesh.cpp
|
||||
|
||||
# set DriverSTL sources
|
||||
libDriverSTL_la_SOURCES = $(srcdir)/$(smeshdir)src/DriverSTL/DriverSTL_R_SMDS_Mesh.cpp \
|
||||
$(srcdir)/$(smeshdir)src/DriverSTL/DriverSTL_W_SMDS_Mesh.cpp
|
||||
|
||||
libDriverSTL_la_LIBADD = -lSMDS -lDriver
|
||||
libDriverSTL_la_DEPENDENCIES = libSMDS.la libDriver.la
|
||||
|
||||
# set DriverDAT sources
|
||||
libDriverDAT_la_SOURCES = $(srcdir)/$(smeshdir)src/DriverDAT/DriverDAT_R_SMDS_Mesh.cpp \
|
||||
$(srcdir)/$(smeshdir)src/DriverDAT/DriverDAT_R_SMESHDS_Document.cpp \
|
||||
$(srcdir)/$(smeshdir)src/DriverDAT/DriverDAT_R_SMESHDS_Mesh.cpp \
|
||||
$(srcdir)/$(smeshdir)src/DriverDAT/DriverDAT_W_SMDS_Mesh.cpp \
|
||||
$(srcdir)/$(smeshdir)src/DriverDAT/DriverDAT_W_SMESHDS_Document.cpp \
|
||||
$(srcdir)/$(smeshdir)src/DriverDAT/DriverDAT_W_SMESHDS_Mesh.cpp
|
||||
|
||||
libDriverDAT_la_LIBADD = -lSMDS -lDriver
|
||||
libDriverDAT_la_DEPENDENCIES = libSMDS.la libDriver.la
|
||||
|
||||
# set DriverUNV sources
|
||||
libDriverUNV_la_SOURCES = $(srcdir)/$(smeshdir)src/DriverUNV/DriverUNV_R_SMDS_Mesh.cpp \
|
||||
$(srcdir)/$(smeshdir)src/DriverUNV/DriverUNV_R_SMESHDS_Document.cpp \
|
||||
$(srcdir)/$(smeshdir)src/DriverUNV/DriverUNV_R_SMESHDS_Mesh.cpp \
|
||||
$(srcdir)/$(smeshdir)src/DriverUNV/DriverUNV_W_SMDS_Mesh.cpp \
|
||||
$(srcdir)/$(smeshdir)src/DriverUNV/DriverUNV_W_SMESHDS_Document.cpp \
|
||||
$(srcdir)/$(smeshdir)src/DriverUNV/DriverUNV_W_SMESHDS_Mesh.cpp \
|
||||
$(srcdir)/$(smeshdir)src/DriverUNV/UNV2411_Structure.cpp \
|
||||
$(srcdir)/$(smeshdir)src/DriverUNV/UNV2412_Structure.cpp \
|
||||
$(srcdir)/$(smeshdir)src/DriverUNV/UNV2417_Structure.cpp \
|
||||
$(srcdir)/$(smeshdir)src/DriverUNV/UNV_Utilities.cpp
|
||||
|
||||
libDriverUNV_la_LIBADD = -lSMDS -lDriver
|
||||
libDriverUNV_la_DEPENDENCIES = libSMDS.la libDriver.la
|
||||
|
||||
# set SMESHDS sources
|
||||
libSMESHDS_la_SOURCES = $(srcdir)/$(smeshdir)src/SMESHDS/SMESHDS_Command.cpp \
|
||||
$(srcdir)/$(smeshdir)src/SMESHDS/SMESHDS_Document.cpp \
|
||||
$(srcdir)/$(smeshdir)src/SMESHDS/SMESHDS_Group.cpp \
|
||||
$(srcdir)/$(smeshdir)src/SMESHDS/SMESHDS_GroupBase.cpp \
|
||||
$(srcdir)/$(smeshdir)src/SMESHDS/SMESHDS_GroupOnGeom.cpp \
|
||||
$(srcdir)/$(smeshdir)src/SMESHDS/SMESHDS_Hypothesis.cpp \
|
||||
$(srcdir)/$(smeshdir)src/SMESHDS/SMESHDS_Mesh.cpp \
|
||||
$(srcdir)/$(smeshdir)src/SMESHDS/SMESHDS_Script.cpp \
|
||||
$(srcdir)/$(smeshdir)src/SMESHDS/SMESHDS_SubMesh.cpp
|
||||
|
||||
libSMESHDS_la_LIBADD = -lSMDS
|
||||
libSMESHDS_la_DEPENDENCIES = libSMDS.la
|
||||
|
||||
# set SMESH sources
|
||||
libSMESH_la_SOURCES = $(srcdir)/$(smeshdir)src/SMESH/SMESH_0D_Algo.cpp \
|
||||
$(srcdir)/$(smeshdir)src/SMESH/SMESH_1D_Algo.cpp \
|
||||
$(srcdir)/$(smeshdir)src/SMESH/SMESH_2D_Algo.cpp \
|
||||
$(srcdir)/$(smeshdir)src/SMESH/SMESH_3D_Algo.cpp \
|
||||
$(srcdir)/$(smeshdir)src/SMESH/SMESH_Algo.cpp \
|
||||
$(srcdir)/$(smeshdir)src/SMESH/SMESH_Block.cpp \
|
||||
$(srcdir)/$(smeshdir)src/SMESH/SMESH_Exception.cpp \
|
||||
$(srcdir)/$(smeshdir)src/SMESH/SMESH_Gen.cpp \
|
||||
$(srcdir)/$(smeshdir)src/SMESH/SMESH_Group.cpp \
|
||||
$(srcdir)/$(smeshdir)src/SMESH/SMESH_HypoFilter.cpp \
|
||||
$(srcdir)/$(smeshdir)src/SMESH/SMESH_Hypothesis.cpp \
|
||||
$(srcdir)/$(smeshdir)src/SMESH/SMESH_Mesh.cpp \
|
||||
$(srcdir)/$(smeshdir)src/SMESH/SMESH_MeshEditor.cpp \
|
||||
$(srcdir)/$(smeshdir)src/SMESH/SMESH_MesherHelper.cpp \
|
||||
$(srcdir)/$(smeshdir)src/SMESH/SMESH_Octree.cpp \
|
||||
$(srcdir)/$(smeshdir)src/SMESH/SMESH_OctreeNode.cpp \
|
||||
$(srcdir)/$(smeshdir)src/SMESH/SMESH_Pattern.cpp \
|
||||
$(srcdir)/$(smeshdir)src/SMESH/SMESH_subMesh.cpp \
|
||||
$(srcdir)/$(smeshdir)src/SMESH/SMESH_MeshVSLink.cpp \
|
||||
$(srcdir)/$(smeshdir)src/Controls/SMESHControls.cpp \
|
||||
$(srcdir)/$(smeshdir)src/Controls/SMESH_Controls.cpp
|
||||
|
||||
libSMESH_la_LIBADD = -lSMDS -lSMESHDS -lDriver -lDriverSTL -lDriverUNV -lDriverDAT
|
||||
libSMESH_la_DEPENDENCIES = libSMDS.la libSMESHDS.la libDriver.la \
|
||||
libDriverSTL.la libDriverUNV.la libDriverDAT.la
|
||||
|
||||
# set StdMeshers sources
|
||||
libStdMeshers_la_SOURCES = $(srcdir)/$(smeshdir)src/StdMeshers/StdMeshers_Arithmetic1D.cpp \
|
||||
$(srcdir)/$(smeshdir)src/StdMeshers/StdMeshers_AutomaticLength.cpp \
|
||||
$(srcdir)/$(smeshdir)src/StdMeshers/StdMeshers_CompositeSegment_1D.cpp \
|
||||
$(srcdir)/$(smeshdir)src/StdMeshers/StdMeshers_Deflection1D.cpp \
|
||||
$(srcdir)/$(smeshdir)src/StdMeshers/StdMeshers_Distribution.cpp \
|
||||
$(srcdir)/$(smeshdir)src/StdMeshers/StdMeshers_FaceSide.cpp \
|
||||
$(srcdir)/$(smeshdir)src/StdMeshers/StdMeshers_Hexa_3D.cpp \
|
||||
$(srcdir)/$(smeshdir)src/StdMeshers/StdMeshers_LayerDistribution.cpp \
|
||||
$(srcdir)/$(smeshdir)src/StdMeshers/StdMeshers_LengthFromEdges.cpp \
|
||||
$(srcdir)/$(smeshdir)src/StdMeshers/StdMeshers_LocalLength.cpp \
|
||||
$(srcdir)/$(smeshdir)src/StdMeshers/StdMeshers_MaxElementArea.cpp \
|
||||
$(srcdir)/$(smeshdir)src/StdMeshers/StdMeshers_MaxElementVolume.cpp \
|
||||
$(srcdir)/$(smeshdir)src/StdMeshers/StdMeshers_MEFISTO_2D.cpp \
|
||||
$(srcdir)/$(smeshdir)src/StdMeshers/StdMeshers_NotConformAllowed.cpp \
|
||||
$(srcdir)/$(smeshdir)src/StdMeshers/StdMeshers_NumberOfLayers.cpp \
|
||||
$(srcdir)/$(smeshdir)src/StdMeshers/StdMeshers_NumberOfSegments.cpp \
|
||||
$(srcdir)/$(smeshdir)src/StdMeshers/StdMeshers_Penta_3D.cpp \
|
||||
$(srcdir)/$(smeshdir)src/StdMeshers/StdMeshers_Prism_3D.cpp \
|
||||
$(srcdir)/$(smeshdir)src/StdMeshers/StdMeshers_ProjectionSource1D.cpp \
|
||||
$(srcdir)/$(smeshdir)src/StdMeshers/StdMeshers_ProjectionSource2D.cpp \
|
||||
$(srcdir)/$(smeshdir)src/StdMeshers/StdMeshers_ProjectionSource3D.cpp \
|
||||
$(srcdir)/$(smeshdir)src/StdMeshers/StdMeshers_ProjectionUtils.cpp \
|
||||
$(srcdir)/$(smeshdir)src/StdMeshers/StdMeshers_Projection_1D.cpp \
|
||||
$(srcdir)/$(smeshdir)src/StdMeshers/StdMeshers_Projection_2D.cpp \
|
||||
$(srcdir)/$(smeshdir)src/StdMeshers/StdMeshers_Projection_3D.cpp \
|
||||
$(srcdir)/$(smeshdir)src/StdMeshers/StdMeshers_Propagation.cpp \
|
||||
$(srcdir)/$(smeshdir)src/StdMeshers/StdMeshers_QuadranglePreference.cpp \
|
||||
$(srcdir)/$(smeshdir)src/StdMeshers/StdMeshers_Quadrangle_2D.cpp \
|
||||
$(srcdir)/$(smeshdir)src/StdMeshers/StdMeshers_QuadraticMesh.cpp \
|
||||
$(srcdir)/$(smeshdir)src/StdMeshers/StdMeshers_RadialPrism_3D.cpp \
|
||||
$(srcdir)/$(smeshdir)src/StdMeshers/StdMeshers_Regular_1D.cpp \
|
||||
$(srcdir)/$(smeshdir)src/StdMeshers/StdMeshers_SegmentAroundVertex_0D.cpp \
|
||||
$(srcdir)/$(smeshdir)src/StdMeshers/StdMeshers_SegmentLengthAroundVertex.cpp \
|
||||
$(srcdir)/$(smeshdir)src/StdMeshers/StdMeshers_QuadToTriaAdaptor.cpp \
|
||||
$(srcdir)/$(smeshdir)src/StdMeshers/StdMeshers_TrianglePreference.cpp \
|
||||
$(srcdir)/$(smeshdir)src/StdMeshers/StdMeshers_UseExisting_1D2D.cpp \
|
||||
$(srcdir)/$(smeshdir)src/StdMeshers/StdMeshers_CompositeHexa_3D.cpp \
|
||||
$(srcdir)/$(smeshdir)src/StdMeshers/StdMeshers_MaxLength.cpp \
|
||||
$(srcdir)/$(smeshdir)src/StdMeshers/StdMeshers_StartEndLength.cpp \
|
||||
$(srcdir)/$(smeshdir)src/StdMeshers/StdMeshers_FixedPoints1D.cpp \
|
||||
$(srcdir)/$(smeshdir)src/StdMeshers/StdMeshers_LayerDistribution2D.cpp \
|
||||
$(srcdir)/$(smeshdir)src/StdMeshers/StdMeshers_NumberOfLayers2D.cpp \
|
||||
$(srcdir)/$(smeshdir)src/StdMeshers/StdMeshers_QuadrangleParams.cpp \
|
||||
$(srcdir)/$(smeshdir)src/StdMeshers/StdMeshers_RadialQuadrangle_1D2D.cpp \
|
||||
$(srcdir)/$(smeshdir)src/MEFISTO2/aptrte.cpp \
|
||||
$(srcdir)/$(smeshdir)src/MEFISTO2/trte.f
|
||||
|
||||
libStdMeshers_la_LIBADD = $(FCLIBS) -lSMESH -lSMDS -lSMESHDS
|
||||
libStdMeshers_la_DEPENDENCIES = libSMESH.la libSMDS.la libSMESHDS.la
|
||||
if STDMESHERS64BIT
|
||||
libStdMeshers_la_CXXFLAGS = $(AM_CXXFLAGS) -DPCLINUX64
|
||||
endif
|
||||
|
||||
# set NETGENPlugin sources
|
||||
libNETGENPlugin_la_SOURCES = $(srcdir)/$(smeshdir)src/NETGENPlugin/NETGENPlugin_Hypothesis.cpp \
|
||||
$(srcdir)/$(smeshdir)src/NETGENPlugin/NETGENPlugin_Hypothesis_2D.cpp \
|
||||
$(srcdir)/$(smeshdir)src/NETGENPlugin/NETGENPlugin_Mesher.cpp \
|
||||
$(srcdir)/$(smeshdir)src/NETGENPlugin/NETGENPlugin_NETGEN_2D.cpp \
|
||||
$(srcdir)/$(smeshdir)src/NETGENPlugin/NETGENPlugin_NETGEN_2D3D.cpp \
|
||||
$(srcdir)/$(smeshdir)src/NETGENPlugin/NETGENPlugin_NETGEN_2D_ONLY.cpp \
|
||||
$(srcdir)/$(smeshdir)src/NETGENPlugin/NETGENPlugin_SimpleHypothesis_2D.cpp \
|
||||
$(srcdir)/$(smeshdir)src/NETGENPlugin/NETGENPlugin_SimpleHypothesis_3D.cpp \
|
||||
$(srcdir)/$(smeshdir)src/NETGENPlugin/NETGENPlugin_NETGEN_3D.cpp
|
||||
|
||||
# include files but do not install otherwise use include_HEADERS
|
||||
#includedir = @includedir@/salomesmesh
|
||||
noinst_HEADERS = \
|
||||
$(srcdir)/$(smeshdir)inc/aptrte.h \
|
||||
$(srcdir)/$(smeshdir)inc/DriverDAT_R_SMDS_Mesh.h \
|
||||
$(srcdir)/$(smeshdir)inc/DriverDAT_R_SMESHDS_Document.h \
|
||||
$(srcdir)/$(smeshdir)inc/DriverDAT_R_SMESHDS_Mesh.h \
|
||||
$(srcdir)/$(smeshdir)inc/DriverDAT_W_SMDS_Mesh.h \
|
||||
$(srcdir)/$(smeshdir)inc/DriverDAT_W_SMESHDS_Document.h \
|
||||
$(srcdir)/$(smeshdir)inc/DriverDAT_W_SMESHDS_Mesh.h \
|
||||
$(srcdir)/$(smeshdir)inc/DriverSTL_R_SMDS_Mesh.h \
|
||||
$(srcdir)/$(smeshdir)inc/DriverSTL_W_SMDS_Mesh.h \
|
||||
$(srcdir)/$(smeshdir)inc/DriverUNV_R_SMDS_Mesh.h \
|
||||
$(srcdir)/$(smeshdir)inc/DriverUNV_R_SMESHDS_Document.h \
|
||||
$(srcdir)/$(smeshdir)inc/DriverUNV_R_SMESHDS_Mesh.h \
|
||||
$(srcdir)/$(smeshdir)inc/DriverUNV_W_SMDS_Mesh.h \
|
||||
$(srcdir)/$(smeshdir)inc/DriverUNV_W_SMESHDS_Document.h \
|
||||
$(srcdir)/$(smeshdir)inc/DriverUNV_W_SMESHDS_Mesh.h \
|
||||
$(srcdir)/$(smeshdir)inc/Driver_Document.h \
|
||||
$(srcdir)/$(smeshdir)inc/Driver_Mesh.h \
|
||||
$(srcdir)/$(smeshdir)inc/Driver_SMDS_Mesh.h \
|
||||
$(srcdir)/$(smeshdir)inc/Driver_SMESHDS_Mesh.h \
|
||||
$(srcdir)/$(smeshdir)inc/NETGENPlugin_Hypothesis.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/NETGENPlugin_Hypothesis_2D.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/NETGENPlugin_Mesher.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/NETGENPlugin_NETGEN_2D.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/NETGENPlugin_NETGEN_2D3D.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/NETGENPlugin_NETGEN_3D.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/Rn.h \
|
||||
$(srcdir)/$(smeshdir)inc/SMDSAbs_ElementType.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMDS_EdgePosition.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMDS_ElemIterator.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMDS_FaceOfEdges.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMDS_FaceOfNodes.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMDS_FacePosition.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMDS_Iterator.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMDS_IteratorOfElements.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMDS_Mesh.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMDS_MeshEdge.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMDS_MeshElement.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMDS_MeshElementIDFactory.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMDS_MeshFace.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMDS_MeshGroup.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMDS_MeshIDFactory.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMDS_MeshNode.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMDS_MeshObject.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMDS_MeshVolume.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMDS_PolygonalFaceOfNodes.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMDS_PolyhedralVolumeOfNodes.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMDS_Position.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMDS_QuadraticEdge.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMDS_QuadraticFaceOfNodes.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMDS_QuadraticVolumeOfNodes.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMDS_SetIterator.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMDS_SpacePosition.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMDS_TypeOfPosition.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMDS_VertexPosition.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMDS_VolumeOfFaces.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMDS_VolumeOfNodes.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMDS_VolumeTool.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMDS_Mesh0DElement.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMESHDS_Command.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMESHDS_CommandType.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMESHDS_Document.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMESHDS_Group.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMESHDS_GroupBase.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMESHDS_GroupOnGeom.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMESHDS_Hypothesis.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMESHDS_Mesh.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMESHDS_Script.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMESHDS_SubMesh.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMESH_0D_Algo.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMESH_1D_Algo.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMESH_2D_Algo.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMESH_3D_Algo.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMESH_Algo.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMESH_Array1.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMESH_Array2.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMESH_Block.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMESH_Comment.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMESH_ComputeError.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMESH_Controls.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMESH_ControlsDef.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMESH_DataMapOfElemPtrSequenceOfElemPtr.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMESH_DefineArray2.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMESH_DefineIndexedMap.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMESH_ExceptHandlers.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMESH_Exception.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMESH_Gen.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMESH_Group.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMESH_HypoFilter.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMESH_Hypothesis.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMESH_IndexedDataMapOfShapeIndexedMapOfShape.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMESH_IndexedMap.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMESH_Mesh.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMESH_MeshEditor.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMESH_MesherHelper.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMESH_MeshVSLink.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMESH_MeshVSLink.ixx \
|
||||
$(srcdir)/$(smeshdir)inc/SMESH_MeshVSLink.jxx \
|
||||
$(srcdir)/$(smeshdir)inc/Handle_SMESH_MeshVSLink.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMESH_Octree.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMESH_OctreeNode.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMESH_Pattern.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMESH_SequenceOfElemPtr.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMESH_SequenceOfNode.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMESH_subMesh.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMESH_subMeshEventListener.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/StdMeshers_Arithmetic1D.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/StdMeshers_AutomaticLength.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/StdMeshers_CompositeSegment_1D.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/StdMeshers_Deflection1D.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/StdMeshers_Distribution.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/StdMeshers_FaceSide.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/StdMeshers_Hexa_3D.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/StdMeshers_LayerDistribution.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/StdMeshers_LengthFromEdges.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/StdMeshers_LocalLength.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/StdMeshers_MaxElementArea.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/StdMeshers_MaxElementVolume.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/StdMeshers_MEFISTO_2D.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/StdMeshers_NotConformAllowed.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/StdMeshers_NumberOfLayers.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/StdMeshers_NumberOfSegments.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/StdMeshers_Penta_3D.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/StdMeshers_Prism_3D.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/StdMeshers_ProjectionSource1D.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/StdMeshers_ProjectionSource2D.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/StdMeshers_ProjectionSource3D.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/StdMeshers_ProjectionUtils.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/StdMeshers_Projection_1D.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/StdMeshers_Projection_2D.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/StdMeshers_Projection_3D.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/StdMeshers_Propagation.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/StdMeshers_QuadranglePreference.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/StdMeshers_Quadrangle_2D.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/StdMeshers_QuadraticMesh.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/StdMeshers_RadialPrism_3D.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/StdMeshers_Regular_1D.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/StdMeshers_SegmentAroundVertex_0D.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/StdMeshers_SegmentLengthAroundVertex.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/StdMeshers_StartEndLength.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/StdMeshers_FixedPoints1D.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/StdMeshers_LayerDistribution2D.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/StdMeshers_NumberOfLayers2D.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/StdMeshers_QuadrangleParams.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/StdMeshers_RadialQuadrangle_1D2D.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/UNV2411_Structure.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/UNV2412_Structure.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/UNV2417_Structure.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/UNV_Utilities.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/NETGENPlugin_Defs.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/NETGENPlugin_NETGEN_2D_ONLY.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/NETGENPlugin_SimpleHypothesis_2D.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/NETGENPlugin_SimpleHypothesis_3D.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMDS_MeshInfo.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMESH_DriverDAT.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMESH_DriverSTL.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMESH_DriverUNV.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMESH_SMDS.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMESH_SMESH.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMESH_SMESHDS.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMESH_StdMeshers.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/SMESHDS_DataMapOfShape.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/StdMeshers_QuadToTriaAdaptor.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/StdMeshers_TrianglePreference.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/StdMeshers_UseExisting_1D2D.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/StdMeshers_CompositeHexa_3D.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/StdMeshers_MaxLength.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/OpUtil.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/Utils_ExceptHandlers.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/Utils_SALOME_Exception.hxx \
|
||||
$(srcdir)/$(smeshdir)inc/utilities.h
|
||||
|
|
@ -1,141 +0,0 @@
|
|||
|
||||
lib_LTLIBRARIES=libFreeCADApp.la
|
||||
|
||||
BUILT_SOURCES=\
|
||||
ComplexGeoDataPy.cpp \
|
||||
DocumentObjectGroupPy.cpp \
|
||||
DocumentObjectPy.cpp \
|
||||
DocumentPy.cpp \
|
||||
FeaturePythonPy.cpp \
|
||||
MaterialPy.cpp \
|
||||
PropertyContainerPy.cpp \
|
||||
InitScript.h \
|
||||
TestScript.h
|
||||
|
||||
libFreeCADApp_la_BUILT=\
|
||||
ComplexGeoDataPy.h \
|
||||
DocumentObjectGroupPy.h \
|
||||
DocumentObjectPy.h \
|
||||
DocumentPy.h \
|
||||
FeaturePythonPy.h \
|
||||
MaterialPy.h \
|
||||
PropertyContainerPy.h
|
||||
|
||||
libFreeCADApp_la_SOURCES=\
|
||||
Annotation.cpp \
|
||||
Annotation.h \
|
||||
Application.cpp \
|
||||
ApplicationPy.cpp \
|
||||
ColorModel.cpp \
|
||||
ComplexGeoData.cpp \
|
||||
ComplexGeoDataPyImp.cpp \
|
||||
Document.cpp \
|
||||
DocumentObject.cpp \
|
||||
DocumentObjectFileIncluded.cpp \
|
||||
DocumentObjectGroup.cpp \
|
||||
DocumentObjectGroupPyImp.cpp \
|
||||
DocumentObjectPyImp.cpp \
|
||||
DocumentObserver.cpp \
|
||||
DocumentObserverPython.cpp \
|
||||
DocumentPyImp.cpp \
|
||||
DynamicProperty.cpp \
|
||||
FeaturePython.cpp \
|
||||
FeaturePythonPyImp.cpp \
|
||||
FeatureTest.cpp \
|
||||
GeoFeature.cpp \
|
||||
InventorObject.cpp \
|
||||
VRMLObject.cpp \
|
||||
Material.cpp \
|
||||
MaterialPyImp.cpp \
|
||||
MeasureDistance.cpp \
|
||||
Placement.cpp \
|
||||
PreCompiled.cpp \
|
||||
PreCompiled.h \
|
||||
Property.cpp \
|
||||
PropertyFile.cpp \
|
||||
PropertyGeo.cpp \
|
||||
PropertyContainer.cpp \
|
||||
PropertyContainerPyImp.cpp \
|
||||
PropertyLinks.cpp \
|
||||
PropertyPythonObject.cpp \
|
||||
PropertyStandard.cpp \
|
||||
PropertyUnits.cpp \
|
||||
Transactions.cpp
|
||||
|
||||
includedir = @includedir@/App
|
||||
|
||||
nodist_include_HEADERS=\
|
||||
$(libFreeCADApp_la_BUILT)
|
||||
|
||||
include_HEADERS=\
|
||||
Application.h \
|
||||
ColorModel.h \
|
||||
ComplexGeoData.h \
|
||||
Document.h \
|
||||
DocumentObject.h \
|
||||
DocumentObjectFileIncluded.h \
|
||||
DocumentObjectGroup.h \
|
||||
DocumentObserver.h \
|
||||
DocumentObserverPython.h \
|
||||
DynamicProperty.h \
|
||||
FeaturePython.h \
|
||||
FeatureTest.h \
|
||||
GeoFeature.h \
|
||||
InventorObject.h \
|
||||
VRMLObject.h \
|
||||
Material.h \
|
||||
MeasureDistance.h \
|
||||
Placement.h \
|
||||
Property.h \
|
||||
PropertyFile.h \
|
||||
PropertyGeo.h \
|
||||
PropertyContainer.h \
|
||||
PropertyLinks.h \
|
||||
PropertyPythonObject.h \
|
||||
PropertyStandard.h \
|
||||
PropertyUnits.h \
|
||||
Transactions.h
|
||||
|
||||
%Script.h: FreeCAD%.py
|
||||
$(PYTHON) $(top_srcdir)/src/Tools/PythonToCPP.py $< $@
|
||||
|
||||
%.cpp: %.xml $(top_srcdir)/src/Tools/generateTemplates/templateClassPyExport.py
|
||||
$(PYTHON) $(top_srcdir)/src/Tools/generate.py --outputPath $(@D) $<
|
||||
|
||||
# the library search path.
|
||||
libFreeCADApp_la_LDFLAGS = -L../Base $(QT4_CORE_LIBS) $(all_libraries) \
|
||||
-version-info @LIB_CURRENT@:@LIB_REVISION@:@LIB_AGE@
|
||||
|
||||
libFreeCADApp_la_CPPFLAGS = -DRESOURCEDIR=\"$(datadir)\" -DDOCDIR=\"$(docdir)\"
|
||||
|
||||
libFreeCADApp_la_LIBADD = \
|
||||
@BOOST_FILESYSTEM_LIB@ \
|
||||
@BOOST_PROGOPTIONS_LIB@ \
|
||||
@BOOST_SIGNALS_LIB@ \
|
||||
@BOOST_SYSTEM_LIB@ \
|
||||
@BOOST_REGEX_LIB@ \
|
||||
@ZIPIOS_LIB@ \
|
||||
-lFreeCADBase \
|
||||
-l@PYTHON_LIB@ \
|
||||
-lxerces-c
|
||||
|
||||
# set the include path found by configure
|
||||
AM_CXXFLAGS = -I$(top_builddir)/src -I$(top_srcdir)/src $(all_includes) $(QT4_CORE_CXXFLAGS)
|
||||
|
||||
CLEANFILES = $(BUILT_SOURCES) $(libFreeCADApp_la_BUILT)
|
||||
|
||||
EXTRA_DIST = \
|
||||
ComplexGeoDataPy.xml \
|
||||
DocumentObjectGroupPy.xml \
|
||||
DocumentObjectPy.xml \
|
||||
DocumentPy.xml \
|
||||
FeaturePythonPy.xml \
|
||||
MaterialPy.xml \
|
||||
PropertyContainerPy.xml \
|
||||
core-app.dox \
|
||||
CMakeLists.txt \
|
||||
FreeCADInit.py \
|
||||
FreeCADTest.py
|
||||
|
||||
|
||||
|
|
@ -283,7 +283,7 @@ void PropertyEnumeration::setEnums(const char** plEnums)
|
|||
// check for NULL termination
|
||||
const char* p = *_EnumArray;
|
||||
unsigned int i=0;
|
||||
while(*(p++) != NULL)i++;
|
||||
while(*(p++) != 0)i++;
|
||||
// very unlikely to have enums with more then 5000 entries!
|
||||
assert(i<5000);
|
||||
}
|
||||
|
|
|
@ -26,6 +26,7 @@
|
|||
#ifndef _PreComp_
|
||||
# include <boost/version.hpp>
|
||||
# include <boost/filesystem/path.hpp>
|
||||
# include <cfloat>
|
||||
#endif
|
||||
|
||||
/// Here the FreeCAD includes sorted by Base,App,Gui......
|
||||
|
@ -45,7 +46,7 @@ using namespace Base;
|
|||
using namespace std;
|
||||
|
||||
|
||||
const PropertyQuantityConstraint::Constraints LengthStandard = {0.0,(double)INT_MAX,1.0};
|
||||
const PropertyQuantityConstraint::Constraints LengthStandard = {0.0,DBL_MAX,1.0};
|
||||
const PropertyQuantityConstraint::Constraints AngleStandard = {-360,360,1.0};
|
||||
|
||||
//**************************************************************************
|
||||
|
|
|
@ -1,306 +0,0 @@
|
|||
|
||||
lib_LTLIBRARIES=libFreeCADBase.la
|
||||
|
||||
BUILT_SOURCES=\
|
||||
moc_FutureWatcherProgress.cpp \
|
||||
AxisPy.cpp \
|
||||
BaseClassPy.cpp \
|
||||
BoundBoxPy.cpp \
|
||||
MatrixPy.cpp \
|
||||
PersistencePy.cpp \
|
||||
PlacementPy.cpp \
|
||||
RotationPy.cpp \
|
||||
VectorPy.cpp
|
||||
|
||||
if HAVE_SWIG_FOUND
|
||||
BUILT_SOURCES+=swigpyrun.h
|
||||
endif
|
||||
|
||||
|
||||
libFreeCADBase_la_BUILT=\
|
||||
AxisPy.h \
|
||||
BaseClassPy.h \
|
||||
BoundBoxPy.h \
|
||||
MatrixPy.h \
|
||||
PersistencePy.h \
|
||||
PlacementPy.h \
|
||||
RotationPy.h \
|
||||
VectorPy.h
|
||||
|
||||
libFreeCADBase_la_SOURCES=\
|
||||
Axis.cpp \
|
||||
AxisPyImp.cpp \
|
||||
Base64.cpp \
|
||||
BaseClass.cpp \
|
||||
BaseClassPyImp.cpp \
|
||||
BoundBoxPyImp.cpp \
|
||||
Builder3D.cpp \
|
||||
Console.cpp \
|
||||
Exception.cpp \
|
||||
Factory.cpp \
|
||||
FileInfo.cpp \
|
||||
FileTemplate.cpp \
|
||||
FileTemplate.h \
|
||||
FutureWatcherProgress.cpp \
|
||||
GeometryPyCXX.cpp \
|
||||
gzstream.cpp \
|
||||
Handle.cpp \
|
||||
InputSource.cpp \
|
||||
Interpreter.cpp \
|
||||
Matrix.cpp \
|
||||
MatrixPyImp.cpp \
|
||||
MemDebug.cpp \
|
||||
MemDebug.h \
|
||||
Parameter.cpp \
|
||||
ParameterPy.cpp \
|
||||
Persistence.cpp \
|
||||
PersistencePyImp.cpp \
|
||||
Placement.cpp \
|
||||
PlacementPyImp.cpp \
|
||||
PreCompiled.cpp \
|
||||
PreCompiled.h \
|
||||
PyExport.cpp \
|
||||
PyObjectBase.cpp \
|
||||
PyTools.c \
|
||||
PyTools.h \
|
||||
Reader.cpp \
|
||||
Rotation.cpp \
|
||||
RotationPyImp.cpp \
|
||||
Sequencer.cpp \
|
||||
Stream.cpp \
|
||||
Swap.cpp \
|
||||
swigpyrun.inl \
|
||||
swigpyrun.cpp \
|
||||
swigpyrun_1.3.25.cpp \
|
||||
swigpyrun_1.3.25.h \
|
||||
swigpyrun_1.3.33.cpp \
|
||||
swigpyrun_1.3.33.h \
|
||||
swigpyrun_1.3.36.cpp \
|
||||
swigpyrun_1.3.36.h \
|
||||
swigpyrun_1.3.38.cpp \
|
||||
swigpyrun_1.3.38.h \
|
||||
swigpyrun_1.3.40.cpp \
|
||||
swigpyrun_1.3.40.h \
|
||||
TimeInfo.cpp \
|
||||
Type.cpp \
|
||||
Tools.cpp \
|
||||
Tools2D.cpp \
|
||||
Uuid.cpp \
|
||||
UnitsApi.cpp \
|
||||
UnitsApi.h \
|
||||
UnitsApiPy.cpp \
|
||||
UnitsSchema.cpp \
|
||||
UnitsSchema.h \
|
||||
UnitsSchemaInternal.cpp \
|
||||
UnitsSchemaInternal.h \
|
||||
UnitsSchemaImperial1.cpp \
|
||||
UnitsSchemaImperial1.h \
|
||||
UnitsSchemaMKS.cpp \
|
||||
UnitsSchemaMKS.h \
|
||||
VectorPyImp.cpp \
|
||||
Vector3D.cpp \
|
||||
Writer.cpp \
|
||||
XMLTools.cpp
|
||||
|
||||
includedir = @includedir@/Base
|
||||
nodist_include_HEADERS=\
|
||||
$(libFreeCADBase_la_BUILT)
|
||||
|
||||
include_HEADERS=\
|
||||
Axis.h \
|
||||
Base64.h \
|
||||
BaseClass.h \
|
||||
BoundBox.h \
|
||||
Builder3D.h \
|
||||
Console.h \
|
||||
Exception.h \
|
||||
Factory.h \
|
||||
FileInfo.h \
|
||||
fdstream.hpp \
|
||||
FutureWatcherProgress.h \
|
||||
GeometryPyCXX.h \
|
||||
gzstream.h \
|
||||
Handle.h \
|
||||
InputSource.h \
|
||||
Interpreter.h \
|
||||
Matrix.h \
|
||||
Observer.h \
|
||||
Parameter.h \
|
||||
Persistence.h \
|
||||
Placement.h \
|
||||
PyExport.h \
|
||||
PyObjectBase.h \
|
||||
Reader.h \
|
||||
Rotation.h \
|
||||
Sequencer.h \
|
||||
Stream.h \
|
||||
Swap.h \
|
||||
TimeInfo.h \
|
||||
Type.h \
|
||||
Tools.h \
|
||||
Tools2D.h \
|
||||
Uuid.h \
|
||||
Vector3D.h \
|
||||
ViewProj.h \
|
||||
Writer.h \
|
||||
XMLTools.h
|
||||
|
||||
if HAVE_SWIG_FOUND
|
||||
swigpyrun.h:
|
||||
$(SWIG) -python -external-runtime
|
||||
endif
|
||||
|
||||
# rule for Qt MetaObject Compiler:
|
||||
moc_%.cpp: %.h
|
||||
$(QT_MOC) $< -o $(@F)
|
||||
|
||||
# rule for Qt MetaObject Compiler:
|
||||
%.moc: %.h
|
||||
$(QT_MOC) $< -o $(@F)
|
||||
|
||||
%.cpp: %.xml $(top_srcdir)/src/Tools/generateTemplates/templateClassPyExport.py
|
||||
$(PYTHON) $(top_srcdir)/src/Tools/generate.py --outputPath $(@D) $<
|
||||
|
||||
libFreeCADBase_la_LIBADD = \
|
||||
@BOOST_REGEX_LIB@ @BOOST_FILESYSTEM_LIB@ \
|
||||
@BOOST_SYSTEM_LIB@ @ZIPIOS_LIB@ \
|
||||
-l@PYTHON_LIB@ \
|
||||
-lxerces-c \
|
||||
-lz
|
||||
|
||||
# set the include path found by configure
|
||||
AM_CXXFLAGS = -I$(top_srcdir)/src -I$(top_builddir)/src $(all_includes) $(QT4_CORE_CXXFLAGS)
|
||||
AM_CFLAGS = -I$(top_srcdir)/src -I$(top_builddir)/src $(all_includes)
|
||||
|
||||
CLEANFILES = $(BUILT_SOURCES) $(libFreeCADBase_la_BUILT)
|
||||
|
||||
# the library version number
|
||||
libFreeCADBase_la_LDFLAGS = $(QT4_CORE_LIBS) $(all_libraries) \
|
||||
-version-info @LIB_CURRENT@:@LIB_REVISION@:@LIB_AGE@
|
||||
libFreeCADBase_la_CPPFLAGS = -DHAVE_SWIG=$(HAVE_SWIG)
|
||||
|
||||
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
AxisPy.xml \
|
||||
BaseClassPy.xml \
|
||||
BoundBoxPy.xml \
|
||||
MatrixPy.xml \
|
||||
PersistencePy.xml \
|
||||
PlacementPy.xml \
|
||||
RotationPy.xml \
|
||||
VectorPy.xml \
|
||||
lex.UnitsApi.c \
|
||||
UnitsApi.tab.c \
|
||||
UnitsApi.l \
|
||||
UnitsApi.y \
|
||||
core-base.dox
|
||||
|
||||
distclean-compile:
|
||||
# avoid to remove UnitsApi.tab.c
|
||||
|
||||
# -------------------------------------------------------------------------------
|
||||
# Debian based systems offer packages for PyCXX and zipios++ but other Linux
|
||||
# distributions possibly not. Thus, we must prepare a switch for this Makefile
|
||||
# to use the local or system-wide packages which will also affect the 'make dist'
|
||||
# target to create source tarballs without the local PyCXX & zipios++ sources.
|
||||
# -------------------------------------------------------------------------------
|
||||
|
||||
# PyCXX stuff
|
||||
if MAKE_NO_DFSG_PACKAGE
|
||||
PYCXXSRC=../CXX
|
||||
EXTRA_DIST += \
|
||||
$(PYCXXSRC)/Config.hxx \
|
||||
$(PYCXXSRC)/Exception.hxx \
|
||||
$(PYCXXSRC)/Extensions.hxx \
|
||||
$(PYCXXSRC)/IndirectPythonInterface.hxx \
|
||||
$(PYCXXSRC)/Objects.hxx \
|
||||
$(PYCXXSRC)/Version.hxx \
|
||||
$(PYCXXSRC)/WrapPython.h \
|
||||
$(PYCXXSRC)/COPYRIGHT \
|
||||
$(PYCXXSRC)/pycxx.dox \
|
||||
$(PYCXXSRC)/Python2/Config.hxx \
|
||||
$(PYCXXSRC)/Python2/CxxDebug.hxx \
|
||||
$(PYCXXSRC)/Python2/cxxextensions.c \
|
||||
$(PYCXXSRC)/Python2/cxx_extensions.cxx \
|
||||
$(PYCXXSRC)/Python2/cxxsupport.cxx \
|
||||
$(PYCXXSRC)/Python2/Exception.hxx \
|
||||
$(PYCXXSRC)/Python2/ExtensionModule.hxx \
|
||||
$(PYCXXSRC)/Python2/ExtensionOldType.hxx \
|
||||
$(PYCXXSRC)/Python2/Extensions.hxx \
|
||||
$(PYCXXSRC)/Python2/ExtensionType.hxx \
|
||||
$(PYCXXSRC)/Python2/ExtensionTypeBase.hxx \
|
||||
$(PYCXXSRC)/Python2/IndirectPythonInterface.cxx \
|
||||
$(PYCXXSRC)/Python2/IndirectPythonInterface.hxx \
|
||||
$(PYCXXSRC)/Python2/Objects.hxx \
|
||||
$(PYCXXSRC)/Python2/PythonType.hxx
|
||||
else
|
||||
PYCXXSRC=/usr/share/@PYTHON_LIB@/CXX
|
||||
endif
|
||||
|
||||
nodist_libFreeCADBase_la_SOURCES=\
|
||||
$(PYCXXSRC)/cxxextensions.c \
|
||||
$(PYCXXSRC)/cxx_extensions.cxx \
|
||||
$(PYCXXSRC)/cxxsupport.cxx \
|
||||
$(PYCXXSRC)/IndirectPythonInterface.cxx
|
||||
|
||||
# zipios++ stuff
|
||||
if MAKE_NO_DFSG_PACKAGE
|
||||
ZIPIOS_SRC=../zipios++
|
||||
nodist_libFreeCADBase_la_SOURCES += \
|
||||
$(ZIPIOS_SRC)/basicentry.cpp \
|
||||
$(ZIPIOS_SRC)/collcoll.cpp \
|
||||
$(ZIPIOS_SRC)/deflateoutputstreambuf.cpp \
|
||||
$(ZIPIOS_SRC)/dircoll.cpp \
|
||||
$(ZIPIOS_SRC)/directory.cpp \
|
||||
$(ZIPIOS_SRC)/fcoll.cpp \
|
||||
$(ZIPIOS_SRC)/fcollexceptions.cpp \
|
||||
$(ZIPIOS_SRC)/fileentry.cpp \
|
||||
$(ZIPIOS_SRC)/filepath.cpp \
|
||||
$(ZIPIOS_SRC)/filterinputstreambuf.cpp \
|
||||
$(ZIPIOS_SRC)/filteroutputstreambuf.cpp \
|
||||
$(ZIPIOS_SRC)/gzipoutputstream.cpp \
|
||||
$(ZIPIOS_SRC)/gzipoutputstreambuf.cpp \
|
||||
$(ZIPIOS_SRC)/inflateinputstreambuf.cpp \
|
||||
$(ZIPIOS_SRC)/zipfile.cpp \
|
||||
$(ZIPIOS_SRC)/ziphead.cpp \
|
||||
$(ZIPIOS_SRC)/zipheadio.cpp \
|
||||
$(ZIPIOS_SRC)/zipinputstream.cpp \
|
||||
$(ZIPIOS_SRC)/zipinputstreambuf.cpp \
|
||||
$(ZIPIOS_SRC)/zipoutputstreambuf.cpp \
|
||||
$(ZIPIOS_SRC)/zipoutputstream.cpp
|
||||
|
||||
EXTRA_DIST += \
|
||||
$(ZIPIOS_SRC)/backbuffer.h \
|
||||
$(ZIPIOS_SRC)/basicentry.h \
|
||||
$(ZIPIOS_SRC)/collcoll.h \
|
||||
$(ZIPIOS_SRC)/deflateoutputstreambuf.h \
|
||||
$(ZIPIOS_SRC)/dircoll.h \
|
||||
$(ZIPIOS_SRC)/directory.h \
|
||||
$(ZIPIOS_SRC)/fcoll.h \
|
||||
$(ZIPIOS_SRC)/fcollexceptions.h \
|
||||
$(ZIPIOS_SRC)/fileentry.h \
|
||||
$(ZIPIOS_SRC)/filepath.h \
|
||||
$(ZIPIOS_SRC)/filterinputstreambuf.h \
|
||||
$(ZIPIOS_SRC)/filteroutputstreambuf.h \
|
||||
$(ZIPIOS_SRC)/gzipoutputstream.h \
|
||||
$(ZIPIOS_SRC)/gzipoutputstreambuf.h \
|
||||
$(ZIPIOS_SRC)/inflateinputstreambuf.h \
|
||||
$(ZIPIOS_SRC)/meta-iostreams.h \
|
||||
$(ZIPIOS_SRC)/outputstringstream.h \
|
||||
$(ZIPIOS_SRC)/simplesmartptr.h \
|
||||
$(ZIPIOS_SRC)/virtualseeker.h \
|
||||
$(ZIPIOS_SRC)/zipfile.h \
|
||||
$(ZIPIOS_SRC)/ziphead.h \
|
||||
$(ZIPIOS_SRC)/zipheadio.h \
|
||||
$(ZIPIOS_SRC)/zipinputstream.h \
|
||||
$(ZIPIOS_SRC)/zipinputstreambuf.h \
|
||||
$(ZIPIOS_SRC)/zipios_common.h \
|
||||
$(ZIPIOS_SRC)/zipios-config.h \
|
||||
$(ZIPIOS_SRC)/zipios_defs.h \
|
||||
$(ZIPIOS_SRC)/zipoutputstreambuf.h \
|
||||
$(ZIPIOS_SRC)/zipoutputstream.h \
|
||||
$(nodist_libFreeCADBase_la_SOURCES) \
|
||||
$(ZIPIOS_SRC)/zipios.dox
|
||||
endif
|
||||
|
|
@ -1,18 +0,0 @@
|
|||
|
||||
BUILT_SOURCES = \
|
||||
Version.h
|
||||
|
||||
Version.h: Version.h.in
|
||||
$(PYTHON) $(top_srcdir)/src/Tools/SubWCRev.py --srcdir=$(top_srcdir) --bindir=$(top_builddir)
|
||||
|
||||
|
||||
include_HEADERS=\
|
||||
Version.h
|
||||
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
||||
EXTRA_DIST = \
|
||||
BuildVersion.bat \
|
||||
Version.h.in \
|
||||
CMakeLists.txt
|
||||
|
|
@ -1,12 +0,0 @@
|
|||
doc_DATA = \
|
||||
freecad.qch \
|
||||
freecad.qhc \
|
||||
Start_Page.html
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(doc_DATA) \
|
||||
CMakeLists.txt \
|
||||
doctips.dox \
|
||||
mainpage.dox \
|
||||
primary-groups.dox \
|
||||
FreecadDoxygenLayout.xml
|
|
@ -1,121 +0,0 @@
|
|||
noinst_LTLIBRARIES=libIcons.la
|
||||
|
||||
BUILT_SOURCES=\
|
||||
qrc_resource.cpp
|
||||
|
||||
nodist_libIcons_la_SOURCES=\
|
||||
qrc_resource.cpp
|
||||
|
||||
data_DATA = freecad.xpm freecad-doc.png
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(data_DATA) \
|
||||
ClassBrowser/const_member.png \
|
||||
ClassBrowser/member.png \
|
||||
ClassBrowser/method.png \
|
||||
ClassBrowser/property.png \
|
||||
ClassBrowser/type_class.png \
|
||||
ClassBrowser/type_enum.png \
|
||||
ClassBrowser/type_module.png \
|
||||
ClassBrowser/const_member.svg \
|
||||
ClassBrowser/member.svg \
|
||||
ClassBrowser/method.svg \
|
||||
ClassBrowser/property.svg \
|
||||
ClassBrowser/type_class.svg \
|
||||
ClassBrowser/type_enum.svg \
|
||||
ClassBrowser/type_module.svg \
|
||||
add.png \
|
||||
delete.png \
|
||||
edit_remove.png \
|
||||
mouse_pointer.png \
|
||||
BmpFactoryIcons.cpp \
|
||||
background.xpm \
|
||||
bulb.xpm \
|
||||
button_down.xpm \
|
||||
button_left.xpm \
|
||||
button_right.xpm \
|
||||
button_up.xpm \
|
||||
Document.xpm \
|
||||
Feature.xpm \
|
||||
freecadsplash.png \
|
||||
freecad.svg \
|
||||
images.cpp \
|
||||
macro-execute.svg \
|
||||
macro-record.svg \
|
||||
macro-stop.svg \
|
||||
preferences-display.svg \
|
||||
preferences-general.svg \
|
||||
Std_ViewScreenShot.svg \
|
||||
utilities-terminal.svg \
|
||||
breakpoint.png \
|
||||
debug-marker.png \
|
||||
debug-start.svg \
|
||||
debug-stop.svg \
|
||||
document-new.svg \
|
||||
document-open.svg \
|
||||
document-save.svg \
|
||||
document-save-as.svg \
|
||||
document-print.svg \
|
||||
document-properties.svg \
|
||||
system-log-out.svg \
|
||||
edit_Cancel.svg \
|
||||
edit_OK.svg \
|
||||
edit-copy.svg \
|
||||
edit-cut.svg \
|
||||
edit-delete.svg \
|
||||
edit-edit.svg \
|
||||
edit-paste.svg \
|
||||
edit-select-all.svg \
|
||||
edit-select-box.svg \
|
||||
edit-redo.svg \
|
||||
edit-undo.svg \
|
||||
preferences-system.svg \
|
||||
window-new.svg \
|
||||
camera-photo.svg \
|
||||
applications-accessories.svg \
|
||||
accessories-text-editor.svg \
|
||||
help-browser.svg \
|
||||
spaceball_button.svg \
|
||||
SpNav-PanLR.png \
|
||||
SpNav-PanUD.png \
|
||||
SpNav-Roll.png \
|
||||
SpNav-Spin.png \
|
||||
SpNav-Tilt.png \
|
||||
SpNav-Zoom.png \
|
||||
view-unselectable.svg \
|
||||
view-refresh.svg \
|
||||
view-measurement.svg \
|
||||
view-fullscreen.svg \
|
||||
view-axometric.svg \
|
||||
view-isometric.svg \
|
||||
view-perspective.svg \
|
||||
view-bottom.svg \
|
||||
view-front.svg \
|
||||
view-left.svg \
|
||||
view-rear.svg \
|
||||
view-right.svg \
|
||||
view-top.svg \
|
||||
view-zoom-all.svg \
|
||||
view-zoom-border.svg \
|
||||
view-zoom-fit.svg \
|
||||
view-zoom-in.svg \
|
||||
view-zoom-out.svg \
|
||||
view-zoom-selection.svg \
|
||||
view-rotate-left.svg \
|
||||
view-rotate-right.svg \
|
||||
Tree_Annotation.svg \
|
||||
Tree_Dimension.svg \
|
||||
Tree_Python.svg \
|
||||
resource.qrc
|
||||
|
||||
|
||||
# rules for Qt Resource Compiler:
|
||||
qrc_%.cpp: %.qrc
|
||||
$(QT_RCC) -name $(*F) $< -o $(@F)
|
||||
|
||||
|
||||
# set the include path found by configure
|
||||
AM_CXXFLAGS = -I$(top_srcdir)/src -I$(top_builddir)/src $(QT_CXXFLAGS) $(all_includes)
|
||||
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
|
@ -1,91 +0,0 @@
|
|||
noinst_LTLIBRARIES=libLanguage.la
|
||||
|
||||
BUILT_SOURCES=\
|
||||
moc_Translator.cpp \
|
||||
qrc_translation.cpp
|
||||
|
||||
nodist_libLanguage_la_SOURCES=\
|
||||
qrc_translation.cpp
|
||||
|
||||
libLanguage_la_SOURCES=\
|
||||
Translator.cpp \
|
||||
Translator.h
|
||||
|
||||
EXTRA_DIST = \
|
||||
translation.qrc \
|
||||
FreeCAD.po \
|
||||
FreeCAD_af.qm \
|
||||
FreeCAD_de.qm \
|
||||
FreeCAD_es-ES.qm \
|
||||
FreeCAD_fi.qm \
|
||||
FreeCAD_fr.qm \
|
||||
FreeCAD_hr.qm \
|
||||
FreeCAD_it.qm \
|
||||
FreeCAD_nl.qm \
|
||||
FreeCAD_no.qm \
|
||||
FreeCAD_pl.qm \
|
||||
FreeCAD_pt-BR.qm \
|
||||
FreeCAD_ru.qm \
|
||||
FreeCAD_sv-SE.qm \
|
||||
FreeCAD_uk.qm \
|
||||
FreeCAD_zh-CN.qm \
|
||||
FreeCAD_zh-TW.qm \
|
||||
FreeCAD_cs.qm \
|
||||
FreeCAD_tr.qm \
|
||||
FreeCAD_hu.qm \
|
||||
FreeCAD_ja.qm \
|
||||
FreeCAD_ro.qm \
|
||||
FreeCAD_sk.qm \
|
||||
FreeCAD_af.ts \
|
||||
FreeCAD_de.ts \
|
||||
FreeCAD_es-ES.ts \
|
||||
FreeCAD_fi.ts \
|
||||
FreeCAD_fr.ts \
|
||||
FreeCAD_hr.ts \
|
||||
FreeCAD_it.ts \
|
||||
FreeCAD_nl.ts \
|
||||
FreeCAD_no.ts \
|
||||
FreeCAD_pl.ts \
|
||||
FreeCAD_pt-BR.ts \
|
||||
FreeCAD_ru.ts \
|
||||
FreeCAD_sv-SE.ts \
|
||||
FreeCAD_uk.ts \
|
||||
FreeCAD_zh-CN.ts \
|
||||
FreeCAD_zh-TW.ts \
|
||||
FreeCAD_cs.ts \
|
||||
FreeCAD_tr.ts \
|
||||
FreeCAD_hu.ts \
|
||||
FreeCAD_ja.ts \
|
||||
FreeCAD_ro.ts \
|
||||
FreeCAD_sk.ts \
|
||||
qt_de.qm \
|
||||
qt_es-ES.qm \
|
||||
qt_fr.qm \
|
||||
qt_it.qm \
|
||||
qt_jp.qm \
|
||||
qt_pl.qm \
|
||||
qt_pt-BR.qm \
|
||||
qt_ru.qm \
|
||||
qt_sv-SE.qm \
|
||||
qt_uk.qm \
|
||||
qt_zh-CN.qm
|
||||
|
||||
|
||||
# rule for Qt MetaObject Compiler:
|
||||
moc_%.cpp: %.h
|
||||
$(QT_MOC) $< -o $(@F)
|
||||
|
||||
# rule for Qt MetaObject Compiler:
|
||||
%.moc: %.h
|
||||
$(QT_MOC) $< -o $(@F)
|
||||
|
||||
# rules for Qt Resource Compiler:
|
||||
qrc_%.cpp: %.qrc
|
||||
$(QT_RCC) -name $(*F) $< -o $(@F)
|
||||
|
||||
|
||||
# set the include path found by configure
|
||||
AM_CXXFLAGS = -I$(top_srcdir)/src -I$(top_builddir)/src -I$(srcdir)/.. $(QT_CXXFLAGS) $(all_includes)
|
||||
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
|
@ -1,563 +0,0 @@
|
|||
SUBDIRS=Icons Language propertyeditor iisTaskPanel TaskView
|
||||
|
||||
lib_LTLIBRARIES=libFreeCADGui.la
|
||||
|
||||
BUILT_SOURCES=\
|
||||
moc_Action.cpp \
|
||||
moc_CallTips.cpp \
|
||||
moc_CombiView.cpp \
|
||||
moc_Control.cpp \
|
||||
moc_DemoMode.cpp \
|
||||
moc_DlgActionsImp.cpp \
|
||||
moc_DlgActivateWindowImp.cpp \
|
||||
moc_DlgCommandsImp.cpp \
|
||||
moc_DlgCustomizeImp.cpp \
|
||||
moc_DlgCustomizeSpaceball.cpp \
|
||||
moc_DlgCustomizeSpNavSettings.cpp \
|
||||
moc_DlgDisplayPropertiesImp.cpp \
|
||||
moc_DlgEditorImp.cpp \
|
||||
moc_DlgGeneralImp.cpp \
|
||||
moc_DlgInputDialogImp.cpp \
|
||||
moc_DlgKeyboardImp.cpp \
|
||||
moc_DlgMacroExecuteImp.cpp \
|
||||
moc_DlgMacroRecordImp.cpp \
|
||||
moc_DlgMaterialPropertiesImp.cpp \
|
||||
moc_DlgEditFileIncludeProptertyExternal.cpp \
|
||||
moc_DlgOnlineHelpImp.cpp \
|
||||
moc_DlgParameterImp.cpp \
|
||||
moc_DlgPreferencesImp.cpp \
|
||||
moc_DlgProjectUtility.cpp \
|
||||
moc_DlgReportViewImp.cpp \
|
||||
moc_DlgRunExternal.cpp \
|
||||
moc_DlgSettings3DViewImp.cpp \
|
||||
moc_DlgSettingsViewColor.cpp \
|
||||
moc_DlgSettingsColorGradientImp.cpp \
|
||||
moc_DlgSettingsDocumentImp.cpp \
|
||||
moc_DlgSettingsImageImp.cpp \
|
||||
moc_DlgSettingsMacroImp.cpp \
|
||||
moc_DlgSettingsUnitsImp.cpp \
|
||||
moc_DlgTipOfTheDayImp.cpp \
|
||||
moc_DlgToolbarsImp.cpp \
|
||||
moc_TaskDlgRelocation.cpp \
|
||||
moc_DlgUndoRedo.cpp \
|
||||
moc_DockWindow.cpp \
|
||||
moc_DockWindowManager.cpp \
|
||||
moc_DownloadDialog.cpp \
|
||||
moc_FileDialog.cpp \
|
||||
moc_Flag.cpp \
|
||||
moc_GuiApplicationNativeEventAware.cpp \
|
||||
moc_HelpView.cpp \
|
||||
moc_InputVector.cpp \
|
||||
moc_MainWindow.cpp \
|
||||
moc_ManualAlignment.cpp \
|
||||
moc_NetworkRetriever.cpp \
|
||||
moc_OnlineDocumentation.cpp \
|
||||
moc_Placement.cpp \
|
||||
moc_PrefWidgets.cpp \
|
||||
moc_ProgressBar.cpp \
|
||||
moc_ProgressDialog.cpp \
|
||||
moc_PropertyPage.cpp \
|
||||
moc_PropertyView.cpp \
|
||||
moc_PythonConsole.cpp \
|
||||
moc_PythonDebugger.cpp \
|
||||
moc_PythonEditor.cpp \
|
||||
moc_EditorView.cpp \
|
||||
moc_ReportView.cpp \
|
||||
moc_SceneInspector.cpp \
|
||||
moc_SelectionView.cpp \
|
||||
moc_SpinBox.cpp \
|
||||
moc_Splashscreen.cpp \
|
||||
moc_TaskPanelView.cpp \
|
||||
moc_TextEdit.cpp \
|
||||
moc_TextureMapping.cpp \
|
||||
moc_ToolBox.cpp \
|
||||
moc_Transform.cpp \
|
||||
moc_Tree.cpp \
|
||||
moc_TreeView.cpp \
|
||||
moc_MDIView.cpp\
|
||||
moc_View3DInventor.cpp \
|
||||
moc_WidgetFactory.cpp \
|
||||
moc_Widgets.cpp \
|
||||
ui_AboutApplication.h \
|
||||
ui_DemoMode.h \
|
||||
ui_DlgActions.h \
|
||||
ui_DlgActivateWindow.h \
|
||||
ui_DlgAuthorization.h \
|
||||
ui_DlgChooseIcon.h \
|
||||
ui_DlgCommands.h \
|
||||
ui_DlgCustomizeSpNavSettings.h \
|
||||
ui_DlgDisplayProperties.h \
|
||||
ui_DlgEditor.h \
|
||||
ui_DlgInputDialog.h \
|
||||
ui_DlgKeyboard.h \
|
||||
ui_DlgGeneral.h \
|
||||
ui_DlgMacroExecute.h \
|
||||
ui_DlgMacroRecord.h \
|
||||
ui_DlgMaterialProperties.h \
|
||||
ui_DlgOnlineHelp.h \
|
||||
ui_DlgParameter.h \
|
||||
ui_DlgPreferences.h \
|
||||
ui_DlgProjectInformation.h \
|
||||
ui_DlgProjectUtility.h \
|
||||
ui_DlgReportView.h \
|
||||
ui_DlgRunExternal.h \
|
||||
ui_DlgSettings3DView.h \
|
||||
ui_DlgSettingsViewColor.h \
|
||||
ui_DlgSettingsColorGradient.h \
|
||||
ui_DlgSettingsDocument.h \
|
||||
ui_DlgSettingsImage.h \
|
||||
ui_DlgSettingsMacro.h \
|
||||
ui_DlgSettingsUnits.h \
|
||||
ui_DlgTipOfTheDay.h \
|
||||
ui_DlgToolbars.h \
|
||||
ui_DlgTreeWidget.h \
|
||||
ui_DlgLocationAngle.h \
|
||||
ui_DlgLocationPos.h \
|
||||
ui_SceneInspector.h \
|
||||
ui_MouseButtons.h \
|
||||
ui_InputVector.h \
|
||||
ui_Placement.h \
|
||||
ui_TextureMapping.h \
|
||||
DocumentPy.cpp \
|
||||
PythonWorkbenchPy.cpp \
|
||||
SelectionObjectPy.cpp \
|
||||
WorkbenchPy.cpp \
|
||||
ViewProviderPy.cpp \
|
||||
ViewProviderDocumentObjectPy.cpp \
|
||||
ViewProviderPythonFeaturePy.cpp \
|
||||
GuiInitScript.h
|
||||
|
||||
libFreeCADGui_la_UI=\
|
||||
AboutApplication.ui \
|
||||
DemoMode.ui \
|
||||
DlgActions.ui \
|
||||
DlgActivateWindow.ui \
|
||||
DlgAuthorization.ui \
|
||||
DlgChooseIcon.ui \
|
||||
DlgCommands.ui \
|
||||
DlgCustomizeSpNavSettings.ui \
|
||||
DlgDisplayProperties.ui \
|
||||
DlgEditor.ui \
|
||||
DlgGeneral.ui \
|
||||
DlgInputDialog.ui \
|
||||
DlgKeyboard.ui \
|
||||
DlgMacroExecute.ui \
|
||||
DlgMacroRecord.ui \
|
||||
DlgMaterialProperties.ui \
|
||||
DlgOnlineHelp.ui \
|
||||
DlgParameter.ui \
|
||||
DlgPreferences.ui \
|
||||
DlgProjectInformation.ui \
|
||||
DlgProjectUtility.ui \
|
||||
DlgReportView.ui \
|
||||
DlgRunExternal.ui \
|
||||
DlgSettings3DView.ui \
|
||||
DlgSettingsViewColor.ui \
|
||||
DlgSettingsDocument.ui \
|
||||
DlgSettingsImage.ui \
|
||||
DlgSettingsMacro.ui \
|
||||
DlgSettingsUnits.ui \
|
||||
DlgSettingsColorGradient.ui \
|
||||
DlgTipOfTheDay.ui \
|
||||
DlgToolbars.ui \
|
||||
DlgLocationAngle.ui \
|
||||
DlgLocationPos.ui \
|
||||
DlgTreeWidget.ui \
|
||||
MouseButtons.ui \
|
||||
SceneInspector.ui \
|
||||
InputVector.ui \
|
||||
Placement.ui \
|
||||
TextureMapping.ui
|
||||
|
||||
libFreeCADGui_la_BUILT=\
|
||||
DocumentPy.h \
|
||||
PythonWorkbenchPy.h \
|
||||
SelectionObjectPy.h \
|
||||
ViewProviderPy.h \
|
||||
ViewProviderDocumentObjectPy.h \
|
||||
ViewProviderPythonFeaturePy.h \
|
||||
WorkbenchPy.h
|
||||
|
||||
libFreeCADGui_la_SOURCES=\
|
||||
Inventor/SoDrawingGrid.cpp \
|
||||
Action.cpp \
|
||||
Application.cpp \
|
||||
ApplicationPy.cpp \
|
||||
Assistant.cpp \
|
||||
Assistant.h \
|
||||
BitmapFactory.cpp \
|
||||
BlenderNavigationStyle.cpp \
|
||||
CADNavigationStyle.cpp \
|
||||
CallTips.cpp \
|
||||
CombiView.cpp \
|
||||
Control.cpp \
|
||||
Command.cpp \
|
||||
CommandDoc.cpp \
|
||||
CommandFeat.cpp \
|
||||
CommandMacro.cpp \
|
||||
CommandStd.cpp \
|
||||
CommandWindow.cpp \
|
||||
CommandTest.cpp \
|
||||
CommandView.cpp \
|
||||
DemoMode.cpp \
|
||||
DemoMode.h \
|
||||
DlgActionsImp.cpp \
|
||||
DlgActionsImp.h \
|
||||
DlgActivateWindowImp.cpp \
|
||||
DlgActivateWindowImp.h \
|
||||
DlgCommandsImp.cpp \
|
||||
DlgCommandsImp.h \
|
||||
DlgCustomizeImp.cpp \
|
||||
DlgCustomizeImp.h \
|
||||
DlgCustomizeSpaceball.cpp \
|
||||
DlgCustomizeSpaceball.h \
|
||||
DlgCustomizeSpNavSettings.cpp \
|
||||
DlgCustomizeSpNavSettings.h \
|
||||
DlgDisplayPropertiesImp.cpp \
|
||||
DlgDisplayPropertiesImp.h \
|
||||
DlgEditorImp.cpp \
|
||||
DlgEditorImp.h \
|
||||
DlgGeneralImp.cpp \
|
||||
DlgGeneralImp.h \
|
||||
DlgInputDialogImp.cpp \
|
||||
DlgInputDialogImp.h \
|
||||
DlgKeyboardImp.cpp \
|
||||
DlgKeyboardImp.h \
|
||||
DlgMacroExecuteImp.cpp \
|
||||
DlgMacroExecuteImp.h \
|
||||
DlgMacroRecordImp.cpp \
|
||||
DlgMacroRecordImp.h \
|
||||
DlgMaterialPropertiesImp.cpp \
|
||||
DlgMaterialPropertiesImp.h \
|
||||
DlgOnlineHelpImp.cpp \
|
||||
DlgOnlineHelpImp.h \
|
||||
DlgParameterImp.cpp \
|
||||
DlgParameterImp.h \
|
||||
DlgPreferencesImp.cpp \
|
||||
DlgPreferencesImp.h \
|
||||
DlgProjectInformationImp.cpp \
|
||||
DlgProjectInformationImp.h \
|
||||
DlgProjectUtility.cpp \
|
||||
DlgProjectUtility.h \
|
||||
DlgReportViewImp.cpp \
|
||||
DlgReportViewImp.h \
|
||||
DlgRunExternal.cpp \
|
||||
DlgRunExternal.h \
|
||||
DlgEditFileIncludeProptertyExternal.cpp \
|
||||
DlgEditFileIncludeProptertyExternal.h \
|
||||
DlgSettings3DViewImp.cpp \
|
||||
DlgSettings3DViewImp.h \
|
||||
DlgSettingsViewColor.cpp \
|
||||
DlgSettingsViewColor.h \
|
||||
DlgSettingsColorGradientImp.cpp \
|
||||
DlgSettingsColorGradientImp.h \
|
||||
DlgSettingsDocumentImp.cpp \
|
||||
DlgSettingsDocumentImp.h \
|
||||
DlgSettingsImageImp.cpp \
|
||||
DlgSettingsImageImp.h \
|
||||
DlgSettingsMacroImp.cpp \
|
||||
DlgSettingsMacroImp.h \
|
||||
DlgSettingsUnitsImp.cpp \
|
||||
DlgSettingsUnitsImp.h \
|
||||
DlgTipOfTheDayImp.cpp \
|
||||
DlgTipOfTheDayImp.h \
|
||||
DlgToolbarsImp.cpp \
|
||||
DlgToolbarsImp.h \
|
||||
DownloadDialog.cpp \
|
||||
DownloadDialog.h \
|
||||
TaskDlgRelocation.cpp \
|
||||
TaskDlgRelocation.h \
|
||||
DlgUndoRedo.cpp \
|
||||
DlgUndoRedo.h \
|
||||
DockWindow.cpp \
|
||||
DockWindowManager.cpp \
|
||||
Document.cpp \
|
||||
DocumentPyImp.cpp \
|
||||
DocumentModel.cpp \
|
||||
FileDialog.cpp \
|
||||
Flag.cpp \
|
||||
GuiApplicationNativeEventAware.cpp \
|
||||
GuiApplicationNativeEventAware.h \
|
||||
GuiConsole.cpp \
|
||||
GuiConsole.h \
|
||||
HelpView.cpp \
|
||||
InputVector.cpp \
|
||||
InputVector.h \
|
||||
InventorNavigationStyle.cpp \
|
||||
Placement.cpp \
|
||||
Placement.h \
|
||||
Macro.cpp \
|
||||
MainWindow.cpp \
|
||||
ManualAlignment.cpp \
|
||||
ManualAlignment.h \
|
||||
MDIView.cpp \
|
||||
MenuManager.cpp \
|
||||
MergeDocuments.cpp \
|
||||
MouseSelection.cpp \
|
||||
NavigationStyle.cpp \
|
||||
NetworkRetriever.cpp \
|
||||
OnlineDocumentation.cpp \
|
||||
OnlineDocumentation.h \
|
||||
PreCompiled.cpp \
|
||||
PreCompiled.h \
|
||||
PrefWidgets.cpp \
|
||||
ProgressBar.cpp \
|
||||
ProgressDialog.cpp \
|
||||
PropertyPage.cpp \
|
||||
PropertyView.cpp \
|
||||
PythonConsole.cpp \
|
||||
PythonConsolePy.cpp \
|
||||
PythonConsolePy.h \
|
||||
PythonDebugger.cpp \
|
||||
PythonDebugger.h \
|
||||
PythonEditor.cpp \
|
||||
EditorView.cpp \
|
||||
PythonWorkbenchPyImp.cpp \
|
||||
ReportView.cpp \
|
||||
resource.cpp \
|
||||
SceneInspector.cpp \
|
||||
SceneInspector.h \
|
||||
Selection.cpp \
|
||||
SelectionObject.cpp \
|
||||
SelectionFilter.cpp \
|
||||
SelectionObjectPyImp.cpp \
|
||||
SelectionView.cpp \
|
||||
SoAxisCrossKit.cpp \
|
||||
SoFCBackgroundGradient.cpp \
|
||||
SoFCBoundingBox.cpp \
|
||||
SoFCColorBar.cpp \
|
||||
SoFCColorGradient.cpp \
|
||||
SoFCColorLegend.cpp \
|
||||
SoFCDB.cpp \
|
||||
SoFCDB.h \
|
||||
SoFCInteractiveElement.cpp \
|
||||
SoNavigationDragger.cpp \
|
||||
SoFCOffscreenRenderer.cpp \
|
||||
SoFCSelection.cpp \
|
||||
SoFCUnifiedSelection.cpp \
|
||||
SoFCSelectionAction.cpp \
|
||||
SoFCVectorizeSVGAction.cpp \
|
||||
SoFCVectorizeU3DAction.cpp \
|
||||
SoNavigationDraggerLayout.h \
|
||||
SoTextLabel.cpp \
|
||||
SpaceballEvent.cpp \
|
||||
SpaceballEvent.h \
|
||||
SpinBox.cpp \
|
||||
Splashscreen.cpp \
|
||||
SplitView3DInventor.cpp \
|
||||
SyntaxHighlighter.cpp \
|
||||
TaskPanelView.cpp \
|
||||
TextEdit.cpp \
|
||||
TextureMapping.cpp \
|
||||
TextureMapping.h \
|
||||
Thumbnail.cpp \
|
||||
ToolBarManager.cpp \
|
||||
ToolBox.cpp \
|
||||
ToolBoxManager.cpp \
|
||||
TouchpadNavigationStyle.cpp \
|
||||
Transform.cpp \
|
||||
Transform.h \
|
||||
Tree.cpp \
|
||||
TreeView.cpp \
|
||||
Utilities.cpp \
|
||||
View.cpp \
|
||||
View3DInventor.cpp \
|
||||
View3DInventorExamples.cpp \
|
||||
View3DInventorExamples.h \
|
||||
View3DInventorViewer.cpp \
|
||||
View3DPy.cpp \
|
||||
ViewProvider.cpp \
|
||||
ViewProviderBuilder.cpp \
|
||||
ViewProviderAnnotation.cpp \
|
||||
ViewProviderDocumentObject.cpp \
|
||||
ViewProviderDocumentObjectGroup.cpp \
|
||||
ViewProviderExtern.cpp \
|
||||
ViewProviderFeature.cpp \
|
||||
ViewProviderGeometryObject.cpp \
|
||||
ViewProviderInventorObject.cpp \
|
||||
ViewProviderVRMLObject.cpp \
|
||||
ViewProviderPyImp.cpp \
|
||||
ViewProviderDocumentObjectPyImp.cpp \
|
||||
ViewProviderMeasureDistance.cpp \
|
||||
ViewProviderPythonFeature.cpp \
|
||||
ViewProviderPythonFeaturePyImp.cpp \
|
||||
WaitCursor.cpp \
|
||||
WhatsThis.cpp \
|
||||
WidgetFactory.cpp \
|
||||
Widgets.cpp \
|
||||
Window.cpp \
|
||||
Workbench.cpp \
|
||||
WorkbenchFactory.cpp \
|
||||
WorkbenchManager.cpp \
|
||||
WorkbenchPyImp.cpp
|
||||
|
||||
includedir = @includedir@/Gui
|
||||
nodist_include_HEADERS=\
|
||||
$(libFreeCADGui_la_BUILT)
|
||||
|
||||
include_HEADERS=\
|
||||
Inventor/SoDrawingGrid.h \
|
||||
Qt4All.h \
|
||||
InventorAll.h \
|
||||
Action.h \
|
||||
Application.h \
|
||||
BitmapFactory.h \
|
||||
CallTips.h \
|
||||
CombiView.h \
|
||||
Control.h \
|
||||
Command.h \
|
||||
DockWindow.h \
|
||||
DockWindowManager.h \
|
||||
Document.h \
|
||||
DocumentModel.h \
|
||||
FileDialog.h \
|
||||
Flag.h \
|
||||
HelpView.h \
|
||||
Macro.h \
|
||||
MainWindow.h \
|
||||
MDIView.h \
|
||||
MenuManager.h \
|
||||
MergeDocuments.h \
|
||||
MouseSelection.h \
|
||||
NavigationStyle.h \
|
||||
NetworkRetriever.h \
|
||||
PrefWidgets.h \
|
||||
ProgressBar.h \
|
||||
ProgressDialog.h \
|
||||
PropertyPage.h \
|
||||
PropertyView.h \
|
||||
PythonConsole.h \
|
||||
PythonEditor.h \
|
||||
EditorView.h \
|
||||
ReportView.h \
|
||||
Selection.h \
|
||||
SelectionObject.h \
|
||||
SelectionFilter.h \
|
||||
SelectionView.h \
|
||||
SoAxisCrossKit.h \
|
||||
SoFCBackgroundGradient.h \
|
||||
SoFCBoundingBox.h \
|
||||
SoFCColorBar.h \
|
||||
SoFCColorGradient.h \
|
||||
SoFCColorLegend.h \
|
||||
SoFCInteractiveElement.h \
|
||||
SoNavigationDragger.h \
|
||||
SoFCOffscreenRenderer.h \
|
||||
SoFCSelection.h \
|
||||
SoFCUnifiedSelection.h \
|
||||
SoFCSelectionAction.h \
|
||||
SoFCVectorizeSVGAction.h \
|
||||
SoFCVectorizeU3DAction.h \
|
||||
SoTextLabel.h \
|
||||
SpinBox.h \
|
||||
Splashscreen.h \
|
||||
SplitView3DInventor.h \
|
||||
SyntaxHighlighter.h \
|
||||
TaskPanelView.h \
|
||||
TextEdit.h \
|
||||
Thumbnail.h \
|
||||
ToolBarManager.h \
|
||||
ToolBox.h \
|
||||
ToolBoxManager.h \
|
||||
Tree.h \
|
||||
TreeView.h \
|
||||
Utilities.h \
|
||||
View.h \
|
||||
View3DInventor.h \
|
||||
View3DInventorViewer.h \
|
||||
View3DPy.h \
|
||||
ViewProvider.h \
|
||||
ViewProviderBuilder.h \
|
||||
ViewProviderAnnotation.h \
|
||||
ViewProviderDocumentObject.h \
|
||||
ViewProviderDocumentObjectGroup.h \
|
||||
ViewProviderMeasureDistance.h \
|
||||
ViewProviderExtern.h \
|
||||
ViewProviderFeature.h \
|
||||
ViewProviderGeometryObject.h \
|
||||
ViewProviderInventorObject.h \
|
||||
ViewProviderVRMLObject.h \
|
||||
ViewProviderPythonFeature.h \
|
||||
WaitCursor.h \
|
||||
WhatsThis.h \
|
||||
WidgetFactory.h \
|
||||
Widgets.h \
|
||||
Window.h \
|
||||
Workbench.h \
|
||||
WorkbenchFactory.h \
|
||||
WorkbenchManager.h
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(libFreeCADGui_la_UI) \
|
||||
SoNavigationDraggerLayout.iv \
|
||||
lex.SelectionFilter.c \
|
||||
SelectionFilter.l \
|
||||
SelectionFilter.y \
|
||||
SelectionFilter.tab.c \
|
||||
FreeCADGuiInit.py \
|
||||
DocumentPy.xml \
|
||||
PythonWorkbenchPy.xml \
|
||||
SelectionObjectPy.xml \
|
||||
WorkbenchPy.xml \
|
||||
ViewProviderPy.xml \
|
||||
ViewProviderDocumentObjectPy.xml \
|
||||
ViewProviderPythonFeaturePy.xml \
|
||||
CMakeLists.txt \
|
||||
core-gui.dox
|
||||
|
||||
distclean-compile:
|
||||
# avoid to remove SelectionFilter.tab.c
|
||||
|
||||
# the library search path.
|
||||
libFreeCADGui_la_LDFLAGS = -L../Base -L../App $(QT_LIBS) $(sim_ac_coin_ldflags) $(sim_ac_coin_libs) \
|
||||
$(sim_ac_soqt_ldflags) $(sim_ac_soqt_libs) $(all_libraries) -version-info \
|
||||
@LIB_CURRENT@:@LIB_REVISION@:@LIB_AGE@
|
||||
|
||||
libFreeCADGui_la_LIBADD =\
|
||||
Icons/libIcons.la \
|
||||
Language/libLanguage.la \
|
||||
propertyeditor/libpropertyeditor.la \
|
||||
iisTaskPanel/libTaskPanel.la \
|
||||
TaskView/libTaskView.la \
|
||||
@BOOST_FILESYSTEM_LIB@ @BOOST_SIGNALS_LIB@ \
|
||||
@BOOST_PROGOPTIONS_LIB@ @BOOST_SYSTEM_LIB@ \
|
||||
-l@PYTHON_LIB@ @ZIPIOS_LIB@ \
|
||||
-lQtUiTools \
|
||||
-lxerces-c \
|
||||
-lFreeCADBase \
|
||||
-lFreeCADApp
|
||||
|
||||
if HAVE_SPNAV_FOUND
|
||||
libFreeCADGui_la_LIBADD += -lspnav
|
||||
libFreeCADGui_la_CPPFLAGS = -DSPNAV_FOUND
|
||||
endif
|
||||
|
||||
# rule for Qt MetaObject Compiler:
|
||||
moc_%.cpp: %.h
|
||||
$(QT_MOC) $< -o $(@F)
|
||||
|
||||
# rule for Qt MetaObject Compiler:
|
||||
%.moc: %.h
|
||||
$(QT_MOC) $< -o $(@F)
|
||||
|
||||
# rules for Qt User Interface Compiler:
|
||||
ui_%.h: %.ui
|
||||
$(QT_UIC) $< -o $(@F)
|
||||
|
||||
# rules for Qt Resource Compiler:
|
||||
qrc_%.cpp: %.qrc
|
||||
$(QT_RCC) -name $(*F) $< -o $(@F)
|
||||
|
||||
%Script.h: FreeCAD%.py
|
||||
$(PYTHON) $(top_srcdir)/src/Tools/PythonToCPP.py $< $@
|
||||
|
||||
%.cpp: %.xml $(top_srcdir)/src/Tools/generateTemplates/templateClassPyExport.py
|
||||
$(PYTHON) $(top_srcdir)/src/Tools/generate.py --outputPath $(@D) $<
|
||||
|
||||
|
||||
# set the include path found by configure
|
||||
AM_CXXFLAGS = -I$(top_srcdir)/src -I$(top_builddir)/src $(all_includes) $(QT_CXXFLAGS) \
|
||||
-I$(sim_ac_coin_includedir) -I$(sim_ac_soqt_includedir)
|
||||
|
||||
CLEANFILES = $(BUILT_SOURCES) $(libFreeCADGui_la_BUILT)
|
||||
|
|
@ -1,64 +0,0 @@
|
|||
noinst_LTLIBRARIES=libTaskView.la
|
||||
|
||||
BUILT_SOURCES=\
|
||||
moc_TaskAppearance.cpp \
|
||||
moc_TaskSelectLinkProperty.cpp \
|
||||
moc_TaskDialog.cpp \
|
||||
moc_TaskWatcher.cpp \
|
||||
moc_TaskEditControl.cpp \
|
||||
moc_TaskView.cpp \
|
||||
ui_TaskAppearance.h \
|
||||
ui_TaskSelectLinkProperty.h \
|
||||
ui_TaskEditControl.h
|
||||
|
||||
|
||||
libTaskView_la_UI=\
|
||||
TaskAppearance.ui \
|
||||
TaskSelectLinkProperty.ui \
|
||||
TaskEditControl.ui
|
||||
|
||||
libTaskView_la_SOURCES=\
|
||||
TaskAppearance.cpp \
|
||||
TaskSelectLinkProperty.cpp \
|
||||
TaskDialog.cpp \
|
||||
TaskDialogPython.cpp \
|
||||
TaskWatcher.cpp \
|
||||
TaskEditControl.cpp \
|
||||
TaskView.cpp
|
||||
|
||||
includedir = @includedir@/Gui/TaskView
|
||||
|
||||
include_HEADERS=\
|
||||
TaskAppearance.h \
|
||||
TaskSelectLinkProperty.h \
|
||||
TaskDialog.h \
|
||||
TaskDialogPython.h \
|
||||
TaskWatcher.h \
|
||||
TaskEditControl.h \
|
||||
TaskView.h
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(libTaskView_la_UI)
|
||||
|
||||
%.cpp: %.xml $(top_srcdir)/src/Tools/generateTemplates/templateClassPyExport.py
|
||||
$(PYTHON) $(top_srcdir)/src/Tools/generate.py --outputPath $(@D) $<
|
||||
|
||||
# rule for Qt MetaObject Compiler:
|
||||
moc_%.cpp: %.h
|
||||
$(QT_MOC) $< -o $(@F)
|
||||
|
||||
# rules for Qt User Interface Compiler:
|
||||
ui_%.h: %.ui
|
||||
$(QT_UIC) $< -o $(@F)
|
||||
|
||||
# rules for Qt Resource Compiler:
|
||||
qrc_%.cpp: %.qrc
|
||||
$(QT_RCC) -name $(*F) $< -o $(@F)
|
||||
|
||||
|
||||
# set the include path found by configure
|
||||
AM_CXXFLAGS = -I$(top_srcdir)/src -I$(top_builddir)/src -I$(srcdir)/.. $(QT_CXXFLAGS) $(all_includes) \
|
||||
-I$(sim_ac_coin_includedir) -I$(sim_ac_soqt_includedir)
|
||||
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
|
@ -1,67 +0,0 @@
|
|||
noinst_LTLIBRARIES=libTaskPanel.la
|
||||
|
||||
BUILT_SOURCES=\
|
||||
moc_iisiconlabel.cpp \
|
||||
moc_iistaskbox.cpp \
|
||||
moc_iistaskgroup.cpp \
|
||||
moc_iistaskheader.cpp \
|
||||
qrc_iisTaskPanel.cpp
|
||||
|
||||
libTaskPanel_la_SOURCES=\
|
||||
src/iisfreecadscheme.cpp \
|
||||
src/iisiconlabel.cpp \
|
||||
src/iistaskbox.cpp \
|
||||
src/iistaskgroup.cpp \
|
||||
src/iistaskheader.cpp \
|
||||
src/iistaskpanel.cpp \
|
||||
src/iistaskpanelscheme.cpp \
|
||||
src/iiswinxptaskpanelscheme.cpp \
|
||||
include/iisTaskPanel
|
||||
|
||||
nodist_libTaskPanel_la_SOURCES=\
|
||||
$(BUILT_SOURCES)
|
||||
|
||||
includedir = @includedir@/Gui/iisTaskPanel/src
|
||||
|
||||
include_HEADERS=\
|
||||
src/iisfreecadscheme.h \
|
||||
src/iisiconlabel.h \
|
||||
src/iistaskbox.h \
|
||||
src/iistaskgroup.h \
|
||||
src/iistaskheader.h \
|
||||
src/iistaskpanel.h \
|
||||
src/iistaskpanel_global.h \
|
||||
src/iistaskpanelscheme.h \
|
||||
src/iiswinxptaskpanelscheme.h
|
||||
|
||||
EXTRA_DIST = \
|
||||
src/Resources/headerButtonFold.png \
|
||||
src/Resources/headerButtonFold.xpm \
|
||||
src/Resources/headerButtonFoldOver.png \
|
||||
src/Resources/headerButtonFoldOver_XPBlue1.png \
|
||||
src/Resources/headerButtonFoldOver_XPBlue2.png \
|
||||
src/Resources/headerButtonFold_XPBlue1.png \
|
||||
src/Resources/headerButtonFold_XPBlue2.png \
|
||||
src/Resources/headerButtonUnfold.png \
|
||||
src/Resources/headerButtonUnfoldOver.png \
|
||||
src/Resources/headerButtonUnfoldOver_XPBlue1.png \
|
||||
src/Resources/headerButtonUnfoldOver_XPBlue2.png \
|
||||
src/Resources/headerButtonUnfold_XPBlue1.png \
|
||||
src/Resources/headerButtonUnfold_XPBlue2.png \
|
||||
src/Resources/screen2.psd \
|
||||
src/iisTaskPanel.qrc
|
||||
|
||||
# rule for Qt MetaObject Compiler:
|
||||
moc_%.cpp: src/%.h
|
||||
$(QT_MOC) $< -o $(@F)
|
||||
|
||||
# rules for Qt Resource Compiler:
|
||||
qrc_%.cpp: src/%.qrc
|
||||
$(QT_RCC) -name $(*F) $< -o $(@F)
|
||||
|
||||
|
||||
# set the include path found by configure
|
||||
AM_CXXFLAGS = -I$(top_srcdir)/src -I$(top_builddir)/src -I$(srcdir)/.. $(QT_CXXFLAGS) $(all_includes)
|
||||
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
|
@ -1,38 +0,0 @@
|
|||
noinst_LTLIBRARIES=libpropertyeditor.la
|
||||
|
||||
BUILT_SOURCES=\
|
||||
moc_PropertyEditor.cpp \
|
||||
moc_PropertyItem.cpp \
|
||||
moc_PropertyItemDelegate.cpp \
|
||||
moc_PropertyModel.cpp
|
||||
|
||||
libpropertyeditor_la_SOURCES=\
|
||||
PropertyEditor.cpp \
|
||||
PropertyItem.cpp \
|
||||
PropertyItemDelegate.cpp \
|
||||
PropertyModel.cpp
|
||||
|
||||
|
||||
includedir = @includedir@/Gui/propertyeditor
|
||||
|
||||
include_HEADERS=\
|
||||
PropertyEditor.h \
|
||||
PropertyItem.h \
|
||||
PropertyItemDelegate.h \
|
||||
PropertyModel.h
|
||||
|
||||
# rule for Qt MetaObject Compiler:
|
||||
moc_%.cpp: %.h
|
||||
$(QT_MOC) $< -o $(@F)
|
||||
|
||||
# rule for Qt MetaObject Compiler:
|
||||
%.moc: %.h
|
||||
$(QT_MOC) $< -o $(@F)
|
||||
|
||||
|
||||
# set the include path found by configure
|
||||
AM_CXXFLAGS = -I$(top_srcdir)/src -I$(top_builddir)/src -I$(srcdir)/.. $(QT_CXXFLAGS) $(all_includes) \
|
||||
-I$(sim_ac_coin_includedir) -I$(sim_ac_soqt_includedir)
|
||||
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
|
@ -1,72 +0,0 @@
|
|||
bin_PROGRAMS=FreeCAD FreeCADCmd
|
||||
lib_LTLIBRARIES=FreeCAD.la FreeCADGui.la
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
FreeCAD_SOURCES= \
|
||||
MainGui.cpp
|
||||
|
||||
# the library search path.
|
||||
FreeCAD_LDFLAGS = -L../Base -L../App -L../Gui $(QT_LIBS) $(all_libraries)
|
||||
|
||||
FreeCAD_LDADD=\
|
||||
-l@PYTHON_LIB@ \
|
||||
-lFreeCADBase \
|
||||
-lFreeCADApp \
|
||||
-lFreeCADGui
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
FreeCADCmd_SOURCES= \
|
||||
MainCmd.cpp
|
||||
|
||||
# the library search path.
|
||||
FreeCADCmd_LDFLAGS = -L../Base -L../App $(all_libraries)
|
||||
|
||||
FreeCADCmd_LDADD=\
|
||||
-l@PYTHON_LIB@ \
|
||||
-lFreeCADBase \
|
||||
-lFreeCADApp
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
FreeCAD_la_SOURCES= \
|
||||
MainPy.cpp
|
||||
|
||||
# the library search path.
|
||||
FreeCAD_la_LDFLAGS = -L../Base -L../App $(all_libraries) -version-info @LIB_CURRENT@:@LIB_REVISION@:@LIB_AGE@ -module -avoid-version
|
||||
|
||||
FreeCAD_la_LIBADD=\
|
||||
-ldl \
|
||||
-l@PYTHON_LIB@ \
|
||||
-lFreeCADBase \
|
||||
-lFreeCADApp
|
||||
#--------------------------------------------------------------------------------------
|
||||
FreeCADGui_la_SOURCES= \
|
||||
FreeCADGuiPy.cpp
|
||||
|
||||
# the library search path.
|
||||
FreeCADGui_la_LDFLAGS = -L../Base -L../App -L../Gui $(QT_LIBS) \
|
||||
$(sim_ac_coin_ldflags) $(sim_ac_coin_libs) \
|
||||
$(sim_ac_soqt_ldflags) $(sim_ac_soqt_libs) \
|
||||
$(all_libraries) -version-info @LIB_CURRENT@:@LIB_REVISION@:@LIB_AGE@ -module -avoid-version
|
||||
|
||||
FreeCADGui_la_LIBADD=\
|
||||
-ldl \
|
||||
-l@PYTHON_LIB@ \
|
||||
-lFreeCADBase \
|
||||
-lFreeCADApp \
|
||||
-lFreeCADGui
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
|
||||
# set the include path found by configure
|
||||
AM_CXXFLAGS = -I$(top_builddir)/src -I$(top_srcdir)/src \
|
||||
$(QT_CXXFLAGS) $(all_includes) \
|
||||
-I$(sim_ac_coin_includedir) -I$(sim_ac_soqt_includedir)
|
||||
|
||||
EXTRA_DIST = \
|
||||
res/FreeCAD.exe.manifest \
|
||||
res/FreeCADD.exe.manifest \
|
||||
freecad.rc \
|
||||
CMakeLists.txt \
|
||||
core-main.dox \
|
||||
icon.ico
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
SUBDIRS=Build 3rdParty Base App Gui Main Doc Mod Tools
|
||||
|
||||
include_HEADERS = \
|
||||
FCConfig.h
|
||||
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt
|
||||
|
|
@ -107,8 +107,12 @@ class _SectionPlane:
|
|||
|
||||
def execute(self,obj):
|
||||
import Part
|
||||
if hasattr(obj.ViewObject,"DisplayLength"):
|
||||
l = obj.ViewObject.DisplayLength.Value
|
||||
h = obj.ViewObject.DisplayHeight.Value
|
||||
else:
|
||||
l = 1
|
||||
h = 1
|
||||
p = Part.makePlane(l,l,Vector(l/2,-l/2,0),Vector(0,0,-1))
|
||||
# make sure the normal direction is pointing outwards, you never know what OCC will decide...
|
||||
if p.normalAt(0,0).getAngle(obj.Placement.Rotation.multVec(FreeCAD.Vector(0,0,1))) > 1:
|
||||
|
@ -206,12 +210,19 @@ class _ViewProviderSectionPlane:
|
|||
if hasattr(vobj,"Transparency"):
|
||||
self.mat2.transparency.setValue(vobj.Transparency/100.0)
|
||||
elif prop in ["DisplayLength","DisplayHeight","ArrowSize"]:
|
||||
if hasattr(vobj,"DisplayLength"):
|
||||
ld = vobj.DisplayLength.Value/2
|
||||
hd = vobj.DisplayHeight.Value/2
|
||||
else:
|
||||
ld = 1
|
||||
hd = 1
|
||||
verts = []
|
||||
fverts = []
|
||||
for v in [[-ld,-hd],[ld,-hd],[ld,hd],[-ld,hd]]:
|
||||
if hasattr(vobj,"ArrowSize"):
|
||||
l1 = vobj.ArrowSize.Value if vobj.ArrowSize.Value > 0 else 0.1
|
||||
else:
|
||||
l1 = 0.1
|
||||
l2 = l1/3
|
||||
pl = FreeCAD.Placement(vobj.Object.Placement)
|
||||
p1 = pl.multVec(Vector(v[0],v[1],0))
|
||||
|
|
|
@ -1,70 +0,0 @@
|
|||
#BUILT_SOURCES=\
|
||||
# Arch_rc.py
|
||||
|
||||
# rules for Qt Resource Compiler:
|
||||
#%_rc.py: Resources/%.qrc
|
||||
# $(PYRCC4) -name $(*F) $< -o $(@F)
|
||||
|
||||
# Change data dir from default ($(prefix)/share) to $(prefix)
|
||||
datadir = $(prefix)/Mod/Arch
|
||||
data_DATA = \
|
||||
Arch_rc.py \
|
||||
Arch.py \
|
||||
ArchComponent.py \
|
||||
ArchBuilding.py \
|
||||
ArchCell.py \
|
||||
ArchFloor.py \
|
||||
ifcReader.py \
|
||||
importDAE.py \
|
||||
importIFC.py \
|
||||
importOBJ.py \
|
||||
Init.py \
|
||||
InitGui.py \
|
||||
ArchSite.py \
|
||||
ArchStructure.py \
|
||||
ArchWall.py \
|
||||
ArchSectionPlane.py \
|
||||
ArchWindow.py \
|
||||
ArchCommands.py \
|
||||
ArchAxis.py \
|
||||
ArchVRM.py \
|
||||
ArchRoof.py
|
||||
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(data_DATA) \
|
||||
CMakeLists.txt \
|
||||
arch.dox \
|
||||
Resources/Arch.qrc \
|
||||
Resources/icons/preferences-arch.svg \
|
||||
Resources/icons/Arch_Building.svg \
|
||||
Resources/icons/Arch_Cell.svg \
|
||||
Resources/icons/Arch_Floor.svg \
|
||||
Resources/icons/Arch_Site.svg \
|
||||
Resources/icons/Arch_Structure.svg \
|
||||
Resources/icons/Arch_Wall.svg \
|
||||
Resources/icons/Arch_Add.svg \
|
||||
Resources/icons/Arch_Remove.svg \
|
||||
Resources/icons/Arch_MeshToShape.svg \
|
||||
Resources/icons/Arch_SplitMesh.svg \
|
||||
Resources/icons/Arch_RemoveShape.svg \
|
||||
Resources/icons/Arch_SectionPlane.svg \
|
||||
Resources/icons/Arch_Window.svg \
|
||||
Resources/icons/Arch_Wall_Tree.svg \
|
||||
Resources/icons/Arch_Cell_Tree.svg \
|
||||
Resources/icons/Arch_Building_Tree.svg \
|
||||
Resources/icons/Arch_Floor_Tree.svg \
|
||||
Resources/icons/Arch_SectionPlane_Tree.svg \
|
||||
Resources/icons/Arch_Site_Tree.svg \
|
||||
Resources/icons/Arch_Structure_Tree.svg \
|
||||
Resources/icons/Arch_Window_Tree.svg \
|
||||
Resources/icons/Arch_Axis.svg \
|
||||
Resources/icons/Arch_Axis_Tree.svg \
|
||||
Resources/icons/Arch_Roof.svg \
|
||||
Resources/icons/Arch_Roof_Tree.svg \
|
||||
Resources/icons/Arch_CloseHoles.svg \
|
||||
Resources/icons/Arch_Check.svg \
|
||||
Resources/icons/Arch_SelectNonManifold.svg \
|
||||
Resources/ui/archprefs-base.ui
|
||||
|
|
@ -1,66 +0,0 @@
|
|||
|
||||
lib_LTLIBRARIES=libAssembly.la Assembly.la
|
||||
|
||||
libAssembly_la_SOURCES=\
|
||||
AppAssemblyPy.cpp \
|
||||
PreCompiled.cpp \
|
||||
PreCompiled.h
|
||||
|
||||
|
||||
# the library search path.
|
||||
libAssembly_la_LDFLAGS = -L../../../Base -L../../../App -L../../../Mod/Part/App $(all_libraries) -L$(OCC_LIB) \
|
||||
-version-info @LIB_CURRENT@:@LIB_REVISION@:@LIB_AGE@
|
||||
libAssembly_la_CPPFLAGS = -DAssemblyAppExport=
|
||||
|
||||
libAssembly_la_LIBADD = \
|
||||
@BOOST_REGEX_LIB@ @BOOST_SYSTEM_LIB@ \
|
||||
-l@PYTHON_LIB@ \
|
||||
-lxerces-c \
|
||||
-lFreeCADBase \
|
||||
-lFreeCADApp \
|
||||
-lPart \
|
||||
-lTKernel \
|
||||
-lTKG2d \
|
||||
-lTKG3d \
|
||||
-lTKMath \
|
||||
-lTKSTEP \
|
||||
-lTKIGES \
|
||||
-lTKSTL \
|
||||
-lTKShHealing \
|
||||
-lTKXSBase \
|
||||
-lTKBool \
|
||||
-lTKBO \
|
||||
-lTKBRep \
|
||||
-lTKTopAlgo \
|
||||
-lTKGeomAlgo \
|
||||
-lTKGeomBase \
|
||||
-lTKOffset \
|
||||
-lTKPrim \
|
||||
-lTKHLR
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
# Loader of libAssembly
|
||||
|
||||
Assembly_la_SOURCES=\
|
||||
AppAssembly.cpp
|
||||
|
||||
# the library search path.
|
||||
Assembly_la_LDFLAGS = $(libAssembly_la_LDFLAGS) -module -avoid-version
|
||||
Assembly_la_CPPFLAGS = $(libAssembly_la_CPPFLAGS)
|
||||
|
||||
Assembly_la_LIBADD = \
|
||||
$(libAssembly_la_LIBADD) \
|
||||
-lAssembly
|
||||
|
||||
Assembly_la_DEPENDENCIES = libAssembly.la
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
|
||||
# set the include path found by configure
|
||||
AM_CXXFLAGS = -I$(top_srcdir)/src -I$(top_builddir)/src -I$(OCC_INC) $(all_includes)
|
||||
|
||||
|
||||
libdir = $(prefix)/Mod/Assembly
|
||||
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt
|
|
@ -1,74 +0,0 @@
|
|||
SUBDIRS=Resources
|
||||
|
||||
lib_LTLIBRARIES=libAssemblyGui.la AssemblyGui.la
|
||||
|
||||
#BUILT_SOURCES
|
||||
|
||||
libAssemblyGui_la_SOURCES=\
|
||||
AppAssemblyGuiPy.cpp \
|
||||
Command.cpp \
|
||||
PreCompiled.cpp \
|
||||
PreCompiled.h \
|
||||
Workbench.cpp \
|
||||
Workbench.h
|
||||
|
||||
# the library search path.
|
||||
libAssemblyGui_la_LDFLAGS = -L../../../Base -L../../../App -L../../../Gui -L../App $(QT_LIBS) $(GL_LIBS) \
|
||||
$(all_libraries) -version-info @LIB_CURRENT@:@LIB_REVISION@:@LIB_AGE@
|
||||
libAssemblyGui_la_CPPFLAGS = -DAssemblyAppExport= -DAssemblyGuiExport=
|
||||
|
||||
libAssemblyGui_la_LIBADD = \
|
||||
@BOOST_SYSTEM_LIB@ \
|
||||
-l@PYTHON_LIB@ \
|
||||
-lxerces-c \
|
||||
-lFreeCADBase \
|
||||
-lFreeCADApp \
|
||||
-lFreeCADGui \
|
||||
-lAssembly
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
# Loader of libAssemblyGui
|
||||
|
||||
AssemblyGui_la_SOURCES=\
|
||||
AppAssemblyGui.cpp
|
||||
|
||||
# the library search path.
|
||||
AssemblyGui_la_LDFLAGS = $(libAssemblyGui_la_LDFLAGS) -module -avoid-version
|
||||
AssemblyGui_la_CPPFLAGS = $(libAssemblyGui_la_CPPFLAGS)
|
||||
|
||||
AssemblyGui_la_LIBADD = \
|
||||
$(libAssemblyGui_la_LIBADD) \
|
||||
Resources/libResources.la \
|
||||
-lAssemblyGui
|
||||
|
||||
AssemblyGui_la_DEPENDENCIES = libAssemblyGui.la
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
|
||||
# rule for Qt MetaObject Compiler:
|
||||
moc_%.cpp: %.h
|
||||
$(QT_MOC) $< -o $(@F)
|
||||
|
||||
# rule for Qt MetaObject Compiler:
|
||||
%.moc: %.h
|
||||
$(QT_MOC) $< -o $(@F)
|
||||
|
||||
# rules for Qt User Interface Compiler:
|
||||
ui_%.h: %.ui
|
||||
$(QT_UIC) $< -o $(@F)
|
||||
|
||||
# rules for Qt Resource Compiler:
|
||||
qrc_%.cpp: %.qrc
|
||||
$(QT_RCC) -name $(*F) $< -o $(@F)
|
||||
|
||||
# set the include path found by configure
|
||||
AM_CXXFLAGS = -I$(top_srcdir)/src -I$(top_builddir)/src $(QT_CXXFLAGS) $(all_includes)
|
||||
|
||||
|
||||
libdir = $(prefix)/Mod/Assembly
|
||||
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt
|
||||
|
|
@ -1,75 +0,0 @@
|
|||
noinst_LTLIBRARIES=libResources.la
|
||||
|
||||
BUILT_SOURCES=\
|
||||
qrc_Assembly.cpp
|
||||
|
||||
nodist_libResources_la_SOURCES=\
|
||||
qrc_Assembly.cpp
|
||||
|
||||
EXTRA_DIST = \
|
||||
icons/actions/Axle_constraint.svg \
|
||||
translations/Assembly_af.qm \
|
||||
translations/Assembly_de.qm \
|
||||
translations/Assembly_es-ES.qm \
|
||||
translations/Assembly_fi.qm \
|
||||
translations/Assembly_fr.qm \
|
||||
translations/Assembly_hr.qm \
|
||||
translations/Assembly_hu.qm \
|
||||
translations/Assembly_it.qm \
|
||||
translations/Assembly_ja.qm \
|
||||
translations/Assembly_nl.qm \
|
||||
translations/Assembly_no.qm \
|
||||
translations/Assembly_pl.qm \
|
||||
translations/Assembly_pt-BR.qm \
|
||||
translations/Assembly_ru.qm \
|
||||
translations/Assembly_sv-SE.qm \
|
||||
translations/Assembly_uk.qm \
|
||||
translations/Assembly_zh-CN.qm \
|
||||
translations/Assembly_zh-TW.qm \
|
||||
translations/Assembly_cs.qm \
|
||||
translations/Assembly_tr.qm \
|
||||
translations/Assembly_ro.qm \
|
||||
translations/Assembly_sk.qm \
|
||||
translations/Assembly_af.ts \
|
||||
translations/Assembly_de.ts \
|
||||
translations/Assembly_es-ES.ts \
|
||||
translations/Assembly_fi.ts \
|
||||
translations/Assembly_fr.ts \
|
||||
translations/Assembly_hr.ts \
|
||||
translations/Assembly_hu.ts \
|
||||
translations/Assembly_ja.ts \
|
||||
translations/Assembly_it.ts \
|
||||
translations/Assembly_nl.ts \
|
||||
translations/Assembly_no.ts \
|
||||
translations/Assembly_pl.ts \
|
||||
translations/Assembly_pt-BR.ts \
|
||||
translations/Assembly_ru.ts \
|
||||
translations/Assembly_sv-SE.ts \
|
||||
translations/Assembly_uk.ts \
|
||||
translations/Assembly_zh-CN.ts \
|
||||
translations/Assembly_zh-TW.ts \
|
||||
translations/Assembly_cs.ts \
|
||||
translations/Assembly_tr.ts \
|
||||
translations/Assembly_ro.ts \
|
||||
translations/Assembly_sk.ts \
|
||||
Assembly.qrc \
|
||||
UpdateResources.bat
|
||||
|
||||
|
||||
# rule for Qt MetaObject Compiler:
|
||||
moc_%.cpp: %.h
|
||||
$(QT_MOC) $< -o $(@F)
|
||||
|
||||
# rule for Qt MetaObject Compiler:
|
||||
%.moc: %.h
|
||||
$(QT_MOC) $< -o $(@F)
|
||||
|
||||
# rules for Qt Resource Compiler:
|
||||
qrc_%.cpp: %.qrc
|
||||
$(QT_RCC) -name $(*F) $< -o $(@F)
|
||||
|
||||
|
||||
# set the include path found by configure
|
||||
AM_CXXFLAGS = -I$(top_srcdir)/src -I$(top_builddir)/src -I$(srcdir)/.. $(all_includes) $(QT_CXXFLAGS)
|
||||
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
|
@ -1,11 +0,0 @@
|
|||
SUBDIRS=App Gui
|
||||
|
||||
# Change data dir from default ($(prefix)/share) to $(prefix)
|
||||
datadir = $(prefix)/Mod/Assembly
|
||||
|
||||
data_DATA = Init.py InitGui.py
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(data_DATA) \
|
||||
assembly.dox \
|
||||
CMakeLists.txt
|
|
@ -1,112 +0,0 @@
|
|||
|
||||
lib_LTLIBRARIES=libCam.la Cam.la
|
||||
|
||||
|
||||
libCam_la_SOURCES=\
|
||||
AppCamPy.cpp \
|
||||
Approx.cpp \
|
||||
Approx.h \
|
||||
best_fit.cpp \
|
||||
best_fit.h \
|
||||
BRepAdaptor_CompCurve2.cxx \
|
||||
BRepAdaptor_CompCurve2.h \
|
||||
ConvertDyna.cpp \
|
||||
ConvertDyna.h \
|
||||
cutting_tools.cpp \
|
||||
cutting_tools.h \
|
||||
deviation.cpp \
|
||||
deviation.h \
|
||||
edgesort.cpp \
|
||||
edgesort.h \
|
||||
mergedata.cpp \
|
||||
mergedata.h \
|
||||
path_simulate.cpp \
|
||||
path_simulate.h \
|
||||
PreCompiled.cpp \
|
||||
PreCompiled.h \
|
||||
routine.cpp \
|
||||
routine.h \
|
||||
stuff.h \
|
||||
SpringbackCorrection.cpp \
|
||||
SpringbackCorrection.h \
|
||||
UniGridApprox.cpp \
|
||||
UniGridApprox.h \
|
||||
WireExplorer.cxx \
|
||||
WireExplorer.h
|
||||
|
||||
# the library search path.
|
||||
libCam_la_LDFLAGS = -L../../../Base -L../../../App \
|
||||
$(sim_ac_coin_ldflags) $(sim_ac_coin_libs) \
|
||||
-L../../../Mod/Part/App -L../../../Mod/Mesh/App -L/usr/X11R6/lib -L$(OCC_LIB) -L/usr/lib/atlas \
|
||||
$(GTS_LIBS) $(all_libraries) -version-info @LIB_CURRENT@:@LIB_REVISION@:@LIB_AGE@
|
||||
libCam_la_CPPFLAGS = $(sim_ac_coin_cppflags) $(sim_ac_soqt_cppflags) -DAppCamExport=
|
||||
|
||||
libCam_la_LIBADD = \
|
||||
-lxerces-c \
|
||||
-lboost_filesystem \
|
||||
-l@PYTHON_LIB@ \
|
||||
-lFreeCADBase \
|
||||
-lFreeCADApp \
|
||||
-lPart \
|
||||
-lMesh \
|
||||
-lTKernel \
|
||||
-lTKG2d \
|
||||
-lTKG3d \
|
||||
-lTKMath \
|
||||
-lTKSTEP \
|
||||
-lTKIGES \
|
||||
-lTKSTL \
|
||||
-lTKShHealing \
|
||||
-lTKXSBase \
|
||||
-lTKBool \
|
||||
-lTKBO \
|
||||
-lTKBRep \
|
||||
-lTKTopAlgo \
|
||||
-lTKGeomAlgo \
|
||||
-lTKGeomBase \
|
||||
-lTKOffset \
|
||||
-lTKPrim \
|
||||
-lTKMesh \
|
||||
-lblas \
|
||||
-lumfpack \
|
||||
-lamd \
|
||||
-lcblas \
|
||||
-lANN \
|
||||
-lSMDS \
|
||||
-lSMESHDS \
|
||||
-lSMESH \
|
||||
-lclapack
|
||||
|
||||
|
||||
%.cpp: %.xml $(top_srcdir)/src/Tools/generateTemplates/templateClassPyExport.py
|
||||
$(PYTHON) $(top_srcdir)/src/Tools/generate.py --outputPath $(@D) $<
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
# Loader of libCam
|
||||
|
||||
Cam_la_SOURCES=\
|
||||
AppCam.cpp
|
||||
|
||||
# the library search path.
|
||||
Cam_la_LDFLAGS = $(libCam_la_LDFLAGS) -module -avoid-version
|
||||
Cam_la_CPPFLAGS = $(libCam_la_CPPFLAGS)
|
||||
|
||||
Cam_la_LIBADD = \
|
||||
$(libCam_la_LIBADD) \
|
||||
-lCam
|
||||
|
||||
Cam_la_DEPENDENCIES = libCam.la
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
|
||||
# set the include path found by configure
|
||||
AM_CXXFLAGS = -I$(top_srcdir)/src -I$(top_builddir)/src $(all_includes) -I$(OCC_INC) $(GTS_CFLAGS) \
|
||||
-I$(top_srcdir)/src/3rdParty $(QT4_CORE_CXXFLAGS) \
|
||||
-I$(top_srcdir)/src/3rdParty/salomesmesh/inc -I$(top_srcdir)/src/3rdParty/ANN/include
|
||||
|
||||
libdir = $(prefix)/Mod/Cam
|
||||
|
||||
CLEANFILES = $(BUILT_SOURCES) $(libCam_la_BUILT)
|
||||
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt
|
|
@ -1,78 +0,0 @@
|
|||
|
||||
lib_LTLIBRARIES=libCamGui.la CamGui.la
|
||||
|
||||
BUILT_SOURCES=\
|
||||
ui_Cutting.h \
|
||||
moc_Cutting.cpp
|
||||
|
||||
libCamGui_la_SOURCES=\
|
||||
Command.cpp \
|
||||
Cutting.cpp \
|
||||
Cutting.h \
|
||||
PreCompiled.cpp \
|
||||
PreCompiled.h \
|
||||
Workbench.cpp \
|
||||
Workbench.h
|
||||
|
||||
# the library search path.
|
||||
libCamGui_la_LDFLAGS = -L../../../Base -L../../../App -L../../../Gui -L../App $(QT_LIBS) $(sim_ac_coin_ldflags) \
|
||||
-L../../Part/Gui \
|
||||
$(sim_ac_coin_libs) $(sim_ac_soqt_ldflags) $(sim_ac_soqt_libs) -L$(OCC_LIB) $(all_libraries) \
|
||||
-version-info @LIB_CURRENT@:@LIB_REVISION@:@LIB_AGE@
|
||||
libCamGui_la_CPPFLAGS = $(sim_ac_coin_cppflags) -DAppCamExport= -DAppCamGuiExport=
|
||||
|
||||
libCamGui_la_LIBADD = \
|
||||
-lxerces-c \
|
||||
-l@PYTHON_LIB@ \
|
||||
-lFreeCADBase \
|
||||
-lFreeCADApp \
|
||||
-lFreeCADGui \
|
||||
-lTKernel \
|
||||
-lPartGui \
|
||||
-lCam
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
# Loader of libCamGui
|
||||
|
||||
CamGui_la_SOURCES=\
|
||||
AppCamGui.cpp
|
||||
|
||||
# the library search path.
|
||||
CamGui_la_LDFLAGS = $(libCamGui_la_LDFLAGS) -module -avoid-version
|
||||
CamGui_la_CPPFLAGS = $(libCamGui_la_CPPFLAGS)
|
||||
|
||||
CamGui_la_LIBADD = \
|
||||
$(libCamGui_la_LIBADD) \
|
||||
-lCamGui
|
||||
|
||||
CamGui_la_DEPENDENCIES = libCamGui.la
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
|
||||
# rule for Qt MetaObject Compiler:
|
||||
moc_%.cpp: %.h
|
||||
$(QT_MOC) $< -o $(@F)
|
||||
|
||||
# rule for Qt MetaObject Compiler:
|
||||
%.moc: %.h
|
||||
$(QT_MOC) $< -o $(@F)
|
||||
|
||||
# rules for Qt User Interface Compiler:
|
||||
ui_%.h: %.ui
|
||||
$(QT_UIC) $< -o $(@F)
|
||||
|
||||
# rules for Qt Resource Compiler:
|
||||
qrc_%.cpp: %.qrc
|
||||
$(QT_RCC) -name $(*F) $< -o $(@F)
|
||||
|
||||
# set the include path found by configure
|
||||
AM_CXXFLAGS = -I$(top_srcdir)/src -I$(top_builddir)/src $(QT_CXXFLAGS) -I$(OCC_INC) $(all_includes)
|
||||
|
||||
|
||||
libdir = $(prefix)/Mod/Cam
|
||||
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
Cutting.ui
|
|
@ -1,11 +0,0 @@
|
|||
SUBDIRS=App Gui
|
||||
|
||||
# Change data dir from default ($(prefix)/share) to $(prefix)
|
||||
datadir = $(prefix)/Mod/Cam
|
||||
|
||||
data_DATA = Init.py InitGui.py
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(data_DATA) \
|
||||
cam.dox \
|
||||
CMakeLists.txt
|
|
@ -1,46 +0,0 @@
|
|||
lib_LTLIBRARIES=libComplete.la Complete.la
|
||||
|
||||
libComplete_la_SOURCES=\
|
||||
AppCompletePy.cpp \
|
||||
CompleteConfiguration.h \
|
||||
PreCompiled.cpp \
|
||||
PreCompiled.h
|
||||
|
||||
|
||||
# the library search path.
|
||||
libComplete_la_LDFLAGS = -L../../../Base -L../../../App $(all_libraries) -version-info \
|
||||
@LIB_CURRENT@:@LIB_REVISION@:@LIB_AGE@
|
||||
libComplete_la_CPPFLAGS = -DCompleteExport=
|
||||
|
||||
libComplete_la_LIBADD = \
|
||||
@BOOST_REGEX_LIB@ @BOOST_SYSTEM_LIB@ \
|
||||
-l@PYTHON_LIB@ \
|
||||
-lxerces-c \
|
||||
-lFreeCADBase \
|
||||
-lFreeCADApp
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
# Loader of libComplete
|
||||
|
||||
Complete_la_SOURCES=\
|
||||
AppComplete.cpp
|
||||
|
||||
# the library search path.
|
||||
Complete_la_LDFLAGS = $(libComplete_la_LDFLAGS) -module -avoid-version
|
||||
Complete_la_CPPFLAGS = $(libComplete_la_CPPFLAGS)
|
||||
|
||||
Complete_la_LIBADD = \
|
||||
$(libComplete_la_LIBADD) \
|
||||
-lComplete
|
||||
|
||||
Complete_la_DEPENDENCIES = libComplete.la
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
|
||||
# set the include path found by configure
|
||||
AM_CXXFLAGS = -I$(top_srcdir)/src -I$(top_builddir)/src $(all_includes)
|
||||
|
||||
libdir = $(prefix)/Mod/Complete
|
||||
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt
|
|
@ -1,71 +0,0 @@
|
|||
SUBDIRS=Resources
|
||||
|
||||
lib_LTLIBRARIES=libCompleteGui.la CompleteGui.la
|
||||
|
||||
libCompleteGui_la_SOURCES=\
|
||||
AppCompleteGuiPy.cpp \
|
||||
Command.cpp \
|
||||
PreCompiled.cpp \
|
||||
PreCompiled.h \
|
||||
Workbench.cpp \
|
||||
Workbench.h
|
||||
|
||||
# the library search path.
|
||||
libCompleteGui_la_LDFLAGS = -L../../../Base -L../../../App -L../../../Gui -L../App $(QT_LIBS) $(GL_LIBS) \
|
||||
$(all_libraries) -version-info @LIB_CURRENT@:@LIB_REVISION@:@LIB_AGE@
|
||||
libCompleteGui_la_CPPFLAGS = -DCompleteAppExport= -DCompleteGuiExport=
|
||||
|
||||
libCompleteGui_la_LIBADD = \
|
||||
@BOOST_SYSTEM_LIB@ \
|
||||
-l@PYTHON_LIB@ \
|
||||
-lxerces-c \
|
||||
-lFreeCADBase \
|
||||
-lFreeCADApp \
|
||||
-lFreeCADGui \
|
||||
-lComplete
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
# Loader of libCompleteGui
|
||||
|
||||
CompleteGui_la_SOURCES=\
|
||||
AppCompleteGui.cpp
|
||||
|
||||
# the library search path.
|
||||
CompleteGui_la_LDFLAGS = $(libCompleteGui_la_LDFLAGS) -module -avoid-version
|
||||
CompleteGui_la_CPPFLAGS = $(libCompleteGui_la_CPPFLAGS)
|
||||
|
||||
CompleteGui_la_LIBADD = \
|
||||
$(libCompleteGui_la_LIBADD) \
|
||||
Resources/libResources.la \
|
||||
-lCompleteGui
|
||||
|
||||
CompleteGui_la_DEPENDENCIES = libCompleteGui.la
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
|
||||
# rule for Qt MetaObject Compiler:
|
||||
moc_%.cpp: %.h
|
||||
$(QT_MOC) $< -o $(@F)
|
||||
|
||||
# rule for Qt MetaObject Compiler:
|
||||
%.moc: %.h
|
||||
$(QT_MOC) $< -o $(@F)
|
||||
|
||||
# rules for Qt User Interface Compiler:
|
||||
ui_%.h: %.ui
|
||||
$(QT_UIC) $< -o $(@F)
|
||||
|
||||
# rules for Qt Resource Compiler:
|
||||
qrc_%.cpp: %.qrc
|
||||
$(QT_RCC) -name $(*F) $< -o $(@F)
|
||||
|
||||
# set the include path found by configure
|
||||
AM_CXXFLAGS = -I$(top_srcdir)/src -I$(top_builddir)/src $(QT_CXXFLAGS) $(all_includes)
|
||||
|
||||
libdir = $(prefix)/Mod/Complete
|
||||
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt
|
||||
|
|
@ -1,74 +0,0 @@
|
|||
noinst_LTLIBRARIES=libResources.la
|
||||
|
||||
BUILT_SOURCES=\
|
||||
qrc_Complete.cpp
|
||||
|
||||
nodist_libResources_la_SOURCES=\
|
||||
qrc_Complete.cpp
|
||||
|
||||
EXTRA_DIST = \
|
||||
translations/Complete_af.qm \
|
||||
translations/Complete_de.qm \
|
||||
translations/Complete_es-ES.qm \
|
||||
translations/Complete_fi.qm \
|
||||
translations/Complete_fr.qm \
|
||||
translations/Complete_hr.qm \
|
||||
translations/Complete_it.qm \
|
||||
translations/Complete_nl.qm \
|
||||
translations/Complete_no.qm \
|
||||
translations/Complete_pl.qm \
|
||||
translations/Complete_pt-BR.qm \
|
||||
translations/Complete_ru.qm \
|
||||
translations/Complete_sv-SE.qm \
|
||||
translations/Complete_uk.qm \
|
||||
translations/Complete_zh-CN.qm \
|
||||
translations/Complete_zh-TW.qm \
|
||||
translations/Complete_cs.qm \
|
||||
translations/Complete_tr.qm \
|
||||
translations/Complete_ro.qm \
|
||||
translations/Complete_sk.qm \
|
||||
translations/Complete_ja.qm \
|
||||
translations/Complete_hu.qm \
|
||||
translations/Complete_af.ts \
|
||||
translations/Complete_de.ts \
|
||||
translations/Complete_es-ES.ts \
|
||||
translations/Complete_fi.ts \
|
||||
translations/Complete_fr.ts \
|
||||
translations/Complete_hr.ts \
|
||||
translations/Complete_it.ts \
|
||||
translations/Complete_nl.ts \
|
||||
translations/Complete_no.ts \
|
||||
translations/Complete_pl.ts \
|
||||
translations/Complete_pt-BR.ts \
|
||||
translations/Complete_ru.ts \
|
||||
translations/Complete_sv-SE.ts \
|
||||
translations/Complete_uk.ts \
|
||||
translations/Complete_zh-CN.ts \
|
||||
translations/Complete_zh-TW.ts \
|
||||
translations/Complete_cs.ts \
|
||||
translations/Complete_tr.ts \
|
||||
translations/Complete_ro.ts \
|
||||
translations/Complete_sk.ts \
|
||||
translations/Complete_ja.ts \
|
||||
translations/Complete_hu.ts \
|
||||
Complete.qrc \
|
||||
UpdateResources.bat
|
||||
|
||||
|
||||
# rule for Qt MetaObject Compiler:
|
||||
moc_%.cpp: %.h
|
||||
$(QT_MOC) $< -o $(@F)
|
||||
|
||||
# rule for Qt MetaObject Compiler:
|
||||
%.moc: %.h
|
||||
$(QT_MOC) $< -o $(@F)
|
||||
|
||||
# rules for Qt Resource Compiler:
|
||||
qrc_%.cpp: %.qrc
|
||||
$(QT_RCC) -name $(*F) $< -o $(@F)
|
||||
|
||||
|
||||
# set the include path found by configure
|
||||
AM_CXXFLAGS = -I$(top_srcdir)/src -I$(top_builddir)/src -I$(srcdir)/.. $(QT_CXXFLAGS) $(all_includes)
|
||||
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
|
@ -1,11 +0,0 @@
|
|||
SUBDIRS=App Gui
|
||||
|
||||
# Change data dir from default ($(prefix)/share) to $(prefix)
|
||||
datadir = $(prefix)/Mod/Complete
|
||||
|
||||
data_DATA = Init.py InitGui.py
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(data_DATA) \
|
||||
complete.dox \
|
||||
CMakeLists.txt
|
|
@ -1,145 +0,0 @@
|
|||
#BUILT_SOURCES=\
|
||||
# Draft_rc.py
|
||||
|
||||
# rules for Qt Resource Compiler:
|
||||
#%_rc.py: Resources/%.qrc
|
||||
# $(PYRCC4) -name $(*F) $< -o $(@F)
|
||||
|
||||
# Change data dir from default ($(prefix)/share) to $(prefix)
|
||||
datadir = $(prefix)/Mod/Draft
|
||||
data_DATA = \
|
||||
Draft.py \
|
||||
DraftTools.py \
|
||||
DraftGui.py \
|
||||
DraftSnap.py \
|
||||
DraftTrackers.py \
|
||||
DraftVecUtils.py \
|
||||
DraftGeomUtils.py \
|
||||
WorkingPlane.py \
|
||||
importOCA.py \
|
||||
importDXF.py \
|
||||
importSVG.py \
|
||||
importAirfoilDAT.py \
|
||||
Init.py \
|
||||
InitGui.py \
|
||||
macros.py \
|
||||
Draft_rc.py
|
||||
|
||||
nobase_data_DATA = \
|
||||
draftlibs/dxfColorMap.py \
|
||||
draftlibs/dxfImportObjects.py \
|
||||
draftlibs/dxfLibrary.py \
|
||||
draftlibs/dxfReader.py \
|
||||
draftlibs/__init__.py
|
||||
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(data_DATA) $(nobase_data_DATA) \
|
||||
CMakeLists.txt \
|
||||
draft.dox \
|
||||
Resources/Draft.qrc \
|
||||
Resources/icons/Draft_2DShapeView.svg \
|
||||
Resources/icons/Draft_AddPoint.svg \
|
||||
Resources/icons/Draft_AddToGroup.svg \
|
||||
Resources/icons/Draft_Apply.svg \
|
||||
Resources/icons/Draft_Arc.svg \
|
||||
Resources/icons/Draft_Array.svg \
|
||||
Resources/icons/Draft_BSpline.svg \
|
||||
Resources/icons/Draft_Circle.svg \
|
||||
Resources/icons/Draft_Clone.svg \
|
||||
Resources/icons/Draft_Construction.svg \
|
||||
Resources/icons/Draft_Cursor.svg \
|
||||
Resources/icons/Draft_DelPoint.svg \
|
||||
Resources/icons/Draft_Dimension.svg \
|
||||
Resources/icons/Draft_Dot.svg \
|
||||
Resources/icons/Draft_Downgrade.svg \
|
||||
Resources/icons/Draft_Draft2Sketch.svg \
|
||||
Resources/icons/Draft_Draft.svg \
|
||||
Resources/icons/Draft_Drawing.svg \
|
||||
Resources/icons/Draft_Edit.svg \
|
||||
Resources/icons/Draft_Finish.svg \
|
||||
Resources/icons/Draft_Line.svg \
|
||||
Resources/icons/Draft_Lock.svg \
|
||||
Resources/icons/Draft_Macro.svg \
|
||||
Resources/icons/Draft_Move.svg \
|
||||
Resources/icons/Draft_Offset.svg \
|
||||
Resources/icons/Draft_Point.svg \
|
||||
Resources/icons/Draft_Polygon.svg \
|
||||
Resources/icons/Draft_Rectangle.svg \
|
||||
Resources/icons/Draft_Rotate.svg \
|
||||
Resources/icons/Draft_Scale.svg \
|
||||
Resources/icons/Draft_SelectGroup.svg \
|
||||
Resources/icons/Draft_SelectPlane.svg \
|
||||
Resources/icons/Draft_SwitchMode.svg \
|
||||
Resources/icons/Draft_Text.svg \
|
||||
Resources/icons/Draft_Trimex.svg \
|
||||
Resources/icons/Draft_Upgrade.svg \
|
||||
Resources/icons/Draft_Wipe.svg \
|
||||
Resources/icons/Draft_Wire.svg \
|
||||
Resources/icons/Draft_WireToBSpline.svg \
|
||||
Resources/icons/preferences-draft.svg \
|
||||
Resources/icons/Snap_Angle.svg \
|
||||
Resources/icons/Snap_Center.svg \
|
||||
Resources/icons/Snap_Endpoint.svg \
|
||||
Resources/icons/Snap_Extension.svg \
|
||||
Resources/icons/Snap_Grid.svg \
|
||||
Resources/icons/Snap_Intersection.svg \
|
||||
Resources/icons/Snap_Lock.svg \
|
||||
Resources/icons/Snap_Midpoint.svg \
|
||||
Resources/icons/Snap_Near.svg \
|
||||
Resources/icons/Snap_Ortho.svg \
|
||||
Resources/icons/Snap_Parallel.svg \
|
||||
Resources/icons/Snap_Perpendicular.svg \
|
||||
Resources/patterns/concrete.svg \
|
||||
Resources/patterns/cross.svg \
|
||||
Resources/patterns/line.svg \
|
||||
Resources/patterns/simple.svg \
|
||||
Resources/patterns/square.svg \
|
||||
Resources/translations/Draft_af.qm \
|
||||
Resources/translations/Draft_af.ts \
|
||||
Resources/translations/Draft_de.qm \
|
||||
Resources/translations/Draft_de.ts \
|
||||
Resources/translations/Draft_es-ES.qm \
|
||||
Resources/translations/Draft_es-ES.ts \
|
||||
Resources/translations/Draft_fi.qm \
|
||||
Resources/translations/Draft_fi.ts \
|
||||
Resources/translations/Draft_fr.qm \
|
||||
Resources/translations/Draft_fr.ts \
|
||||
Resources/translations/Draft_hr.qm \
|
||||
Resources/translations/Draft_hr.ts \
|
||||
Resources/translations/Draft_hu.qm \
|
||||
Resources/translations/Draft_hu.ts \
|
||||
Resources/translations/Draft_it.qm \
|
||||
Resources/translations/Draft_it.ts \
|
||||
Resources/translations/Draft_ja.qm \
|
||||
Resources/translations/Draft_ja.ts \
|
||||
Resources/translations/Draft_nl.qm \
|
||||
Resources/translations/Draft_nl.ts \
|
||||
Resources/translations/Draft_no.qm \
|
||||
Resources/translations/Draft_no.ts \
|
||||
Resources/translations/Draft_pl.qm \
|
||||
Resources/translations/Draft_pl.ts \
|
||||
Resources/translations/Draft_pt-BR.qm \
|
||||
Resources/translations/Draft_pt-BR.ts \
|
||||
Resources/translations/Draft_ru.qm \
|
||||
Resources/translations/Draft_ru.ts \
|
||||
Resources/translations/Draft_sv-SE.qm \
|
||||
Resources/translations/Draft_sv-SE.ts \
|
||||
Resources/translations/Draft_uk.qm \
|
||||
Resources/translations/Draft_uk.ts \
|
||||
Resources/translations/Draft_zh-CN.qm \
|
||||
Resources/translations/Draft_zh-CN.ts \
|
||||
Resources/translations/Draft_zh-TW.qm \
|
||||
Resources/translations/Draft_zh-TW.ts \
|
||||
Resources/translations/Draft_cs.qm \
|
||||
Resources/translations/Draft_cs.ts \
|
||||
Resources/translations/Draft_sk.qm \
|
||||
Resources/translations/Draft_sk.ts \
|
||||
Resources/translations/Draft_tr.qm \
|
||||
Resources/translations/Draft_tr.ts \
|
||||
Resources/translations/Draft_ro.qm \
|
||||
Resources/translations/Draft_ro.ts \
|
||||
Resources/ui/userprefs-base.ui \
|
||||
Resources/ui/userprefs-import.ui
|
||||
|
|
@ -1,86 +0,0 @@
|
|||
|
||||
lib_LTLIBRARIES=libDrawing.la Drawing.la
|
||||
|
||||
libDrawing_la_SOURCES=\
|
||||
AppDrawingPy.cpp \
|
||||
DrawingExport.cpp \
|
||||
DrawingExport.h \
|
||||
FeaturePage.cpp \
|
||||
FeaturePage.h \
|
||||
FeatureProjection.cpp \
|
||||
FeatureProjection.h \
|
||||
FeatureView.cpp \
|
||||
FeatureView.h \
|
||||
FeatureViewPart.cpp \
|
||||
FeatureViewPart.h \
|
||||
FeatureViewAnnotation.cpp \
|
||||
FeatureViewAnnotation.h \
|
||||
FeatureClip.cpp \
|
||||
FeatureClip.h \
|
||||
PageGroup.cpp \
|
||||
PageGroup.h \
|
||||
ProjectionAlgos.cpp \
|
||||
ProjectionAlgos.h \
|
||||
PreCompiled.cpp \
|
||||
PreCompiled.h
|
||||
|
||||
|
||||
# the library search path.
|
||||
libDrawing_la_LDFLAGS = -L../../../Base -L../../../App -L../../../Mod/Part/App \
|
||||
-L$(OCC_LIB) $(all_libraries) \
|
||||
-version-info @LIB_CURRENT@:@LIB_REVISION@:@LIB_AGE@
|
||||
libDrawing_la_CPPFLAGS = -DDrawingExport=
|
||||
|
||||
libDrawing_la_LIBADD = \
|
||||
@BOOST_REGEX_LIB@ @BOOST_SYSTEM_LIB@ \
|
||||
-l@PYTHON_LIB@ \
|
||||
-lxerces-c \
|
||||
-lFreeCADBase \
|
||||
-lFreeCADApp \
|
||||
-lPart \
|
||||
-lTKernel \
|
||||
-lTKG2d \
|
||||
-lTKG3d \
|
||||
-lTKMath \
|
||||
-lTKSTEP \
|
||||
-lTKIGES \
|
||||
-lTKSTL \
|
||||
-lTKShHealing \
|
||||
-lTKXSBase \
|
||||
-lTKBool \
|
||||
-lTKBO \
|
||||
-lTKBRep \
|
||||
-lTKTopAlgo \
|
||||
-lTKGeomAlgo \
|
||||
-lTKGeomBase \
|
||||
-lTKOffset \
|
||||
-lTKPrim \
|
||||
-lTKHLR \
|
||||
-lTKMesh
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
# Loader of libDrawing
|
||||
|
||||
Drawing_la_SOURCES=\
|
||||
AppDrawing.cpp
|
||||
|
||||
# the library search path.
|
||||
Drawing_la_LDFLAGS = $(libDrawing_la_LDFLAGS) -module -avoid-version
|
||||
Drawing_la_CPPFLAGS = $(libDrawing_la_CPPFLAGS)
|
||||
|
||||
Drawing_la_LIBADD = \
|
||||
$(libDrawing_la_LIBADD) \
|
||||
-lDrawing
|
||||
|
||||
Drawing_la_DEPENDENCIES = libDrawing.la
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
|
||||
# set the include path found by configure
|
||||
AM_CXXFLAGS = -I$(top_srcdir)/src -I$(top_builddir)/src -I$(OCC_INC) $(all_includes)
|
||||
|
||||
|
||||
libdir = $(prefix)/Mod/Drawing
|
||||
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt
|
|
@ -1,97 +0,0 @@
|
|||
SUBDIRS=Resources
|
||||
|
||||
lib_LTLIBRARIES=libDrawingGui.la DrawingGui.la
|
||||
|
||||
BUILT_SOURCES=\
|
||||
moc_DrawingView.cpp \
|
||||
moc_TaskOrthoViews.cpp \
|
||||
ui_TaskOrthoViews.h \
|
||||
moc_TaskDialog.cpp
|
||||
|
||||
libDrawingGui_la_UI=\
|
||||
TaskOrthoViews.ui
|
||||
|
||||
libDrawingGui_la_SOURCES=\
|
||||
AppDrawingGuiPy.cpp \
|
||||
Command.cpp \
|
||||
DrawingView.cpp \
|
||||
DrawingView.h \
|
||||
PreCompiled.cpp \
|
||||
PreCompiled.h \
|
||||
TaskDialog.cpp \
|
||||
TaskDialog.h \
|
||||
TaskOrthoViews.cpp \
|
||||
TaskOrthoViews.h \
|
||||
ViewProviderPage.cpp \
|
||||
ViewProviderPage.h \
|
||||
ViewProviderView.cpp \
|
||||
ViewProviderView.h \
|
||||
Workbench.cpp \
|
||||
Workbench.h
|
||||
|
||||
# the library search path.
|
||||
libDrawingGui_la_LDFLAGS = -L../../../Base -L../../../App -L../../../Gui -L../../Part/App -L../App \
|
||||
-L$(OCC_LIB) $(QT_LIBS) $(GL_LIBS) $(all_libraries) \
|
||||
-version-info @LIB_CURRENT@:@LIB_REVISION@:@LIB_AGE@
|
||||
libDrawingGui_la_CPPFLAGS = -DDrawingAppExport= -DDrawingGuiExport=
|
||||
|
||||
libDrawingGui_la_LIBADD = \
|
||||
@BOOST_SYSTEM_LIB@ \
|
||||
-l@PYTHON_LIB@ \
|
||||
-lxerces-c \
|
||||
-lTKernel \
|
||||
-lTKMath \
|
||||
-lFreeCADBase \
|
||||
-lFreeCADApp \
|
||||
-lFreeCADGui \
|
||||
-lPart \
|
||||
-lDrawing
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
# Loader of libDrawingGui
|
||||
|
||||
DrawingGui_la_SOURCES=\
|
||||
AppDrawingGui.cpp
|
||||
|
||||
# the library search path.
|
||||
DrawingGui_la_LDFLAGS = $(libDrawingGui_la_LDFLAGS) -module -avoid-version
|
||||
DrawingGui_la_CPPFLAGS = $(libDrawingGui_la_CPPFLAGS)
|
||||
|
||||
DrawingGui_la_LIBADD = \
|
||||
$(libDrawingGui_la_LIBADD) \
|
||||
Resources/libResources.la \
|
||||
-lDrawingGui
|
||||
|
||||
DrawingGui_la_DEPENDENCIES = libDrawingGui.la
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
|
||||
# rule for Qt MetaObject Compiler:
|
||||
moc_%.cpp: %.h
|
||||
$(QT_MOC) $< -o $(@F)
|
||||
|
||||
# rule for Qt MetaObject Compiler:
|
||||
%.moc: %.h
|
||||
$(QT_MOC) $< -o $(@F)
|
||||
|
||||
# rules for Qt User Interface Compiler:
|
||||
ui_%.h: %.ui
|
||||
$(QT_UIC) $< -o $(@F)
|
||||
|
||||
# rules for Qt Resource Compiler:
|
||||
qrc_%.cpp: %.qrc
|
||||
$(QT_RCC) -name $(*F) $< -o $(@F)
|
||||
|
||||
# set the include path found by configure
|
||||
AM_CXXFLAGS = -I$(top_srcdir)/src -I$(top_builddir)/src $(all_includes) $(QT_CXXFLAGS) \
|
||||
-I$(sim_ac_coin_includedir) -I$(sim_ac_soqt_includedir) -I$(OCC_INC)
|
||||
|
||||
|
||||
libdir = $(prefix)/Mod/Drawing
|
||||
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(libDrawingGui_la_UI) \
|
||||
CMakeLists.txt
|
||||
|
|
@ -1,92 +0,0 @@
|
|||
noinst_LTLIBRARIES=libResources.la
|
||||
|
||||
BUILT_SOURCES=\
|
||||
qrc_Drawing.cpp
|
||||
|
||||
nodist_libResources_la_SOURCES=\
|
||||
qrc_Drawing.cpp
|
||||
|
||||
EXTRA_DIST = \
|
||||
icons/actions/document-new.png \
|
||||
icons/actions/document-new.svg \
|
||||
icons/actions/drawing-landscape-A0.svg \
|
||||
icons/actions/drawing-landscape-A1.svg \
|
||||
icons/actions/drawing-landscape-A2.svg \
|
||||
icons/actions/drawing-landscape.svg \
|
||||
icons/actions/drawing-view.svg \
|
||||
icons/actions/drawing-landscape-A3.svg \
|
||||
icons/actions/drawing-landscape-A4.svg \
|
||||
icons/actions/drawing-landscape-new.svg \
|
||||
icons/actions/drawing-portrait-A4.svg \
|
||||
icons/actions/drawing-orthoviews.svg \
|
||||
icons/actions/drawing-openbrowser.svg \
|
||||
icons/actions/drawing-annotation.svg \
|
||||
icons/actions/drawing-clip.svg \
|
||||
icons/Page.svg \
|
||||
icons/Pages.svg \
|
||||
icons/View.svg \
|
||||
translations/Drawing_af.qm \
|
||||
translations/Drawing_de.qm \
|
||||
translations/Drawing_es-ES.qm \
|
||||
translations/Drawing_fi.qm \
|
||||
translations/Drawing_fr.qm \
|
||||
translations/Drawing_hr.qm \
|
||||
translations/Drawing_it.qm \
|
||||
translations/Drawing_nl.qm \
|
||||
translations/Drawing_no.qm \
|
||||
translations/Drawing_pl.qm \
|
||||
translations/Drawing_pt-BR.qm \
|
||||
translations/Drawing_ru.qm \
|
||||
translations/Drawing_sv-SE.qm \
|
||||
translations/Drawing_uk.qm \
|
||||
translations/Drawing_zh-CN.qm \
|
||||
translations/Drawing_zh-TW.qm \
|
||||
translations/Drawing_cs.qm \
|
||||
translations/Drawing_tr.qm \
|
||||
translations/Drawing_ro.qm \
|
||||
translations/Drawing_sk.qm \
|
||||
translations/Drawing_ja.qm \
|
||||
translations/Drawing_hu.qm \
|
||||
translations/Drawing_af.ts \
|
||||
translations/Drawing_de.ts \
|
||||
translations/Drawing_es-ES.ts \
|
||||
translations/Drawing_fi.ts \
|
||||
translations/Drawing_fr.ts \
|
||||
translations/Drawing_hr.ts \
|
||||
translations/Drawing_it.ts \
|
||||
translations/Drawing_nl.ts \
|
||||
translations/Drawing_no.ts \
|
||||
translations/Drawing_pl.ts \
|
||||
translations/Drawing_pt-BR.ts \
|
||||
translations/Drawing_ru.ts \
|
||||
translations/Drawing_sv-SE.ts \
|
||||
translations/Drawing_uk.ts \
|
||||
translations/Drawing_zh-CN.ts \
|
||||
translations/Drawing_zh-TW.ts \
|
||||
translations/Drawing_cs.ts \
|
||||
translations/Drawing_tr.ts \
|
||||
translations/Drawing_ro.ts \
|
||||
translations/Drawing_sk.ts \
|
||||
translations/Drawing_ja.ts \
|
||||
translations/Drawing_hu.ts \
|
||||
Drawing.qrc \
|
||||
UpdateResources.bat
|
||||
|
||||
|
||||
# rule for Qt MetaObject Compiler:
|
||||
moc_%.cpp: %.h
|
||||
$(QT_MOC) $< -o $(@F)
|
||||
|
||||
# rule for Qt MetaObject Compiler:
|
||||
%.moc: %.h
|
||||
$(QT_MOC) $< -o $(@F)
|
||||
|
||||
# rules for Qt Resource Compiler:
|
||||
qrc_%.cpp: %.qrc
|
||||
$(QT_RCC) -name $(*F) $< -o $(@F)
|
||||
|
||||
|
||||
# set the include path found by configure
|
||||
AM_CXXFLAGS = -I$(top_srcdir)/src -I$(top_builddir)/src -I$(srcdir)/.. $(QT_CXXFLAGS) $(all_includes)
|
||||
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
|
@ -1,11 +0,0 @@
|
|||
SUBDIRS=App Gui Templates
|
||||
|
||||
# Change data dir from default ($(prefix)/share) to $(prefix)
|
||||
datadir = $(prefix)/Mod/Drawing
|
||||
|
||||
data_DATA = Init.py InitGui.py DrawingAlgos.py DrawingExample.py DrawingTests.py
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(data_DATA) \
|
||||
CMakeLists.txt \
|
||||
drawing.dox
|
|
@ -1,9 +0,0 @@
|
|||
# Change data dir from default $(datadir) to $(datadir)/Mod/Drawing/Templates
|
||||
datadir = @datadir@/Mod/Drawing/Templates
|
||||
data_DATA = \
|
||||
A3_Landscape.svg \
|
||||
A4_Landscape.svg \
|
||||
A4_Simple.svg
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(data_DATA)
|
|
@ -1,85 +0,0 @@
|
|||
|
||||
lib_LTLIBRARIES=libFem.la Fem.la
|
||||
|
||||
BUILT_SOURCES=\
|
||||
FemMeshPy.cpp
|
||||
|
||||
libFem_la_BUILT=\
|
||||
FemMeshPy.h
|
||||
|
||||
libFem_la_SOURCES = \
|
||||
AppFemPy.cpp \
|
||||
FemMesh.cpp \
|
||||
FemMesh.h \
|
||||
FemMeshPyImp.cpp \
|
||||
FemMeshObject.cpp \
|
||||
FemMeshObject.h \
|
||||
FemMeshProperty.cpp \
|
||||
FemMeshProperty.h \
|
||||
HypothesisPy.cpp \
|
||||
HypothesisPy.h \
|
||||
PreCompiled.cpp \
|
||||
PreCompiled.h
|
||||
|
||||
%.cpp: %.xml $(top_srcdir)/src/Tools/generateTemplates/templateClassPyExport.py
|
||||
$(PYTHON) $(top_srcdir)/src/Tools/generate.py --outputPath $(@D) $<
|
||||
|
||||
# the library search path.
|
||||
libFem_la_LDFLAGS = -L../../../Base -L../../../App -L$(OCC_LIB) \
|
||||
-L$(top_builddir)/src/Mod/Mesh/App -L$(top_builddir)/src/Mod/Part/App \
|
||||
-L$(top_builddir)/src/3rdParty/salomesmesh $(all_libraries) \
|
||||
-version-info @LIB_CURRENT@:@LIB_REVISION@:@LIB_AGE@
|
||||
libFem_la_CPPFLAGS = -DFemAppExport=
|
||||
|
||||
libFem_la_LIBADD = \
|
||||
@BOOST_REGEX_LIB@ @BOOST_SYSTEM_LIB@ \
|
||||
-l@PYTHON_LIB@ \
|
||||
-lxerces-c \
|
||||
-lFreeCADBase \
|
||||
-lFreeCADApp \
|
||||
-lPart \
|
||||
-lMesh \
|
||||
-lTKernel \
|
||||
-lTKG2d \
|
||||
-lTKG3d \
|
||||
-lTKMath \
|
||||
-lTKXSBase \
|
||||
-lTKBRep \
|
||||
-lTKTopAlgo \
|
||||
-lTKGeomAlgo \
|
||||
-lTKGeomBase \
|
||||
-lSMESH \
|
||||
-lSMESHDS \
|
||||
-lSMDS \
|
||||
-lStdMeshers
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
# Loader of libFem
|
||||
|
||||
Fem_la_SOURCES=\
|
||||
AppFem.cpp
|
||||
|
||||
# the library search path.
|
||||
Fem_la_LDFLAGS = $(libFem_la_LDFLAGS) -module -avoid-version
|
||||
Fem_la_CPPFLAGS = $(libFem_la_CPPFLAGS)
|
||||
|
||||
Fem_la_LIBADD = \
|
||||
$(libFem_la_LIBADD) \
|
||||
-lFem
|
||||
|
||||
Fem_la_DEPENDENCIES = libFem.la
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
|
||||
# set the include path found by configure
|
||||
AM_CXXFLAGS = -I$(top_srcdir)/src -I$(top_builddir)/src -I$(top_srcdir)/src/3rdParty/salomesmesh/inc \
|
||||
$(all_includes) -I$(OCC_INC)
|
||||
|
||||
|
||||
libdir = $(prefix)/Mod/Fem
|
||||
|
||||
CLEANFILES = $(BUILT_SOURCES) $(libFem_la_BUILT)
|
||||
|
||||
EXTRA_DIST = \
|
||||
FemMeshPy.xml \
|
||||
CMakeLists.txt
|
|
@ -1,89 +0,0 @@
|
|||
SUBDIRS=Resources
|
||||
|
||||
lib_LTLIBRARIES=libFemGui.la FemGui.la
|
||||
|
||||
BUILT_SOURCES=\
|
||||
ui_Hypothesis.h \
|
||||
moc_Hypothesis.cpp
|
||||
|
||||
libFemGui_la_SOURCES=\
|
||||
AppFemGuiPy.cpp \
|
||||
Command.cpp \
|
||||
Hypothesis.cpp \
|
||||
Hypothesis.h \
|
||||
PreCompiled.cpp \
|
||||
PreCompiled.h \
|
||||
ViewProviderFemMesh.cpp \
|
||||
ViewProviderFemMesh.h \
|
||||
Workbench.cpp \
|
||||
Workbench.h
|
||||
|
||||
# the library search path.
|
||||
libFemGui_la_LDFLAGS = -L../../../Base -L../../../App -L../../../Gui -L../App \
|
||||
-L$(top_builddir)/src/3rdParty/salomesmesh \
|
||||
$(sim_ac_coin_ldflags) $(sim_ac_coin_libs) \
|
||||
$(sim_ac_soqt_ldflags) $(sim_ac_soqt_libs) \
|
||||
$(QT_LIBS) $(GL_LIBS) $(all_libraries) \
|
||||
-version-info @LIB_CURRENT@:@LIB_REVISION@:@LIB_AGE@
|
||||
libFemGui_la_CPPFLAGS = -DFemAppExport= -DFemGuiExport=
|
||||
|
||||
libFemGui_la_LIBADD = \
|
||||
@BOOST_SYSTEM_LIB@ \
|
||||
-l@PYTHON_LIB@ \
|
||||
-lxerces-c \
|
||||
-lFreeCADBase \
|
||||
-lFreeCADApp \
|
||||
-lFreeCADGui \
|
||||
-lSMESH \
|
||||
-lSMDS \
|
||||
-lFem
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
# Loader of libFemGui
|
||||
|
||||
FemGui_la_SOURCES=\
|
||||
AppFemGui.cpp
|
||||
|
||||
# the library search path.
|
||||
FemGui_la_LDFLAGS = $(libFemGui_la_LDFLAGS) -module -avoid-version
|
||||
FemGui_la_CPPFLAGS = $(libFemGui_la_CPPFLAGS)
|
||||
|
||||
FemGui_la_LIBADD = \
|
||||
$(libFemGui_la_LIBADD) \
|
||||
Resources/libResources.la \
|
||||
-lFemGui
|
||||
|
||||
FemGui_la_DEPENDENCIES = libFemGui.la
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
|
||||
# rule for Qt MetaObject Compiler:
|
||||
moc_%.cpp: %.h
|
||||
$(QT_MOC) $< -o $(@F)
|
||||
|
||||
# rule for Qt MetaObject Compiler:
|
||||
%.moc: %.h
|
||||
$(QT_MOC) $< -o $(@F)
|
||||
|
||||
# rules for Qt User Interface Compiler:
|
||||
ui_%.h: %.ui
|
||||
$(QT_UIC) $< -o $(@F)
|
||||
|
||||
# rules for Qt Resource Compiler:
|
||||
qrc_%.cpp: %.qrc
|
||||
$(QT_RCC) -name $(*F) $< -o $(@F)
|
||||
|
||||
# set the include path found by configure
|
||||
AM_CXXFLAGS = -I$(top_srcdir)/src -I$(top_builddir)/src $(QT_CXXFLAGS) $(all_includes) \
|
||||
-I$(sim_ac_coin_includedir) -I$(sim_ac_soqt_includedir) \
|
||||
-I$(OCC_INC) -I$(top_srcdir)/src/3rdParty/salomesmesh/inc
|
||||
|
||||
|
||||
libdir = $(prefix)/Mod/Fem
|
||||
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
Hypothesis.ui
|
||||
|
|
@ -1,76 +0,0 @@
|
|||
noinst_LTLIBRARIES=libResources.la
|
||||
|
||||
BUILT_SOURCES=\
|
||||
qrc_Fem.cpp
|
||||
|
||||
nodist_libResources_la_SOURCES=\
|
||||
qrc_Fem.cpp
|
||||
|
||||
EXTRA_DIST = \
|
||||
icons/Fem_FemMesh.svg \
|
||||
translations/Fem_af.qm \
|
||||
translations/Fem_af.ts \
|
||||
translations/Fem_de.qm \
|
||||
translations/Fem_de.ts \
|
||||
translations/Fem_es-ES.qm \
|
||||
translations/Fem_es-ES.ts \
|
||||
translations/Fem_fi.qm \
|
||||
translations/Fem_fi.ts \
|
||||
translations/Fem_fr.qm \
|
||||
translations/Fem_fr.ts \
|
||||
translations/Fem_hr.qm \
|
||||
translations/Fem_hr.ts \
|
||||
translations/Fem_it.qm \
|
||||
translations/Fem_it.ts \
|
||||
translations/Fem_nl.qm \
|
||||
translations/Fem_nl.ts \
|
||||
translations/Fem_no.qm \
|
||||
translations/Fem_no.ts \
|
||||
translations/Fem_pl.qm \
|
||||
translations/Fem_pl.ts \
|
||||
translations/Fem_pt-BR.qm \
|
||||
translations/Fem_pt-BR.ts \
|
||||
translations/Fem_ru.qm \
|
||||
translations/Fem_ru.ts \
|
||||
translations/Fem_sv-SE.qm \
|
||||
translations/Fem_sv-SE.ts \
|
||||
translations/Fem_uk.qm \
|
||||
translations/Fem_uk.ts \
|
||||
translations/Fem_zh-CN.qm \
|
||||
translations/Fem_zh-CN.ts \
|
||||
translations/Fem_zh-TW.qm \
|
||||
translations/Fem_zh-TW.ts \
|
||||
translations/Fem_ro.qm \
|
||||
translations/Fem_ro.ts \
|
||||
translations/Fem_cs.qm \
|
||||
translations/Fem_cs.ts \
|
||||
translations/Fem_sk.qm \
|
||||
translations/Fem_sk.ts \
|
||||
translations/Fem_tr.qm \
|
||||
translations/Fem_tr.ts \
|
||||
translations/Fem_hu.qm \
|
||||
translations/Fem_hu.ts \
|
||||
translations/Fem_ja.qm \
|
||||
translations/Fem_ja.ts \
|
||||
Fem.qrc \
|
||||
UpdateResources.bat
|
||||
|
||||
|
||||
# rule for Qt MetaObject Compiler:
|
||||
moc_%.cpp: %.h
|
||||
$(QT_MOC) $< -o $(@F)
|
||||
|
||||
# rule for Qt MetaObject Compiler:
|
||||
%.moc: %.h
|
||||
$(QT_MOC) $< -o $(@F)
|
||||
|
||||
# rules for Qt Resource Compiler:
|
||||
qrc_%.cpp: %.qrc
|
||||
$(QT_RCC) -name $(*F) $< -o $(@F)
|
||||
|
||||
|
||||
# set the include path found by configure
|
||||
AM_CXXFLAGS = -I$(top_srcdir)/src -I$(top_builddir)/src -I$(srcdir)/.. $(all_includes) $(QT_CXXFLAGS)
|
||||
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
SUBDIRS=App Gui
|
||||
|
||||
# Change data dir from default ($(prefix)/share) to $(prefix)
|
||||
datadir = $(prefix)/Mod/Fem
|
||||
|
||||
data_DATA = Init.py InitGui.py convert2TetGen.py FemExample.py
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(data_DATA) \
|
||||
CMakeLists.txt \
|
||||
fem.dox
|
|
@ -1,49 +0,0 @@
|
|||
|
||||
# Change data dir from default ($(prefix)/share) to $(prefix)
|
||||
datadir = $(prefix)/Mod/Idf
|
||||
data_DATA = \
|
||||
Idf.py \
|
||||
Init.py
|
||||
|
||||
if MAKE_NO_DFSG_PACKAGE
|
||||
data_DATA += \
|
||||
ISOL.emn \
|
||||
ISOL.emp
|
||||
|
||||
nobase_data_DATA = \
|
||||
lib/0603_SMD.stp \
|
||||
lib/0805_SMD.stp \
|
||||
lib/1206_SMD.stp \
|
||||
lib/1210_SMD.stp \
|
||||
lib/1812_SMD.stp \
|
||||
lib/2225_SMD.stp \
|
||||
lib/2512_SMD.stp \
|
||||
lib/CAP_50SGV_8_10.stp \
|
||||
lib/EPL22_6_16.stp \
|
||||
lib/footprints_models.csv \
|
||||
lib/I22_2_5_16.stp \
|
||||
lib/I22_2_5_16withEPL22_6_16.stp \
|
||||
lib/MSOP_10.stp \
|
||||
lib/RLF_12545.stp \
|
||||
lib/RLF_7030.stp \
|
||||
lib/SMB_DO_214AA.stp \
|
||||
lib/SMC_DO_214AB.stp \
|
||||
lib/SOD_323.igs \
|
||||
lib/SOD_323.stp \
|
||||
lib/SOD_523.stp \
|
||||
lib/SOT23.stp \
|
||||
lib/SOT404.stp \
|
||||
lib/SOT428_DPAK.stp \
|
||||
lib/SOT_323_3.stp \
|
||||
lib/SOT_96.stp \
|
||||
lib/TCMT1107_4.stp \
|
||||
lib/TSM_103_01_L_DV_A.stp \
|
||||
lib/TSM_104_01_L_DV_A.stp \
|
||||
lib/TSS0P_8.stp \
|
||||
lib/VC0603_SMD.stp
|
||||
endif
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(data_DATA) $(nobase_data_DATA) \
|
||||
CMakeLists.txt
|
||||
|
|
@ -1,54 +0,0 @@
|
|||
|
||||
lib_LTLIBRARIES=libImage.la Image.la
|
||||
|
||||
libImage_la_SOURCES=\
|
||||
ImageBase.cpp \
|
||||
ImagePlane.cpp \
|
||||
PreCompiled.cpp \
|
||||
PreCompiled.h
|
||||
|
||||
includedir = @includedir@/Mod/Image/App
|
||||
|
||||
include_HEADERS=\
|
||||
ImageBase.h \
|
||||
ImagePlane.h
|
||||
|
||||
# the library search path.
|
||||
libImage_la_LDFLAGS = -L../../../Base -L../../../App $(all_libraries) \
|
||||
-version-info @LIB_CURRENT@:@LIB_REVISION@:@LIB_AGE@
|
||||
libImage_la_CPPFLAGS = -DImageAppExport=
|
||||
|
||||
# $(opencv_LIBS)
|
||||
libImage_la_LIBADD = \
|
||||
@BOOST_SYSTEM_LIB@ \
|
||||
-l@PYTHON_LIB@ \
|
||||
-lxerces-c \
|
||||
-lFreeCADBase \
|
||||
-lFreeCADApp
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
# Loader of libImage
|
||||
|
||||
Image_la_SOURCES=\
|
||||
AppImage.cpp
|
||||
|
||||
# the library search path.
|
||||
Image_la_LDFLAGS = $(libImage_la_LDFLAGS) -module -avoid-version
|
||||
Image_la_CPPFLAGS = $(libImage_la_CPPFLAGS)
|
||||
|
||||
Image_la_LIBADD = \
|
||||
$(libImage_la_LIBADD) \
|
||||
-lImage
|
||||
|
||||
Image_la_DEPENDENCIES = libImage.la
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
|
||||
# set the include path found by configure
|
||||
# $(opencv_CFLAGS)
|
||||
AM_CXXFLAGS = -I$(top_srcdir)/src -I$(top_builddir)/src $(all_includes)
|
||||
|
||||
libdir = $(prefix)/Mod/Image
|
||||
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt
|
|
@ -1,137 +0,0 @@
|
|||
|
||||
lib_LTLIBRARIES=libImageGui.la ImageGui.la
|
||||
|
||||
BUILT_SOURCES=\
|
||||
moc_GLImageBox.cpp \
|
||||
moc_ImageView.cpp \
|
||||
qrc_Image.cpp
|
||||
|
||||
libImageGui_la_SOURCES=\
|
||||
AppImageGuiPy.cpp \
|
||||
Command.cpp \
|
||||
GLImageBox.cpp \
|
||||
ImageView.cpp \
|
||||
PreCompiled.cpp \
|
||||
PreCompiled.h \
|
||||
ViewProviderImagePlane.cpp \
|
||||
ViewProviderImagePlane.h \
|
||||
Workbench.cpp \
|
||||
XpmImages.h
|
||||
|
||||
includedir = @includedir@/Mod/Image/Gui
|
||||
|
||||
include_HEADERS=\
|
||||
GLImageBox.h \
|
||||
ImageView.h \
|
||||
Workbench.h
|
||||
|
||||
# the library search path.
|
||||
libImageGui_la_LDFLAGS = -L../../../Base -L../../../App -L../../../Gui -L../App \
|
||||
$(QT_LIBS) $(GL_LIBS) $(all_libraries) \
|
||||
$(sim_ac_coin_ldflags) $(sim_ac_coin_libs) \
|
||||
$(sim_ac_soqt_ldflags) $(sim_ac_soqt_libs) \
|
||||
-version-info @LIB_CURRENT@:@LIB_REVISION@:@LIB_AGE@
|
||||
libImageGui_la_CPPFLAGS = -DImageAppExport= -DImageGuiExport=
|
||||
|
||||
# $(opencv_LIBS)
|
||||
libImageGui_la_LIBADD = \
|
||||
@BOOST_SYSTEM_LIB@ \
|
||||
-l@PYTHON_LIB@ \
|
||||
-lxerces-c \
|
||||
-lFreeCADBase \
|
||||
-lFreeCADApp \
|
||||
-lFreeCADGui \
|
||||
-lImage
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
# Loader of libImageGui
|
||||
|
||||
ImageGui_la_SOURCES=\
|
||||
AppImageGui.cpp
|
||||
|
||||
# the library search path.
|
||||
ImageGui_la_LDFLAGS = $(libImageGui_la_LDFLAGS) -module -avoid-version
|
||||
ImageGui_la_CPPFLAGS = $(libImageGui_la_CPPFLAGS)
|
||||
|
||||
ImageGui_la_LIBADD = \
|
||||
$(libImageGui_la_LIBADD) \
|
||||
-lImageGui
|
||||
|
||||
ImageGui_la_DEPENDENCIES = libImageGui.la
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
|
||||
# rule for Qt MetaObject Compiler:
|
||||
moc_%.cpp: %.h
|
||||
$(QT_MOC) $< -o $(@F)
|
||||
|
||||
# rule for Qt MetaObject Compiler:
|
||||
%.moc: %.h
|
||||
$(QT_MOC) $< -o $(@F)
|
||||
|
||||
# rules for Qt User Interface Compiler:
|
||||
ui_%.h: %.ui
|
||||
$(QT_UIC) $< -o $(@F)
|
||||
|
||||
# rules for Qt Resource Compiler:
|
||||
qrc_%.cpp: Resources/%.qrc
|
||||
$(QT_RCC) -name $(*F) $< -o $(@F)
|
||||
|
||||
# set the include path found by configure
|
||||
# $(opencv_CFLAGS)
|
||||
AM_CXXFLAGS = -I$(top_srcdir)/src -I$(top_builddir)/src $(all_includes) $(QT_CXXFLAGS) \
|
||||
-I$(sim_ac_coin_includedir) -I$(sim_ac_soqt_includedir)
|
||||
|
||||
libdir = $(prefix)/Mod/Image
|
||||
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
Resources/Image.qrc \
|
||||
Resources/translations/Image_af.qm \
|
||||
Resources/translations/Image_af.ts \
|
||||
Resources/translations/Image_de.qm \
|
||||
Resources/translations/Image_de.ts \
|
||||
Resources/translations/Image_es-ES.qm \
|
||||
Resources/translations/Image_es-ES.ts \
|
||||
Resources/translations/Image_fi.qm \
|
||||
Resources/translations/Image_fi.ts \
|
||||
Resources/translations/Image_fr.qm \
|
||||
Resources/translations/Image_fr.ts \
|
||||
Resources/translations/Image_hr.qm \
|
||||
Resources/translations/Image_hr.ts \
|
||||
Resources/translations/Image_it.qm \
|
||||
Resources/translations/Image_it.ts \
|
||||
Resources/translations/Image_nl.qm \
|
||||
Resources/translations/Image_nl.ts \
|
||||
Resources/translations/Image_no.qm \
|
||||
Resources/translations/Image_no.ts \
|
||||
Resources/translations/Image_pl.qm \
|
||||
Resources/translations/Image_pl.ts \
|
||||
Resources/translations/Image_pt-BR.qm \
|
||||
Resources/translations/Image_pt-BR.ts \
|
||||
Resources/translations/Image_ru.qm \
|
||||
Resources/translations/Image_ru.ts \
|
||||
Resources/translations/Image_sv-SE.qm \
|
||||
Resources/translations/Image_sv-SE.ts \
|
||||
Resources/translations/Image_uk.qm \
|
||||
Resources/translations/Image_uk.ts \
|
||||
Resources/translations/Image_zh-CN.qm \
|
||||
Resources/translations/Image_zh-CN.ts \
|
||||
Resources/translations/Image_hu.qm \
|
||||
Resources/translations/Image_hu.ts \
|
||||
Resources/translations/Image_ja.qm \
|
||||
Resources/translations/Image_ja.ts \
|
||||
Resources/translations/Image_ro.qm \
|
||||
Resources/translations/Image_ro.ts \
|
||||
Resources/translations/Image_zh-TW.qm \
|
||||
Resources/translations/Image_zh-TW.ts \
|
||||
Resources/translations/Image_cs.qm \
|
||||
Resources/translations/Image_cs.ts \
|
||||
Resources/translations/Image_tr.qm \
|
||||
Resources/translations/Image_tr.ts \
|
||||
Resources/translations/Image_sk.qm \
|
||||
Resources/translations/Image_sk.ts \
|
||||
Resources/icons/image-import.svg
|
||||
|
|
@ -1,10 +0,0 @@
|
|||
SUBDIRS=App Gui
|
||||
|
||||
# Change data dir from default ($(prefix)/share) to $(prefix)
|
||||
datadir = $(prefix)/Mod/Image
|
||||
data_DATA = Init.py InitGui.py
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(data_DATA) \
|
||||
CMakeLists.txt \
|
||||
image.dox
|
|
@ -1,41 +0,0 @@
|
|||
|
||||
lib_LTLIBRARIES=libImport.la
|
||||
|
||||
libImport_la_SOURCES=\
|
||||
AppImport.cpp \
|
||||
AppImportPy.cpp \
|
||||
FeatureImportIges.cpp \
|
||||
FeatureImportIges.h \
|
||||
FeatureImportStep.cpp \
|
||||
FeatureImportStep.h \
|
||||
PreCompiled.cpp \
|
||||
PreCompiled.h
|
||||
|
||||
|
||||
# the library search path.
|
||||
libImport_la_LDFLAGS = -L../../../Base -L../../../App -L../../Part/App $(all_libraries) \
|
||||
-version-info @LIB_CURRENT@:@LIB_REVISION@:@LIB_AGE@
|
||||
libImport_la_CPPFLAGS = -DAppPartExport=
|
||||
|
||||
libImport_la_LIBADD = \
|
||||
-lTKIGES \
|
||||
-lTKSTEP \
|
||||
-lFreeCADBase \
|
||||
-lFreeCADApp \
|
||||
-lPart
|
||||
|
||||
# set the include path found by configure
|
||||
AM_CXXFLAGS = $(all_includes) -I../../../
|
||||
|
||||
libdir = $(prefix)/Mod/Import
|
||||
|
||||
# We need this softlink for Python to load
|
||||
install-data-local:
|
||||
cd $(DESTDIR)$(libdir) && \
|
||||
rm -f Import.so && \
|
||||
$(LN_S) libImport.so Import.so
|
||||
|
||||
EXTRA_DIST = \
|
||||
AppImport.dsp \
|
||||
AppImport.vcproj \
|
||||
Libs.cpp
|
|
@ -1,90 +0,0 @@
|
|||
|
||||
lib_LTLIBRARIES=libImportGui.la ImportGui.la
|
||||
|
||||
# BUILT_SOURCES=\
|
||||
#
|
||||
libImportGui_la_SOURCES=\
|
||||
AppImportGuiPy.cpp \
|
||||
Command.cpp \
|
||||
PreCompiled.cpp \
|
||||
PreCompiled.h \
|
||||
Workbench.cpp \
|
||||
Workbench.h
|
||||
|
||||
# the library search path.
|
||||
libImportGui_la_LDFLAGS = \
|
||||
-L../../../Base \
|
||||
-L../../../App \
|
||||
-L../../../Gui \
|
||||
-L../../Part/App \
|
||||
-L../../Part/Gui \
|
||||
-L$(OCC_LIB) $(QT_LIBS) $(all_libraries) \
|
||||
-version-info @LIB_CURRENT@:@LIB_REVISION@:@LIB_AGE@
|
||||
|
||||
libImportGui_la_CPPFLAGS = -DAppPartExport= -DAppPartGuiExport=
|
||||
|
||||
libImportGui_la_LIBADD = \
|
||||
@BOOST_SYSTEM_LIB@ \
|
||||
-l@PYTHON_LIB@ \
|
||||
-lTKernel \
|
||||
-lTKMath \
|
||||
-lTKBRep \
|
||||
-lTKXSBase \
|
||||
-lTKXCAF \
|
||||
-lTKLCAF \
|
||||
-lTKCAF \
|
||||
-lTKSTEP \
|
||||
-lTKIGES \
|
||||
-lTKXDESTEP \
|
||||
-lTKXDEIGES \
|
||||
-lFreeCADBase \
|
||||
-lFreeCADApp \
|
||||
-lFreeCADGui \
|
||||
-lPart \
|
||||
-lPartGui
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
# Loader of libImportGui
|
||||
|
||||
ImportGui_la_SOURCES=\
|
||||
AppImportGui.cpp
|
||||
|
||||
# the library search path.
|
||||
ImportGui_la_LDFLAGS = $(libImportGui_la_LDFLAGS) -module -avoid-version
|
||||
ImportGui_la_CPPFLAGS = $(libImportGui_la_CPPFLAGS)
|
||||
|
||||
ImportGui_la_LIBADD = \
|
||||
$(libImportGui_la_LIBADD) \
|
||||
-lImportGui
|
||||
|
||||
ImportGui_la_DEPENDENCIES = libImportGui.la
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
|
||||
# rule for Qt MetaObject Compiler:
|
||||
moc_%.cpp: %.h
|
||||
$(QT_MOC) $< -o $(@F)
|
||||
|
||||
# rule for Qt MetaObject Compiler:
|
||||
%.moc: %.h
|
||||
$(QT_MOC) $< -o $(@F)
|
||||
|
||||
# rules for Qt User Interface Compiler:
|
||||
ui_%.h: %.ui
|
||||
$(QT_UIC) $< -o $(@F)
|
||||
|
||||
# rules for Qt Resource Compiler:
|
||||
qrc_%.cpp: Resources/%.qrc
|
||||
$(QT_RCC) -name $(*F) $< -o $(@F)
|
||||
|
||||
# set the include path found by configure
|
||||
AM_CXXFLAGS = -I$(top_srcdir)/src -I$(top_builddir)/src $(all_includes) $(QT_CXXFLAGS) -I$(OCC_INC) \
|
||||
-I$(sim_ac_coin_includedir) -I$(sim_ac_soqt_includedir)
|
||||
|
||||
includedir = @includedir@/Mod/Part/Gui
|
||||
libdir = $(prefix)/Mod/Import
|
||||
|
||||
#CLEANFILES = $(BUILT_SOURCES)
|
||||
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt
|
|
@ -1,11 +0,0 @@
|
|||
#SUBDIRS=App Gui
|
||||
SUBDIRS=Gui
|
||||
|
||||
# Change data dir from default ($(prefix)/share) to $(prefix)
|
||||
datadir = $(prefix)/Mod/Import
|
||||
data_DATA = Init.py InitGui.py
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(data_DATA) \
|
||||
CMakeLists.txt \
|
||||
import.dox
|
|
@ -1,72 +0,0 @@
|
|||
|
||||
lib_LTLIBRARIES=libInspection.la Inspection.la
|
||||
|
||||
libInspection_la_SOURCES=\
|
||||
AppInspectionPy.cpp \
|
||||
InspectionFeature.cpp \
|
||||
InspectionFeature.h \
|
||||
PreCompiled.cpp \
|
||||
PreCompiled.h
|
||||
|
||||
includedir = @includedir@/Mod/Inspection/App
|
||||
|
||||
# the library search path.
|
||||
libInspection_la_LDFLAGS = -L$(top_builddir)/src/Base -L$(top_builddir)/src/App \
|
||||
-L$(top_builddir)/src/Mod/Mesh/App \
|
||||
-L$(top_builddir)/src/Mod/Points/App \
|
||||
-L$(top_builddir)/src/Mod/Part/App \
|
||||
-L$(OCC_LIB) $(QT4_CORE_LIBS) $(all_libraries) \
|
||||
-version-info @LIB_CURRENT@:@LIB_REVISION@:@LIB_AGE@
|
||||
libInspection_la_CPPFLAGS = -DInspectionAppExport=
|
||||
|
||||
libInspection_la_LIBADD = \
|
||||
@BOOST_SYSTEM_LIB@ \
|
||||
-l@PYTHON_LIB@ \
|
||||
-lxerces-c \
|
||||
-lTKernel \
|
||||
-lTKFillet \
|
||||
-lTKG2d \
|
||||
-lTKG3d \
|
||||
-lTKMath \
|
||||
-lTKMesh \
|
||||
-lTKXSBase \
|
||||
-lTKBool \
|
||||
-lTKBO \
|
||||
-lTKBRep \
|
||||
-lTKTopAlgo \
|
||||
-lTKGeomAlgo \
|
||||
-lTKGeomBase \
|
||||
-lTKOffset \
|
||||
-lTKPrim \
|
||||
-lFreeCADBase \
|
||||
-lFreeCADApp \
|
||||
-lMesh \
|
||||
-lPoints \
|
||||
-lPart
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
# Loader of libInspection
|
||||
|
||||
Inspection_la_SOURCES=\
|
||||
AppInspection.cpp
|
||||
|
||||
# the library search path.
|
||||
Inspection_la_LDFLAGS = $(libInspection_la_LDFLAGS) -module -avoid-version
|
||||
Inspection_la_CPPFLAGS = $(libInspection_la_CPPFLAGS)
|
||||
|
||||
Inspection_la_LIBADD = \
|
||||
$(libInspection_la_LIBADD) \
|
||||
-lInspection
|
||||
|
||||
Inspection_la_DEPENDENCIES = libInspection.la
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
|
||||
# set the include path found by configure
|
||||
AM_CXXFLAGS = -I$(top_srcdir)/src -I$(top_builddir)/src $(all_includes) \
|
||||
$(QT4_CORE_CXXFLAGS) -I$(OCC_INC)
|
||||
|
||||
libdir = $(prefix)/Mod/Inspection
|
||||
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt
|
|
@ -1,91 +0,0 @@
|
|||
|
||||
lib_LTLIBRARIES=libInspectionGui.la InspectionGui.la
|
||||
|
||||
BUILT_SOURCES=\
|
||||
ui_VisualInspection.h \
|
||||
moc_VisualInspection.cpp \
|
||||
qrc_Inspection.cpp
|
||||
|
||||
libInspectionGui_la_SOURCES=\
|
||||
AppInspectionGuiPy.cpp \
|
||||
Command.cpp \
|
||||
PreCompiled.cpp \
|
||||
PreCompiled.h \
|
||||
ViewProviderInspection.cpp \
|
||||
ViewProviderInspection.h \
|
||||
VisualInspection.cpp \
|
||||
VisualInspection.h \
|
||||
Workbench.cpp \
|
||||
Workbench.h
|
||||
|
||||
includedir = @includedir@/Mod/Inspection/Gui
|
||||
|
||||
# the library search path.
|
||||
libInspectionGui_la_LDFLAGS = -L../../../Base -L../../../App -L../../../Gui -L../App \
|
||||
-L$(top_builddir)/src/Mod/Mesh/App \
|
||||
-L$(top_builddir)/src/Mod/Points/App \
|
||||
$(sim_ac_coin_ldflags) $(sim_ac_coin_libs) \
|
||||
$(sim_ac_soqt_ldflags) $(sim_ac_soqt_libs) \
|
||||
$(QT_LIBS) $(all_libraries) \
|
||||
-version-info @LIB_CURRENT@:@LIB_REVISION@:@LIB_AGE@
|
||||
|
||||
libInspectionGui_la_CPPFLAGS = -DInspectionAppExport= -DInspectionGuiExport=
|
||||
|
||||
libInspectionGui_la_LIBADD = \
|
||||
@BOOST_SYSTEM_LIB@ \
|
||||
-l@PYTHON_LIB@ \
|
||||
-lxerces-c \
|
||||
-lFreeCADBase \
|
||||
-lFreeCADApp \
|
||||
-lFreeCADGui \
|
||||
-lMesh \
|
||||
-lPoints \
|
||||
-lInspection
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
# Loader of libInspectionGui
|
||||
|
||||
InspectionGui_la_SOURCES=\
|
||||
AppInspectionGui.cpp
|
||||
|
||||
# the library search path.
|
||||
InspectionGui_la_LDFLAGS = $(libInspectionGui_la_LDFLAGS) -module -avoid-version
|
||||
InspectionGui_la_CPPFLAGS = $(libInspectionGui_la_CPPFLAGS)
|
||||
|
||||
InspectionGui_la_LIBADD = \
|
||||
$(libInspectionGui_la_LIBADD) \
|
||||
-lInspectionGui
|
||||
|
||||
InspectionGui_la_DEPENDENCIES = libInspectionGui.la
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
|
||||
# rule for Qt MetaObject Compiler:
|
||||
moc_%.cpp: %.h
|
||||
$(QT_MOC) $< -o $(@F)
|
||||
|
||||
# rule for Qt MetaObject Compiler:
|
||||
%.moc: %.h
|
||||
$(QT_MOC) $< -o $(@F)
|
||||
|
||||
# rules for Qt User Interface Compiler:
|
||||
ui_%.h: %.ui
|
||||
$(QT_UIC) $< -o $(@F)
|
||||
|
||||
# rules for Qt Resource Compiler:
|
||||
qrc_%.cpp: Resources/%.qrc
|
||||
$(QT_RCC) -name $(*F) $< -o $(@F)
|
||||
|
||||
# set the include path found by configure
|
||||
AM_CXXFLAGS = -I$(top_srcdir)/src -I$(top_builddir)/src $(all_includes) $(QT_CXXFLAGS) \
|
||||
-I$(sim_ac_coin_includedir) -I$(sim_ac_soqt_includedir)
|
||||
|
||||
libdir = $(prefix)/Mod/Inspection
|
||||
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
VisualInspection.ui \
|
||||
Resources/Inspection.qrc
|
||||
|
|
@ -1,10 +0,0 @@
|
|||
SUBDIRS=App Gui
|
||||
|
||||
# Change data dir from default ($(prefix)/share) to $(prefix)
|
||||
datadir = $(prefix)/Mod/Inspection
|
||||
data_DATA = Init.py InitGui.py
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(data_DATA) \
|
||||
CMakeLists.txt \
|
||||
Inspection.dox
|
|
@ -1,52 +0,0 @@
|
|||
|
||||
lib_LTLIBRARIES=libJtReader.la JtReader.la
|
||||
|
||||
BUILT_SOURCES=\
|
||||
FreeCADpov.h
|
||||
|
||||
libJtReader_la_SOURCES=\
|
||||
PreCompiled.cpp \
|
||||
PreCompiled.h \
|
||||
|
||||
|
||||
FreeCADpov.h: FreeCADpov
|
||||
$(PYTHON) $(top_srcdir)/src/Tools/PythonToCPP.py $< $@
|
||||
|
||||
|
||||
# the library search path.
|
||||
libJtReader_la_LDFLAGS = -L../../../Base -L../../../App -L../../Part/App -L/usr/X11R6/lib -L$(OCC_LIB) \
|
||||
$(all_libraries) -version-info @LIB_CURRENT@:@LIB_REVISION@:@LIB_AGE@
|
||||
libJtReader_la_CPPFLAGS = -DAppPartExport= -DAppJtReaderExport= -DFeatureRayExportPov=
|
||||
|
||||
libJtReader_la_LIBADD = \
|
||||
-lxerces-c \
|
||||
-l@PYTHON_LIB@ \
|
||||
-lFreeCADBase \
|
||||
-lFreeCADApp
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
# Loader of libJtReader
|
||||
|
||||
JtReader_la_SOURCES=\
|
||||
AppJtReader.cpp
|
||||
|
||||
# the library search path.
|
||||
JtReader_la_LDFLAGS = $(libJtReader_la_LDFLAGS) -module -avoid-version
|
||||
JtReader_la_CPPFLAGS = $(libJtReader_la_CPPFLAGS)
|
||||
|
||||
JtReader_la_LIBADD = \
|
||||
$(libJtReader_la_LIBADD) \
|
||||
-lJtReader
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
|
||||
# set the include path found by configure
|
||||
AM_CXXFLAGS = -I$(top_srcdir)/src -I$(top_builddir)/src $(all_includes)
|
||||
|
||||
|
||||
libdir = $(prefix)/Mod/JtReader
|
||||
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt
|
|
@ -1,9 +0,0 @@
|
|||
SUBDIRS=App Gui
|
||||
|
||||
# Change data dir from default ($(prefix)/share) to $(prefix)
|
||||
datadir = $(prefix)/Mod/JtReader
|
||||
|
||||
data_DATA = Init.py InitGui.py
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(data_DATA)
|
|
@ -1,52 +0,0 @@
|
|||
#SUBDIRS=Part Mesh Points Raytracing Image Drawing Complete Draft Test TemplatePyMod
|
||||
SUBDIRS=Points Complete Draft Test TemplatePyMod Web Start Idf
|
||||
|
||||
#if HAVE_OPENCV
|
||||
SUBDIRS += Image
|
||||
#endif
|
||||
|
||||
#if HAVE_GTS
|
||||
SUBDIRS += Mesh
|
||||
#endif
|
||||
|
||||
if HAVE_OPENCASCADE
|
||||
SUBDIRS += Part Import PartDesign Raytracing Drawing Arch Ship OpenSCAD
|
||||
endif
|
||||
|
||||
if HAVE_EIGEN3
|
||||
if HAVE_OPENCASCADE
|
||||
SUBDIRS += Robot
|
||||
endif
|
||||
endif
|
||||
|
||||
if HAVE_EIGEN3
|
||||
if HAVE_OPENCASCADE
|
||||
SUBDIRS += Sketcher
|
||||
endif
|
||||
endif
|
||||
|
||||
#if HAVE_GTS
|
||||
if HAVE_OPENCASCADE
|
||||
SUBDIRS += ReverseEngineering MeshPart Fem Inspection
|
||||
endif
|
||||
#endif
|
||||
|
||||
if BUILD_ASSEMBLY
|
||||
SUBDIRS += Assembly
|
||||
endif
|
||||
|
||||
if BUILD_SANDBOX
|
||||
SUBDIRS += Sandbox
|
||||
endif
|
||||
|
||||
if BUILD_CAM
|
||||
SUBDIRS += Cam
|
||||
endif
|
||||
|
||||
SUBDIRS += Plot
|
||||
|
||||
EXTRA_DIST = \
|
||||
__init__.py \
|
||||
CMakeLists.txt \
|
||||
mod.dox
|
||||
|
|
@ -1,381 +0,0 @@
|
|||
|
||||
lib_LTLIBRARIES=libMesh.la Mesh.la
|
||||
|
||||
BUILT_SOURCES=\
|
||||
FacetPy.cpp \
|
||||
FeaturePythonPy.cpp \
|
||||
MeshFeaturePy.cpp \
|
||||
MeshPointPy.cpp \
|
||||
MeshPy.cpp
|
||||
|
||||
libMesh_la_BUILT=\
|
||||
FacetPy.h \
|
||||
FeaturePythonPy.h \
|
||||
MeshFeaturePy.h \
|
||||
MeshPointPy.h \
|
||||
MeshPy.h
|
||||
|
||||
libMesh_la_SOURCES=\
|
||||
Core/Algorithm.cpp \
|
||||
Core/Algorithm.h \
|
||||
Core/Approximation.cpp \
|
||||
Core/Approximation.h \
|
||||
Core/Builder.cpp \
|
||||
Core/Builder.h \
|
||||
Core/Curvature.cpp \
|
||||
Core/Curvature.h \
|
||||
Core/Definitions.cpp \
|
||||
Core/Definitions.h \
|
||||
Core/Degeneration.cpp \
|
||||
Core/Degeneration.h \
|
||||
Core/Elements.cpp \
|
||||
Core/Elements.h \
|
||||
Core/Evaluation.cpp \
|
||||
Core/Evaluation.h \
|
||||
Core/Grid.cpp \
|
||||
Core/Grid.h \
|
||||
Core/Helpers.h \
|
||||
Core/Info.cpp \
|
||||
Core/Info.h \
|
||||
Core/Iterator.h \
|
||||
Core/MeshKernel.cpp \
|
||||
Core/MeshKernel.h \
|
||||
Core/MeshIO.cpp \
|
||||
Core/MeshIO.h \
|
||||
Core/Projection.cpp \
|
||||
Core/Projection.h \
|
||||
Core/Segmentation.cpp \
|
||||
Core/Segmentation.h \
|
||||
Core/SetOperations.cpp \
|
||||
Core/SetOperations.h \
|
||||
Core/Smoothing.cpp \
|
||||
Core/Smoothing.h \
|
||||
Core/tritritest.h \
|
||||
Core/Triangulation.cpp \
|
||||
Core/Triangulation.h \
|
||||
Core/Trim.cpp \
|
||||
Core/Trim.h \
|
||||
Core/Tools.cpp \
|
||||
Core/Tools.h \
|
||||
Core/TopoAlgorithm.cpp \
|
||||
Core/TopoAlgorithm.h \
|
||||
Core/Visitor.cpp \
|
||||
Core/Visitor.h \
|
||||
WildMagic4/Wm4ApprCylinderFit3.cpp \
|
||||
WildMagic4/Wm4ApprCylinderFit3.h \
|
||||
WildMagic4/Wm4ApprLineFit3.cpp \
|
||||
WildMagic4/Wm4ApprLineFit3.h \
|
||||
WildMagic4/Wm4ApprPlaneFit3.cpp \
|
||||
WildMagic4/Wm4ApprPlaneFit3.h \
|
||||
WildMagic4/Wm4ApprPolyFit3.cpp \
|
||||
WildMagic4/Wm4ApprPolyFit3.h \
|
||||
WildMagic4/Wm4ApprQuadraticFit3.cpp \
|
||||
WildMagic4/Wm4ApprQuadraticFit3.h \
|
||||
WildMagic4/Wm4ApprSphereFit3.cpp \
|
||||
WildMagic4/Wm4ApprSphereFit3.h \
|
||||
WildMagic4/Wm4BandedMatrix.h \
|
||||
WildMagic4/Wm4BandedMatrix.inl \
|
||||
WildMagic4/Wm4Box3.h \
|
||||
WildMagic4/Wm4Box3.inl \
|
||||
WildMagic4/Wm4DelPolygonEdge.cpp \
|
||||
WildMagic4/Wm4DelPolygonEdge.h \
|
||||
WildMagic4/Wm4DelPolyhedronFace.cpp \
|
||||
WildMagic4/Wm4DelPolyhedronFace.h \
|
||||
WildMagic4/Wm4DelTetrahedron.cpp \
|
||||
WildMagic4/Wm4DelTetrahedron.h \
|
||||
WildMagic4/Wm4DelTriangle.cpp \
|
||||
WildMagic4/Wm4DelTriangle.h \
|
||||
WildMagic4/Wm4Delaunay.cpp \
|
||||
WildMagic4/Wm4Delaunay.h \
|
||||
WildMagic4/Wm4Delaunay1.cpp \
|
||||
WildMagic4/Wm4Delaunay1.h \
|
||||
WildMagic4/Wm4Delaunay2.cpp \
|
||||
WildMagic4/Wm4Delaunay2.h \
|
||||
WildMagic4/Wm4Delaunay3.cpp \
|
||||
WildMagic4/Wm4Delaunay3.h \
|
||||
WildMagic4/Wm4DistLine3Segment3.cpp \
|
||||
WildMagic4/Wm4DistLine3Segment3.h \
|
||||
WildMagic4/Wm4DistLine3Triangle3.cpp \
|
||||
WildMagic4/Wm4DistLine3Triangle3.h \
|
||||
WildMagic4/Wm4DistSegment3Segment3.cpp \
|
||||
WildMagic4/Wm4DistSegment3Segment3.h \
|
||||
WildMagic4/Wm4DistSegment3Triangle3.cpp \
|
||||
WildMagic4/Wm4DistSegment3Triangle3.h \
|
||||
WildMagic4/Wm4DistVector3Plane3.cpp \
|
||||
WildMagic4/Wm4DistVector3Plane3.h \
|
||||
WildMagic4/Wm4DistVector3Segment3.cpp \
|
||||
WildMagic4/Wm4DistVector3Segment3.h \
|
||||
WildMagic4/Wm4DistVector3Triangle3.cpp \
|
||||
WildMagic4/Wm4DistVector3Triangle3.h \
|
||||
WildMagic4/Wm4Distance.cpp \
|
||||
WildMagic4/Wm4Distance.h \
|
||||
WildMagic4/Wm4ETManifoldMesh.cpp \
|
||||
WildMagic4/Wm4ETManifoldMesh.h \
|
||||
WildMagic4/Wm4ETManifoldMesh.inl \
|
||||
WildMagic4/Wm4EdgeKey.h \
|
||||
WildMagic4/Wm4EdgeKey.inl \
|
||||
WildMagic4/Wm4Eigen.cpp \
|
||||
WildMagic4/Wm4Eigen.h \
|
||||
WildMagic4/Wm4Foundation.h \
|
||||
WildMagic4/Wm4FoundationLIB.h \
|
||||
WildMagic4/Wm4FoundationPCH.cpp \
|
||||
WildMagic4/Wm4FoundationPCH.h \
|
||||
WildMagic4/Wm4GMatrix.h \
|
||||
WildMagic4/Wm4GMatrix.inl \
|
||||
WildMagic4/Wm4GVector.h \
|
||||
WildMagic4/Wm4GVector.inl \
|
||||
WildMagic4/Wm4ImplicitSurface.cpp \
|
||||
WildMagic4/Wm4ImplicitSurface.h \
|
||||
WildMagic4/Wm4Intersector.cpp \
|
||||
WildMagic4/Wm4Intersector.h \
|
||||
WildMagic4/Wm4Intersector1.cpp \
|
||||
WildMagic4/Wm4Intersector1.h \
|
||||
WildMagic4/Wm4IntrLine3Box3.cpp \
|
||||
WildMagic4/Wm4IntrLine3Box3.h \
|
||||
WildMagic4/Wm4IntrLine3Plane3.cpp \
|
||||
WildMagic4/Wm4IntrLine3Plane3.h \
|
||||
WildMagic4/Wm4IntrSegment3Box3.cpp \
|
||||
WildMagic4/Wm4IntrSegment3Box3.h \
|
||||
WildMagic4/Wm4IntrSegment3Plane3.cpp \
|
||||
WildMagic4/Wm4IntrSegment3Plane3.h \
|
||||
WildMagic4/Wm4IntrTriangle2Triangle2.cpp \
|
||||
WildMagic4/Wm4IntrTriangle2Triangle2.h \
|
||||
WildMagic4/Wm4IntrTriangle3Triangle3.cpp \
|
||||
WildMagic4/Wm4IntrTriangle3Triangle3.h \
|
||||
WildMagic4/Wm4LinComp.h \
|
||||
WildMagic4/Wm4LinComp.inl \
|
||||
WildMagic4/Wm4Line3.h \
|
||||
WildMagic4/Wm4Line3.inl \
|
||||
WildMagic4/Wm4LinearSystem.cpp \
|
||||
WildMagic4/Wm4LinearSystem.h \
|
||||
WildMagic4/Wm4Mapper2.h \
|
||||
WildMagic4/Wm4Mapper2.inl \
|
||||
WildMagic4/Wm4Mapper3.h \
|
||||
WildMagic4/Wm4Mapper3.inl \
|
||||
WildMagic4/Wm4Math.cpp \
|
||||
WildMagic4/Wm4Math.h \
|
||||
WildMagic4/Wm4Math.inl \
|
||||
WildMagic4/Wm4MathMCR.h \
|
||||
WildMagic4/Wm4Matrix2.cpp \
|
||||
WildMagic4/Wm4Matrix2.h \
|
||||
WildMagic4/Wm4Matrix2.inl \
|
||||
WildMagic4/Wm4Matrix3.cpp \
|
||||
WildMagic4/Wm4Matrix3.h \
|
||||
WildMagic4/Wm4Matrix3.inl \
|
||||
WildMagic4/Wm4Matrix4.cpp \
|
||||
WildMagic4/Wm4Matrix4.h \
|
||||
WildMagic4/Wm4Matrix4.inl \
|
||||
WildMagic4/Wm4Memory.cpp \
|
||||
WildMagic4/Wm4Memory.h \
|
||||
WildMagic4/Wm4Memory.inl \
|
||||
WildMagic4/Wm4MeshCurvature.cpp \
|
||||
WildMagic4/Wm4MeshCurvature.h \
|
||||
WildMagic4/Wm4MeshSmoother.cpp \
|
||||
WildMagic4/Wm4MeshSmoother.h \
|
||||
WildMagic4/Wm4ParametricSurface.cpp \
|
||||
WildMagic4/Wm4ParametricSurface.h \
|
||||
WildMagic4/Wm4Plane3.h \
|
||||
WildMagic4/Wm4Plane3.inl \
|
||||
WildMagic4/Wm4Platforms.h \
|
||||
WildMagic4/Wm4PolynomialRoots.cpp \
|
||||
WildMagic4/Wm4PolynomialRoots.h \
|
||||
WildMagic4/Wm4Polynomial1.h \
|
||||
WildMagic4/Wm4Polynomial1.inl \
|
||||
WildMagic4/Wm4QuadricSurface.cpp \
|
||||
WildMagic4/Wm4QuadricSurface.h \
|
||||
WildMagic4/Wm4Query.h \
|
||||
WildMagic4/Wm4Query.inl \
|
||||
WildMagic4/Wm4Query2.h \
|
||||
WildMagic4/Wm4Query2.inl \
|
||||
WildMagic4/Wm4Query2Filtered.h \
|
||||
WildMagic4/Wm4Query2Filtered.inl \
|
||||
WildMagic4/Wm4Query2Int64.h \
|
||||
WildMagic4/Wm4Query2Int64.inl \
|
||||
WildMagic4/Wm4Query2TInteger.h \
|
||||
WildMagic4/Wm4Query2TInteger.inl \
|
||||
WildMagic4/Wm4Query2TRational.h \
|
||||
WildMagic4/Wm4Query2TRational.inl \
|
||||
WildMagic4/Wm4Query3.h \
|
||||
WildMagic4/Wm4Query3.inl \
|
||||
WildMagic4/Wm4Query3Filtered.h \
|
||||
WildMagic4/Wm4Query3Filtered.inl \
|
||||
WildMagic4/Wm4Query3Int64.h \
|
||||
WildMagic4/Wm4Query3Int64.inl \
|
||||
WildMagic4/Wm4Query3TInteger.h \
|
||||
WildMagic4/Wm4Query3TInteger.inl \
|
||||
WildMagic4/Wm4Query3TRational.h \
|
||||
WildMagic4/Wm4Query3TRational.inl \
|
||||
WildMagic4/Wm4RVector2.h \
|
||||
WildMagic4/Wm4RVector2.inl \
|
||||
WildMagic4/Wm4RVector3.h \
|
||||
WildMagic4/Wm4RVector3.inl \
|
||||
WildMagic4/Wm4Segment3.h \
|
||||
WildMagic4/Wm4Segment3.inl \
|
||||
WildMagic4/Wm4Sphere3.h \
|
||||
WildMagic4/Wm4Sphere3.inl \
|
||||
WildMagic4/Wm4Surface.cpp \
|
||||
WildMagic4/Wm4Surface.h \
|
||||
WildMagic4/Wm4System.cpp \
|
||||
WildMagic4/Wm4System.h \
|
||||
WildMagic4/Wm4System.inl \
|
||||
WildMagic4/Wm4THashSet.h \
|
||||
WildMagic4/Wm4THashSet.inl \
|
||||
WildMagic4/Wm4THashTable.h \
|
||||
WildMagic4/Wm4THashTable.inl \
|
||||
WildMagic4/Wm4TInteger.h \
|
||||
WildMagic4/Wm4TInteger.inl \
|
||||
WildMagic4/Wm4TMinHeap.h \
|
||||
WildMagic4/Wm4TMinHeap.inl \
|
||||
WildMagic4/Wm4TRVector.h \
|
||||
WildMagic4/Wm4TRVector.inl \
|
||||
WildMagic4/Wm4TRational.h \
|
||||
WildMagic4/Wm4TRational.inl \
|
||||
WildMagic4/Wm4TSmallUnorderedSet.h \
|
||||
WildMagic4/Wm4TSmallUnorderedSet.inl \
|
||||
WildMagic4/Wm4TStringHashTable.h \
|
||||
WildMagic4/Wm4TStringHashTable.inl \
|
||||
WildMagic4/Wm4TTuple.h \
|
||||
WildMagic4/Wm4TTuple.inl \
|
||||
WildMagic4/Wm4Triangle2.h \
|
||||
WildMagic4/Wm4Triangle2.inl \
|
||||
WildMagic4/Wm4Triangle3.h \
|
||||
WildMagic4/Wm4Triangle3.inl \
|
||||
WildMagic4/Wm4TriangleKey.h \
|
||||
WildMagic4/Wm4TriangleKey.inl \
|
||||
WildMagic4/Wm4TriangulateEC.cpp \
|
||||
WildMagic4/Wm4TriangulateEC.h \
|
||||
WildMagic4/Wm4UniqueVerticesTriangles.h \
|
||||
WildMagic4/Wm4UniqueVerticesTriangles.inl \
|
||||
WildMagic4/Wm4VEManifoldMesh.cpp \
|
||||
WildMagic4/Wm4VEManifoldMesh.h \
|
||||
WildMagic4/Wm4VEManifoldMesh.inl \
|
||||
WildMagic4/Wm4Vector2.cpp \
|
||||
WildMagic4/Wm4Vector2.h \
|
||||
WildMagic4/Wm4Vector2.inl \
|
||||
WildMagic4/Wm4Vector3.cpp \
|
||||
WildMagic4/Wm4Vector3.h \
|
||||
WildMagic4/Wm4Vector3.inl \
|
||||
WildMagic4/Wm4Vector4.cpp \
|
||||
WildMagic4/Wm4Vector4.h \
|
||||
WildMagic4/Wm4Vector4.inl \
|
||||
AppMeshPy.cpp \
|
||||
Doxygen.cpp \
|
||||
Facet.cpp \
|
||||
FacetPyImp.cpp \
|
||||
FeatureMeshCurvature.cpp \
|
||||
FeatureMeshExport.cpp \
|
||||
FeatureMeshDefects.cpp \
|
||||
FeatureMeshDefects.h \
|
||||
FeatureMeshImport.cpp \
|
||||
FeatureMeshSegmentByMesh.cpp \
|
||||
FeatureMeshSetOperations.cpp \
|
||||
FeatureMeshSolid.cpp \
|
||||
FeatureMeshTransform.cpp \
|
||||
FeatureMeshTransformDemolding.cpp \
|
||||
FeaturePythonPyImp.cpp \
|
||||
Mesh.cpp \
|
||||
MeshFeature.cpp \
|
||||
MeshFeaturePyImp.cpp \
|
||||
MeshPointPyImp.cpp \
|
||||
MeshProperties.cpp \
|
||||
MeshPyImp.cpp \
|
||||
Segment.cpp \
|
||||
PreCompiled.cpp \
|
||||
PreCompiled.h
|
||||
|
||||
nodist_include_HEADERS=\
|
||||
$(libMesh_la_BUILT)
|
||||
|
||||
include_HEADERS=\
|
||||
Facet.h \
|
||||
FeatureMeshCurvature.h \
|
||||
FeatureMeshExport.h \
|
||||
FeatureMeshImport.h \
|
||||
FeatureMeshSegmentByMesh.h \
|
||||
FeatureMeshSetOperations.h \
|
||||
FeatureMeshSolid.h \
|
||||
FeatureMeshTransform.h \
|
||||
FeatureMeshTransformDemolding.h \
|
||||
Mesh.h \
|
||||
MeshFeature.h \
|
||||
MeshPoint.h \
|
||||
MeshProperties.h \
|
||||
Segment.h
|
||||
|
||||
nobase_include_HEADERS = \
|
||||
Core/Algorithm.h \
|
||||
Core/Approximation.h \
|
||||
Core/Builder.h \
|
||||
Core/Definitions.h \
|
||||
Core/Degeneration.h \
|
||||
Core/Elements.h \
|
||||
Core/Evaluation.h \
|
||||
Core/Grid.h \
|
||||
Core/Helpers.h \
|
||||
Core/Info.h \
|
||||
Core/Iterator.h \
|
||||
Core/MeshKernel.h \
|
||||
Core/MeshIO.h \
|
||||
Core/Projection.h \
|
||||
Core/SetOperations.h \
|
||||
Core/Triangulation.h \
|
||||
Core/Tools.h \
|
||||
Core/TopoAlgorithm.h \
|
||||
Core/Visitor.h
|
||||
|
||||
%.cpp: %.xml $(top_srcdir)/src/Tools/generateTemplates/templateClassPyExport.py
|
||||
$(PYTHON) $(top_srcdir)/src/Tools/generate.py --outputPath $(@D) $<
|
||||
|
||||
|
||||
# the library search path.
|
||||
libMesh_la_LDFLAGS = -L../../../Base -L../../../App $(QT4_CORE_LIBS) $(all_libraries) $(GTS_LIBS) \
|
||||
-version-info @LIB_CURRENT@:@LIB_REVISION@:@LIB_AGE@
|
||||
libMesh_la_CPPFLAGS = -DMeshExport= -DEIGEN2_SUPPORT
|
||||
|
||||
libMesh_la_LIBADD = \
|
||||
@BOOST_FILESYSTEM_LIB@ @BOOST_REGEX_LIB@ @BOOST_SYSTEM_LIB@ \
|
||||
-l@PYTHON_LIB@ @ZIPIOS_LIB@ \
|
||||
-lxerces-c \
|
||||
-lFreeCADBase \
|
||||
-lFreeCADApp
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
# Loader of libMesh
|
||||
|
||||
Mesh_la_SOURCES=\
|
||||
AppMesh.cpp
|
||||
|
||||
# the library search path.
|
||||
Mesh_la_LDFLAGS = $(libMesh_la_LDFLAGS) -module -avoid-version
|
||||
Mesh_la_CPPFLAGS = $(libMesh_la_CPPFLAGS)
|
||||
|
||||
Mesh_la_LIBADD = \
|
||||
$(libMesh_la_LIBADD) \
|
||||
-lMesh
|
||||
|
||||
Mesh_la_DEPENDENCIES = libMesh.la
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
|
||||
# set the include path found by configure
|
||||
AM_CXXFLAGS = -I$(top_srcdir)/src/3rdParty -I$(top_srcdir)/src -I$(top_builddir)/src $(GTS_CFLAGS) \
|
||||
$(all_includes) -I$(EIGEN3_INC) $(QT4_CORE_CXXFLAGS)
|
||||
|
||||
includedir = @includedir@/Mod/Mesh/App
|
||||
libdir = $(prefix)/Mod/Mesh
|
||||
datadir = $(prefix)/Mod/Mesh
|
||||
data_DATA = MeshTestsApp.py
|
||||
|
||||
CLEANFILES = $(BUILT_SOURCES) $(libMesh_la_BUILT)
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(data_DATA) \
|
||||
WildMagic4/wildmagic4.dox \
|
||||
CMakeLists.txt \
|
||||
FacetPy.xml \
|
||||
FeaturePythonPy.xml \
|
||||
MeshFeaturePy.xml \
|
||||
MeshPointPy.xml \
|
||||
MeshPy.xml
|
||||
|
||||
|
|
@ -150,8 +150,10 @@ Base::BoundBox3d MeshObject::getBoundBox(void)const
|
|||
Base::BoundBox3f Bnd = _kernel.GetBoundBox();
|
||||
|
||||
Base::BoundBox3d Bnd2;
|
||||
if (Bnd.IsValid()) {
|
||||
for (int i =0 ;i<=7;i++)
|
||||
Bnd2.Add(transformToOutside(Bnd.CalcPoint(i)));
|
||||
}
|
||||
|
||||
return Bnd2;
|
||||
}
|
||||
|
|
|
@ -88,8 +88,7 @@ class PivyTestCases(unittest.TestCase):
|
|||
self.planarMesh.append( [-16.064457,-29.904951,16.090832] )
|
||||
planarMeshObject = Mesh.Mesh(self.planarMesh)
|
||||
|
||||
from pivy import coin, sogui; import FreeCADGui
|
||||
if not sys.modules.has_key("pivy.gui.soqt"): from pivy.gui import soqt
|
||||
from pivy import coin; import FreeCADGui
|
||||
Mesh.show(planarMeshObject)
|
||||
view=FreeCADGui.ActiveDocument.ActiveView.getViewer()
|
||||
rp=coin.SoRayPickAction(view.getSoRenderManager().getViewportRegion())
|
||||
|
@ -113,8 +112,7 @@ class PivyTestCases(unittest.TestCase):
|
|||
self.planarMesh.append( [-16.064457,-29.904951,16.090832] )
|
||||
planarMeshObject = Mesh.Mesh(self.planarMesh)
|
||||
|
||||
from pivy import coin, sogui; import FreeCADGui
|
||||
if not sys.modules.has_key("pivy.gui.soqt"): from pivy.gui import soqt
|
||||
from pivy import coin; import FreeCADGui
|
||||
Mesh.show(planarMeshObject)
|
||||
view=FreeCADGui.ActiveDocument.ActiveView
|
||||
pc=coin.SoGetPrimitiveCountAction()
|
||||
|
|
|
@ -1,179 +0,0 @@
|
|||
|
||||
lib_LTLIBRARIES=libMeshGui.la MeshGui.la
|
||||
|
||||
BUILT_SOURCES=\
|
||||
ui_DlgEvaluateMesh.h \
|
||||
ui_DlgRegularSolid.h \
|
||||
ui_DlgSettingsMeshView.h \
|
||||
ui_DlgSmoothing.h \
|
||||
ui_RemoveComponents.h \
|
||||
ui_Segmentation.h \
|
||||
moc_DlgEvaluateMeshImp.cpp \
|
||||
moc_DlgRegularSolidImp.cpp \
|
||||
moc_DlgSettingsMeshView.cpp \
|
||||
moc_DlgSmoothing.cpp \
|
||||
moc_MeshEditor.cpp \
|
||||
moc_PropertyEditorMesh.cpp \
|
||||
moc_RemoveComponents.cpp \
|
||||
qrc_Mesh.cpp
|
||||
|
||||
libMeshGui_la_SOURCES=\
|
||||
Command.cpp \
|
||||
DlgEvaluateMeshImp.cpp \
|
||||
DlgEvaluateMeshImp.h \
|
||||
DlgRegularSolidImp.cpp \
|
||||
DlgRegularSolidImp.h \
|
||||
DlgSettingsMeshView.cpp \
|
||||
DlgSettingsMeshView.h \
|
||||
DlgSmoothing.cpp \
|
||||
DlgSmoothing.h \
|
||||
Doxygen.cpp \
|
||||
MeshEditor.cpp \
|
||||
MeshEditor.h \
|
||||
PreCompiled.cpp \
|
||||
PreCompiled.h \
|
||||
PropertyEditorMesh.cpp \
|
||||
RemoveComponents.cpp \
|
||||
RemoveComponents.h \
|
||||
Segmentation.cpp \
|
||||
SoFCIndexedFaceSet.cpp \
|
||||
SoFCMeshObject.cpp \
|
||||
ViewProvider.cpp \
|
||||
ViewProviderPython.cpp \
|
||||
ViewProviderMeshFaceSet.cpp \
|
||||
ViewProviderCurvature.cpp \
|
||||
ViewProviderDefects.cpp \
|
||||
ViewProviderTransform.cpp \
|
||||
ViewProviderTransformDemolding.cpp \
|
||||
Workbench.cpp
|
||||
|
||||
include_HEADERS=\
|
||||
PropertyEditorMesh.h \
|
||||
Segmentation.h \
|
||||
SoFCIndexedFaceSet.h \
|
||||
SoFCMeshObject.h \
|
||||
ViewProvider.h \
|
||||
ViewProviderPython.h \
|
||||
ViewProviderMeshFaceSet.h \
|
||||
ViewProviderCurvature.h \
|
||||
ViewProviderDefects.h \
|
||||
ViewProviderTransform.h \
|
||||
ViewProviderTransformDemolding.h \
|
||||
Workbench.h
|
||||
|
||||
# the library search path.
|
||||
libMeshGui_la_LDFLAGS = -L../../../Base -L../../../App -L../../../Gui -L../App $(QT_LIBS) \
|
||||
$(sim_ac_coin_ldflags) $(sim_ac_coin_libs) $(sim_ac_soqt_ldflags) $(sim_ac_soqt_libs) \
|
||||
$(all_libraries) -version-info @LIB_CURRENT@:@LIB_REVISION@:@LIB_AGE@
|
||||
libMeshGui_la_CPPFLAGS = -DMeshExport= -DMeshGuiExport=
|
||||
|
||||
libMeshGui_la_LIBADD = \
|
||||
@BOOST_SIGNALS_LIB@ @BOOST_SYSTEM_LIB@ \
|
||||
@GL_LIBS@ @ZIPIOS_LIB@ \
|
||||
-lFreeCADBase \
|
||||
-lFreeCADApp \
|
||||
-lFreeCADGui \
|
||||
-lMesh
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
# Loader of libMeshGui
|
||||
|
||||
MeshGui_la_SOURCES=\
|
||||
AppMeshGui.cpp
|
||||
|
||||
# the library search path.
|
||||
MeshGui_la_LDFLAGS = $(libMeshGui_la_LDFLAGS) -module -avoid-version
|
||||
MeshGui_la_CPPFLAGS = $(libMeshGui_la_CPPFLAGS)
|
||||
|
||||
MeshGui_la_LIBADD = \
|
||||
$(libMeshGui_la_LIBADD) \
|
||||
-l@PYTHON_LIB@ \
|
||||
-lMeshGui
|
||||
|
||||
MeshGui_la_DEPENDENCIES = libMeshGui.la
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
|
||||
# rule for Qt MetaObject Compiler:
|
||||
moc_%.cpp: %.h
|
||||
$(QT_MOC) $< -o $(@F)
|
||||
|
||||
# rule for Qt MetaObject Compiler:
|
||||
%.moc: %.h
|
||||
$(QT_MOC) $< -o $(@F)
|
||||
|
||||
# rules for Qt User Interface Compiler:
|
||||
ui_%.h: %.ui
|
||||
$(QT_UIC) $< -o $(@F)
|
||||
|
||||
# rules for Qt Resource Compiler:
|
||||
qrc_%.cpp: Resources/%.qrc
|
||||
$(QT_RCC) -name $(*F) $< -o $(@F)
|
||||
|
||||
# set the include path found by configure
|
||||
AM_CXXFLAGS = -I$(top_srcdir)/src -I$(top_builddir)/src $(all_includes) $(QT_CXXFLAGS) $(GTS_CFLAGS) \
|
||||
-I$(sim_ac_coin_includedir) -I$(sim_ac_soqt_includedir)
|
||||
|
||||
|
||||
includedir = @includedir@/Mod/Mesh/Gui
|
||||
libdir = $(prefix)/Mod/Mesh
|
||||
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
||||
EXTRA_DIST = \
|
||||
Resources/icons/mesh_cut.svg \
|
||||
Resources/icons/mesh_boundary.svg \
|
||||
Resources/icons/Tree_Mesh.svg \
|
||||
CMakeLists.txt \
|
||||
DlgEvaluateMesh.ui \
|
||||
DlgRegularSolid.ui \
|
||||
DlgSettingsMeshView.ui \
|
||||
DlgSmoothing.ui \
|
||||
RemoveComponents.ui \
|
||||
Segmentation.ui \
|
||||
Resources/Mesh.qrc \
|
||||
Resources/translations/Mesh_af.qm \
|
||||
Resources/translations/Mesh_af.ts \
|
||||
Resources/translations/Mesh_de.qm \
|
||||
Resources/translations/Mesh_de.ts \
|
||||
Resources/translations/Mesh_es-ES.qm \
|
||||
Resources/translations/Mesh_es-ES.ts \
|
||||
Resources/translations/Mesh_fi.qm \
|
||||
Resources/translations/Mesh_fi.ts \
|
||||
Resources/translations/Mesh_fr.qm \
|
||||
Resources/translations/Mesh_fr.ts \
|
||||
Resources/translations/Mesh_hr.qm \
|
||||
Resources/translations/Mesh_hr.ts \
|
||||
Resources/translations/Mesh_it.qm \
|
||||
Resources/translations/Mesh_it.ts \
|
||||
Resources/translations/Mesh_nl.qm \
|
||||
Resources/translations/Mesh_nl.ts \
|
||||
Resources/translations/Mesh_no.qm \
|
||||
Resources/translations/Mesh_no.ts \
|
||||
Resources/translations/Mesh_pl.qm \
|
||||
Resources/translations/Mesh_pl.ts \
|
||||
Resources/translations/Mesh_pt-BR.qm \
|
||||
Resources/translations/Mesh_pt-BR.ts \
|
||||
Resources/translations/Mesh_ru.qm \
|
||||
Resources/translations/Mesh_ru.ts \
|
||||
Resources/translations/Mesh_sv-SE.qm \
|
||||
Resources/translations/Mesh_sv-SE.ts \
|
||||
Resources/translations/Mesh_uk.qm \
|
||||
Resources/translations/Mesh_uk.ts \
|
||||
Resources/translations/Mesh_zh-CN.qm \
|
||||
Resources/translations/Mesh_zh-CN.ts \
|
||||
Resources/translations/Mesh_zh-TW.qm \
|
||||
Resources/translations/Mesh_zh-TW.ts \
|
||||
Resources/translations/Mesh_ja.qm \
|
||||
Resources/translations/Mesh_ja.ts \
|
||||
Resources/translations/Mesh_ro.qm \
|
||||
Resources/translations/Mesh_ro.ts \
|
||||
Resources/translations/Mesh_tr.qm \
|
||||
Resources/translations/Mesh_tr.ts \
|
||||
Resources/translations/Mesh_hu.qm \
|
||||
Resources/translations/Mesh_hu.ts \
|
||||
Resources/translations/Mesh_sk.qm \
|
||||
Resources/translations/Mesh_sk.ts \
|
||||
Resources/translations/Mesh_cs.qm \
|
||||
Resources/translations/Mesh_cs.ts \
|
||||
images.h
|
|
@ -1,11 +0,0 @@
|
|||
SUBDIRS=App Gui
|
||||
|
||||
# Change data dir from default ($(prefix)/share) to $(prefix)
|
||||
datadir = $(prefix)/Mod/Mesh
|
||||
|
||||
data_DATA = Init.py InitGui.py BuildRegularGeoms.py
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(data_DATA) \
|
||||
CMakeLists.txt \
|
||||
mesh.dox
|
|
@ -1,80 +0,0 @@
|
|||
|
||||
lib_LTLIBRARIES=libMeshPart.la MeshPart.la
|
||||
|
||||
libMeshPart_la_SOURCES=\
|
||||
AppMeshPartPy.cpp \
|
||||
CurveProjector.cpp \
|
||||
CurveProjector.h \
|
||||
MeshAlgos.cpp \
|
||||
MeshAlgos.h \
|
||||
Mesher.cpp \
|
||||
Mesher.h \
|
||||
PreCompiled.cpp \
|
||||
PreCompiled.h
|
||||
|
||||
|
||||
# the library search path.
|
||||
libMeshPart_la_LDFLAGS = -L../../../Base -L../../../App -L../../../Mod/Part/App \
|
||||
-L../../../Mod/Mesh/App -L$(OCC_LIB) $(all_libraries) \
|
||||
-version-info @LIB_CURRENT@:@LIB_REVISION@:@LIB_AGE@
|
||||
|
||||
libMeshPart_la_CPPFLAGS = -DMeshPartAppExport=
|
||||
|
||||
libMeshPart_la_LIBADD = \
|
||||
@BOOST_REGEX_LIB@ @BOOST_SYSTEM_LIB@ \
|
||||
-l@PYTHON_LIB@ \
|
||||
-lxerces-c \
|
||||
-lFreeCADBase \
|
||||
-lFreeCADApp \
|
||||
-lPart \
|
||||
-lMesh \
|
||||
-lTKernel \
|
||||
-lTKG2d \
|
||||
-lTKG3d \
|
||||
-lTKMath \
|
||||
-lTKXSBase \
|
||||
-lTKBRep \
|
||||
-lTKTopAlgo \
|
||||
-lTKGeomAlgo \
|
||||
-lTKGeomBase
|
||||
|
||||
#if HAVE_SALOMESMESH
|
||||
SMESH_LIBRARY = @top_builddir@/src/3rdParty/salomesmesh
|
||||
libMeshPart_la_LDFLAGS += -L$(SMESH_LIBRARY)
|
||||
libMeshPart_la_LIBADD += \
|
||||
-lSMESH \
|
||||
-lSMDS \
|
||||
-lStdMeshers
|
||||
#endif
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
# Loader of libMeshPart
|
||||
|
||||
MeshPart_la_SOURCES=\
|
||||
AppMeshPart.cpp
|
||||
|
||||
# the library search path.
|
||||
MeshPart_la_LDFLAGS = $(libMeshPart_la_LDFLAGS) -module -avoid-version
|
||||
MeshPart_la_CPPFLAGS = $(libMeshPart_la_CPPFLAGS)
|
||||
|
||||
MeshPart_la_LIBADD = \
|
||||
$(libMeshPart_la_LIBADD) \
|
||||
-lMeshPart
|
||||
|
||||
MeshPart_la_DEPENDENCIES = libMeshPart.la
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
|
||||
# set the include path found by configure
|
||||
AM_CXXFLAGS = -I$(top_srcdir)/src -I$(top_builddir)/src $(all_includes) -I$(OCC_INC)
|
||||
|
||||
#if HAVE_SALOMESMESH
|
||||
SMESH_INCLUDE = @top_srcdir@/src/3rdParty/salomesmesh/inc
|
||||
AM_CXXFLAGS += -I$(SMESH_INCLUDE) -DHAVE_SMESH
|
||||
#endif
|
||||
|
||||
|
||||
libdir = $(prefix)/Mod/MeshPart
|
||||
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt
|
|
@ -1,95 +0,0 @@
|
|||
SUBDIRS=Resources
|
||||
|
||||
lib_LTLIBRARIES=libMeshPartGui.la MeshPartGui.la
|
||||
|
||||
BUILT_SOURCES=\
|
||||
moc_Tessellation.cpp \
|
||||
ui_Tessellation.h
|
||||
|
||||
libMeshPartGui_la_UI=\
|
||||
Tessellation.ui
|
||||
|
||||
libMeshPartGui_la_SOURCES=\
|
||||
AppMeshPartGuiPy.cpp \
|
||||
Command.cpp \
|
||||
Tessellation.cpp \
|
||||
Tessellation.h \
|
||||
PreCompiled.cpp \
|
||||
PreCompiled.h \
|
||||
Workbench.cpp \
|
||||
Workbench.h
|
||||
|
||||
# the library search path.
|
||||
libMeshPartGui_la_LDFLAGS = -L../../../Base -L../../../App -L../../../Gui -L../App \
|
||||
-L../../Mesh/App -L../../Part/App \
|
||||
-L$(OCC_LIB) $(QT_LIBS) $(GL_LIBS) $(all_libraries) \
|
||||
-version-info @LIB_CURRENT@:@LIB_REVISION@:@LIB_AGE@
|
||||
|
||||
libMeshPartGui_la_CPPFLAGS = -DMeshPartAppExport= -DMeshPartGuiExport=
|
||||
|
||||
libMeshPartGui_la_LIBADD = \
|
||||
@BOOST_SYSTEM_LIB@ \
|
||||
-l@PYTHON_LIB@ \
|
||||
-lxerces-c \
|
||||
-lFreeCADBase \
|
||||
-lFreeCADApp \
|
||||
-lFreeCADGui \
|
||||
-lMesh \
|
||||
-lPart \
|
||||
-lMeshPart \
|
||||
-lTKernel \
|
||||
-lTKMath \
|
||||
-lTKXSBase \
|
||||
-lTKBRep \
|
||||
-lTKTopAlgo \
|
||||
-lTKGeomAlgo \
|
||||
-lTKGeomBase
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
# Loader of libMeshPartGui
|
||||
|
||||
MeshPartGui_la_SOURCES=\
|
||||
AppMeshPartGui.cpp
|
||||
|
||||
# the library search path.
|
||||
MeshPartGui_la_LDFLAGS = $(libMeshPartGui_la_LDFLAGS) -module -avoid-version
|
||||
MeshPartGui_la_CPPFLAGS = $(libMeshPartGui_la_CPPFLAGS)
|
||||
|
||||
MeshPartGui_la_LIBADD = \
|
||||
$(libMeshPartGui_la_LIBADD) \
|
||||
Resources/libResources.la \
|
||||
-lMeshPartGui
|
||||
|
||||
MeshPartGui_la_DEPENDENCIES = libMeshPartGui.la
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
|
||||
# rule for Qt MetaObject Compiler:
|
||||
moc_%.cpp: %.h
|
||||
$(QT_MOC) $< -o $(@F)
|
||||
|
||||
# rule for Qt MetaObject Compiler:
|
||||
%.moc: %.h
|
||||
$(QT_MOC) $< -o $(@F)
|
||||
|
||||
# rules for Qt User Interface Compiler:
|
||||
ui_%.h: %.ui
|
||||
$(QT_UIC) $< -o $(@F)
|
||||
|
||||
# rules for Qt Resource Compiler:
|
||||
qrc_%.cpp: %.qrc
|
||||
$(QT_RCC) -name $(*F) $< -o $(@F)
|
||||
|
||||
# set the include path found by configure
|
||||
AM_CXXFLAGS = -I$(top_srcdir)/src -I$(top_builddir)/src $(all_includes) \
|
||||
-I$(OCC_INC) $(QT_CXXFLAGS)
|
||||
|
||||
|
||||
libdir = $(prefix)/Mod/MeshPart
|
||||
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(libMeshPartGui_la_UI) \
|
||||
CMakeLists.txt
|
||||
|
|
@ -1,74 +0,0 @@
|
|||
noinst_LTLIBRARIES=libResources.la
|
||||
|
||||
BUILT_SOURCES=\
|
||||
qrc_MeshPart.cpp
|
||||
|
||||
nodist_libResources_la_SOURCES=\
|
||||
qrc_MeshPart.cpp
|
||||
|
||||
EXTRA_DIST = \
|
||||
icons/actions/MeshFace.svg \
|
||||
translations/MeshPart_af.qm \
|
||||
translations/MeshPart_af.ts \
|
||||
translations/MeshPart_de.qm \
|
||||
translations/MeshPart_de.ts \
|
||||
translations/MeshPart_es-ES.qm \
|
||||
translations/MeshPart_es-ES.ts \
|
||||
translations/MeshPart_fi.qm \
|
||||
translations/MeshPart_fi.ts \
|
||||
translations/MeshPart_fr.qm \
|
||||
translations/MeshPart_fr.ts \
|
||||
translations/MeshPart_hr.qm \
|
||||
translations/MeshPart_hr.ts \
|
||||
translations/MeshPart_it.qm \
|
||||
translations/MeshPart_it.ts \
|
||||
translations/MeshPart_nl.qm \
|
||||
translations/MeshPart_nl.ts \
|
||||
translations/MeshPart_no.qm \
|
||||
translations/MeshPart_no.ts \
|
||||
translations/MeshPart_pl.qm \
|
||||
translations/MeshPart_pl.ts \
|
||||
translations/MeshPart_pt-BR.qm \
|
||||
translations/MeshPart_pt-BR.ts \
|
||||
translations/MeshPart_ru.qm \
|
||||
translations/MeshPart_ru.ts \
|
||||
translations/MeshPart_sv-SE.qm \
|
||||
translations/MeshPart_sv-SE.ts \
|
||||
translations/MeshPart_uk.qm \
|
||||
translations/MeshPart_uk.ts \
|
||||
translations/MeshPart_zh-CN.qm \
|
||||
translations/MeshPart_zh-CN.ts \
|
||||
translations/MeshPart_zh-TW.qm \
|
||||
translations/MeshPart_zh-TW.ts \
|
||||
translations/MeshPart_hu.qm \
|
||||
translations/MeshPart_hu.ts \
|
||||
translations/MeshPart_ja.qm \
|
||||
translations/MeshPart_ja.ts \
|
||||
translations/MeshPart_cs.qm \
|
||||
translations/MeshPart_cs.ts \
|
||||
translations/MeshPart_sk.qm \
|
||||
translations/MeshPart_sk.ts \
|
||||
translations/MeshPart_ro.qm \
|
||||
translations/MeshPart_ro.ts \
|
||||
translations/MeshPart_tr.qm \
|
||||
translations/MeshPart_tr.ts \
|
||||
MeshPart.qrc
|
||||
|
||||
|
||||
# rule for Qt MetaObject Compiler:
|
||||
moc_%.cpp: %.h
|
||||
$(QT_MOC) $< -o $(@F)
|
||||
|
||||
# rule for Qt MetaObject Compiler:
|
||||
%.moc: %.h
|
||||
$(QT_MOC) $< -o $(@F)
|
||||
|
||||
# rules for Qt Resource Compiler:
|
||||
qrc_%.cpp: %.qrc
|
||||
$(QT_RCC) -name $(*F) $< -o $(@F)
|
||||
|
||||
|
||||
# set the include path found by configure
|
||||
AM_CXXFLAGS = -I$(top_srcdir)/src -I$(top_builddir)/src -I$(srcdir)/.. $(all_includes) $(QT_CXXFLAGS)
|
||||
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
|
@ -1,11 +0,0 @@
|
|||
SUBDIRS=App Gui
|
||||
|
||||
# Change data dir from default ($(prefix)/share) to $(prefix)
|
||||
datadir = $(prefix)/Mod/MeshPart
|
||||
|
||||
data_DATA = Init.py InitGui.py
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(data_DATA) \
|
||||
CMakeLists.txt \
|
||||
meshpart.dox
|
|
@ -1,31 +0,0 @@
|
|||
#SUBDIRS=App Gui
|
||||
|
||||
# Change data dir from default ($(prefix)/share) to $(prefix)
|
||||
datadir = $(prefix)/Mod/OpenSCAD
|
||||
data_DATA = \
|
||||
Init.py InitGui.py \
|
||||
OpenSCAD_rc.py \
|
||||
OpenSCAD2Dgeom.py \
|
||||
OpenSCADFeatures.py \
|
||||
OpenSCADUtils.py \
|
||||
OpenSCADCommands.py \
|
||||
exportCSG.py \
|
||||
importCSG.py \
|
||||
tokrules.py \
|
||||
colorcodeshapes.py \
|
||||
expandplacements.py \
|
||||
replaceobj.py
|
||||
|
||||
nobase_data_DATA = \
|
||||
ply/lex.py \
|
||||
ply/README \
|
||||
ply/yacc.py \
|
||||
ply/__init__.py
|
||||
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(data_DATA) $(nobase_data_DATA) \
|
||||
CMakeLists.txt \
|
||||
OpenSCAD.dox \
|
||||
exportVersions.txt \
|
||||
importVersions.txt
|
|
@ -401,7 +401,6 @@ def p_not_supported(p):
|
|||
not_supported : glide LPAREN keywordargument_list RPAREN OBRACE block_list EBRACE
|
||||
| offset LPAREN keywordargument_list RPAREN OBRACE block_list EBRACE
|
||||
| resize LPAREN keywordargument_list RPAREN OBRACE block_list EBRACE
|
||||
| cut LPAREN keywordargument_list RPAREN OBRACE block_list EBRACE
|
||||
| subdiv LPAREN keywordargument_list RPAREN OBRACE block_list EBRACE
|
||||
'''
|
||||
if gui and not FreeCAD.ParamGet("User parameter:BaseApp/Preferences/Mod/OpenSCAD").\
|
||||
|
@ -1085,7 +1084,32 @@ def p_polyhedron_action(p) :
|
|||
def p_projection_action(p) :
|
||||
'projection_action : projection LPAREN keywordargument_list RPAREN OBRACE block_list EBRACE'
|
||||
if printverbose: print 'Projection'
|
||||
if p[3]['cut']=='true' :
|
||||
planedim=1e9 # large but finite
|
||||
#inifinite planes look bad in the GUI
|
||||
planename='xy_plane_used_for_project_cut'
|
||||
obj=doc.addObject('Part::MultiCommon','projection_cut')
|
||||
plane = doc.getObject(planename)
|
||||
if not plane:
|
||||
plane=doc.addObject("Part::Plane",planename)
|
||||
plane.Length=planedim*2
|
||||
plane.Width=planedim*2
|
||||
plane.Placement = FreeCAD.Placement(FreeCAD.Vector(\
|
||||
-planedim,-planedim,0),FreeCAD.Rotation())
|
||||
if gui:
|
||||
plane.ViewObject.hide()
|
||||
if (len(p[6]) > 1):
|
||||
subobj = [fuse(p[6],"projection_cut_implicit_group")]
|
||||
else:
|
||||
subobj = p[6]
|
||||
obj.Shapes = [plane]+subobj
|
||||
if gui:
|
||||
subobj[0].ViewObject.hide()
|
||||
p[0] = [obj]
|
||||
else: # cut == 'false' => true projection
|
||||
if gui and not FreeCAD.ParamGet("User parameter:BaseApp/Preferences/Mod/OpenSCAD").\
|
||||
GetBool('usePlaceholderForUnsupported'):
|
||||
from PySide import QtGui
|
||||
QtGui.QMessageBox.critical(None, unicode(translate('OpenSCAD',"Projection Not yet Coded waiting for Peter Li")),unicode(translate('OpenSCAD'," Press OK")))
|
||||
|
||||
QtGui.QMessageBox.critical(None, unicode(translate('OpenSCAD',"Unsupported Function"))+" : "+p[1],unicode(translate('OpenSCAD',"Press OK")))
|
||||
else:
|
||||
p[0] = [placeholder(p[1],p[6],p[3])]
|
||||
|
|
|
@ -57,7 +57,6 @@ reserved = (
|
|||
'projection',
|
||||
'import',
|
||||
'color',
|
||||
'cut',
|
||||
'offset',
|
||||
'resize',
|
||||
)
|
||||
|
|
|
@ -1,305 +0,0 @@
|
|||
|
||||
lib_LTLIBRARIES=libPart.la Part.la
|
||||
|
||||
BUILT_SOURCES=\
|
||||
ArcPy.cpp \
|
||||
ArcOfCirclePy.cpp \
|
||||
BRepOffsetAPI_MakePipeShellPy.cpp \
|
||||
CirclePy.cpp \
|
||||
EllipsePy.cpp \
|
||||
HyperbolaPy.cpp \
|
||||
ParabolaPy.cpp \
|
||||
OffsetCurvePy.cpp \
|
||||
GeometryPy.cpp \
|
||||
GeometryCurvePy.cpp \
|
||||
GeometrySurfacePy.cpp \
|
||||
LinePy.cpp \
|
||||
PointPy.cpp \
|
||||
BezierCurvePy.cpp \
|
||||
BSplineCurvePy.cpp \
|
||||
PlanePy.cpp \
|
||||
ConePy.cpp \
|
||||
CylinderPy.cpp \
|
||||
SpherePy.cpp \
|
||||
ToroidPy.cpp \
|
||||
BezierSurfacePy.cpp \
|
||||
BSplineSurfacePy.cpp \
|
||||
OffsetSurfacePy.cpp \
|
||||
RectangularTrimmedSurfacePy.cpp \
|
||||
SurfaceOfExtrusionPy.cpp \
|
||||
SurfaceOfRevolutionPy.cpp \
|
||||
PartFeaturePy.cpp \
|
||||
FeaturePythonPy.cpp \
|
||||
Part2DObjectPy.cpp \
|
||||
TopoShapeCompoundPy.cpp \
|
||||
TopoShapeCompSolidPy.cpp \
|
||||
TopoShapeEdgePy.cpp \
|
||||
TopoShapeFacePy.cpp \
|
||||
TopoShapeShellPy.cpp \
|
||||
TopoShapeSolidPy.cpp \
|
||||
TopoShapeVertexPy.cpp \
|
||||
TopoShapeWirePy.cpp \
|
||||
TopoShapePy.cpp
|
||||
|
||||
libPart_la_BUILT=\
|
||||
ArcPy.h \
|
||||
ArcOfCirclePy.h \
|
||||
BRepOffsetAPI_MakePipeShellPy.h \
|
||||
CirclePy.h \
|
||||
EllipsePy.h \
|
||||
HyperbolaPy.h \
|
||||
ParabolaPy.h \
|
||||
OffsetCurvePy.h \
|
||||
GeometryPy.h \
|
||||
GeometryCurvePy.h \
|
||||
GeometrySurfacePy.h \
|
||||
LinePy.h \
|
||||
PointPy.h \
|
||||
BezierCurvePy.h \
|
||||
BSplineCurvePy.h \
|
||||
PlanePy.h \
|
||||
ConePy.h \
|
||||
CylinderPy.h \
|
||||
SpherePy.h \
|
||||
ToroidPy.h \
|
||||
BezierSurfacePy.h \
|
||||
BSplineSurfacePy.h \
|
||||
OffsetSurfacePy.h \
|
||||
RectangularTrimmedSurfacePy.h \
|
||||
SurfaceOfExtrusionPy.h \
|
||||
SurfaceOfRevolutionPy.h \
|
||||
PartFeaturePy.h \
|
||||
FeaturePythonPy.h \
|
||||
Part2DObjectPy.h \
|
||||
TopoShapeCompoundPy.h \
|
||||
TopoShapeCompSolidPy.h \
|
||||
TopoShapeEdgePy.h \
|
||||
TopoShapeFacePy.h \
|
||||
TopoShapeShellPy.h \
|
||||
TopoShapeSolidPy.h \
|
||||
TopoShapeVertexPy.h \
|
||||
TopoShapeWirePy.h \
|
||||
TopoShapePy.h
|
||||
|
||||
libPart_la_SOURCES=\
|
||||
AppPartPy.cpp \
|
||||
ArcPyImp.cpp \
|
||||
ArcOfCirclePyImp.cpp \
|
||||
BRepOffsetAPI_MakePipeShellPyImp.cpp \
|
||||
CirclePyImp.cpp \
|
||||
CrossSection.cpp \
|
||||
EllipsePyImp.cpp \
|
||||
HyperbolaPyImp.cpp \
|
||||
ParabolaPyImp.cpp \
|
||||
OffsetCurvePyImp.cpp \
|
||||
GeometryPyImp.cpp \
|
||||
GeometryCurvePyImp.cpp \
|
||||
GeometrySurfacePyImp.cpp \
|
||||
LinePyImp.cpp \
|
||||
PointPyImp.cpp \
|
||||
BezierCurvePyImp.cpp \
|
||||
BSplineCurvePyImp.cpp \
|
||||
PlanePyImp.cpp \
|
||||
ConePyImp.cpp \
|
||||
CylinderPyImp.cpp \
|
||||
SpherePyImp.cpp \
|
||||
ToroidPyImp.cpp \
|
||||
BezierSurfacePyImp.cpp \
|
||||
BSplineSurfacePyImp.cpp \
|
||||
OffsetSurfacePyImp.cpp \
|
||||
RectangularTrimmedSurfacePyImp.cpp \
|
||||
SurfaceOfExtrusionPyImp.cpp \
|
||||
SurfaceOfRevolutionPyImp.cpp \
|
||||
edgecluster.cpp \
|
||||
FeaturePartBoolean.cpp \
|
||||
FeaturePartBox.cpp \
|
||||
FeaturePartCircle.cpp \
|
||||
FeaturePartCurveNet.cpp \
|
||||
FeaturePartCommon.cpp \
|
||||
FeaturePartCut.cpp \
|
||||
FeaturePartFuse.cpp \
|
||||
FeaturePartImportBrep.cpp \
|
||||
FeaturePartImportIges.cpp \
|
||||
FeaturePartImportStep.cpp \
|
||||
FeaturePartPolygon.cpp \
|
||||
FeaturePartSection.cpp \
|
||||
FeatureChamfer.cpp \
|
||||
FeatureExtrusion.cpp \
|
||||
FeatureFillet.cpp \
|
||||
FeatureGeometrySet.cpp \
|
||||
FeatureRevolution.cpp \
|
||||
FeatureMirroring.cpp \
|
||||
PartFeatures.cpp \
|
||||
Geometry.cpp \
|
||||
ImportIges.cpp \
|
||||
ImportStep.cpp \
|
||||
modelRefine.cpp \
|
||||
CustomFeature.cpp \
|
||||
PartFeature.cpp \
|
||||
PartFeatureReference.cpp \
|
||||
PartFeaturePyImp.cpp \
|
||||
FeaturePythonPyImp.cpp \
|
||||
Part2DObject.cpp \
|
||||
Part2DObjectPyImp.cpp \
|
||||
PreCompiled.cpp \
|
||||
PreCompiled.h \
|
||||
PrimitiveFeature.cpp \
|
||||
ProgressIndicator.cpp \
|
||||
PropertyGeometryList.cpp \
|
||||
PropertyTopoShape.cpp \
|
||||
TopoShape.cpp \
|
||||
TopoShapeCompoundPyImp.cpp \
|
||||
TopoShapeCompSolidPyImp.cpp \
|
||||
TopoShapeEdgePyImp.cpp \
|
||||
TopoShapeFacePyImp.cpp \
|
||||
TopoShapeShellPyImp.cpp \
|
||||
TopoShapeSolidPyImp.cpp \
|
||||
TopoShapeVertexPyImp.cpp \
|
||||
TopoShapeWirePyImp.cpp \
|
||||
TopoShapePyImp.cpp
|
||||
|
||||
nodist_include_HEADERS=\
|
||||
$(libPart_la_BUILT)
|
||||
|
||||
include_HEADERS=\
|
||||
CrossSection.h \
|
||||
edgecluster.h \
|
||||
FeaturePartBoolean.h \
|
||||
FeaturePartBox.h \
|
||||
FeaturePartCircle.h \
|
||||
FeaturePartCurveNet.h \
|
||||
FeaturePartCommon.h \
|
||||
FeaturePartCut.h \
|
||||
FeaturePartFuse.h \
|
||||
FeaturePartImportBrep.h \
|
||||
FeaturePartImportIges.h \
|
||||
FeaturePartImportStep.h \
|
||||
FeaturePartPolygon.h \
|
||||
FeaturePartSection.h \
|
||||
FeatureChamfer.h \
|
||||
FeatureExtrusion.h \
|
||||
FeatureFillet.h \
|
||||
FeatureGeometrySet.h \
|
||||
FeatureRevolution.h \
|
||||
FeatureMirroring.h \
|
||||
PartFeatures.h \
|
||||
Geometry.h \
|
||||
ImportIges.h \
|
||||
ImportStep.h \
|
||||
modelRefine.h \
|
||||
PartFeature.h \
|
||||
PartFeatureReference.h \
|
||||
CustomFeature.h \
|
||||
Part2DObject.h \
|
||||
PrimitiveFeature.h \
|
||||
ProgressIndicator.h \
|
||||
PropertyGeometryList.h \
|
||||
PropertyTopoShape.h \
|
||||
Tools.h \
|
||||
TopoShape.h
|
||||
|
||||
|
||||
# the library search path.
|
||||
libPart_la_LDFLAGS = -L../../../Base -L../../../App -L/usr/X11R6/lib -L$(OCC_LIB) $(all_libraries) \
|
||||
-version-info @LIB_CURRENT@:@LIB_REVISION@:@LIB_AGE@
|
||||
libPart_la_CPPFLAGS = -DPartExport=
|
||||
|
||||
libPart_la_LIBADD = \
|
||||
@BOOST_FILESYSTEM_LIB@ @BOOST_SYSTEM_LIB@ \
|
||||
-l@PYTHON_LIB@ \
|
||||
-lxerces-c \
|
||||
-lFreeCADBase \
|
||||
-lFreeCADApp \
|
||||
-lTKernel \
|
||||
-lTKFillet \
|
||||
-lTKG2d \
|
||||
-lTKG3d \
|
||||
-lTKMath \
|
||||
-lTKMesh \
|
||||
-lTKSTEP \
|
||||
-lTKSTEPAttr \
|
||||
-lTKSTEPBase \
|
||||
-lTKIGES \
|
||||
-lTKSTL \
|
||||
-lTKShHealing \
|
||||
-lTKXSBase \
|
||||
-lTKBool \
|
||||
-lTKBO \
|
||||
-lTKBRep \
|
||||
-lTKTopAlgo \
|
||||
-lTKGeomAlgo \
|
||||
-lTKGeomBase \
|
||||
-lTKOffset \
|
||||
-lTKPrim
|
||||
|
||||
%.cpp: %.xml $(top_srcdir)/src/Tools/generateTemplates/templateClassPyExport.py
|
||||
$(PYTHON) $(top_srcdir)/src/Tools/generate.py --outputPath $(@D) $<
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
# Loader of libPart
|
||||
|
||||
Part_la_SOURCES=\
|
||||
AppPart.cpp
|
||||
|
||||
# the library search path.
|
||||
Part_la_LDFLAGS = $(libPart_la_LDFLAGS) -module -avoid-version
|
||||
Part_la_CPPFLAGS = $(libPart_la_CPPFLAGS)
|
||||
|
||||
Part_la_LIBADD = \
|
||||
$(libPart_la_LIBADD) \
|
||||
-lPart
|
||||
|
||||
Part_la_DEPENDENCIES = libPart.la
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
|
||||
# set the include path found by configure
|
||||
AM_CXXFLAGS = -I$(top_srcdir)/src -I$(top_builddir)/src $(all_includes) -I$(OCC_INC)
|
||||
|
||||
|
||||
includedir = @includedir@/Mod/Part/App
|
||||
libdir = $(prefix)/Mod/Part
|
||||
|
||||
CLEANFILES = $(BUILT_SOURCES) $(libPart_la_BUILT)
|
||||
|
||||
EXTRA_DIST = \
|
||||
OpenCascadeAll.h \
|
||||
ArcPy.xml \
|
||||
ArcOfCirclePy.xml \
|
||||
BRepOffsetAPI_MakePipeShellPy.xml \
|
||||
CirclePy.xml \
|
||||
EllipsePy.xml \
|
||||
HyperbolaPy.xml \
|
||||
ParabolaPy.xml \
|
||||
OffsetCurvePy.xml \
|
||||
GeometryPy.xml \
|
||||
GeometryCurvePy.xml \
|
||||
GeometrySurfacePy.xml \
|
||||
LinePy.xml \
|
||||
PointPy.xml \
|
||||
BezierCurvePy.xml \
|
||||
BSplineCurvePy.xml \
|
||||
PlanePy.xml \
|
||||
ConePy.xml \
|
||||
CylinderPy.xml \
|
||||
SpherePy.xml \
|
||||
ToroidPy.xml \
|
||||
BezierSurfacePy.xml \
|
||||
BSplineSurfacePy.xml \
|
||||
OffsetSurfacePy.xml \
|
||||
RectangularTrimmedSurfacePy.xml \
|
||||
SurfaceOfExtrusionPy.xml \
|
||||
SurfaceOfRevolutionPy.xml \
|
||||
PartFeaturePy.xml \
|
||||
FeaturePythonPy.xml \
|
||||
Part2DObjectPy.xml \
|
||||
TopoShapePy.xml \
|
||||
TopoShapeCompSolidPy.xml \
|
||||
TopoShapeCompoundPy.xml \
|
||||
TopoShapeEdgePy.xml \
|
||||
TopoShapeFacePy.xml \
|
||||
TopoShapeShellPy.xml \
|
||||
TopoShapeSolidPy.xml \
|
||||
TopoShapeVertexPy.xml \
|
||||
TopoShapeWirePy.xml \
|
||||
CMakeLists.txt
|
|
@ -1,298 +0,0 @@
|
|||
|
||||
lib_LTLIBRARIES=libPartGui.la PartGui.la
|
||||
|
||||
BUILT_SOURCES=\
|
||||
ui_CrossSections.h \
|
||||
ui_DlgBooleanOperation.h \
|
||||
ui_DlgExtrusion.h \
|
||||
ui_DlgFilletEdges.h \
|
||||
ui_DlgRevolution.h \
|
||||
ui_DlgPartBox.h \
|
||||
ui_DlgPartCylinder.h \
|
||||
ui_DlgPartImportIges.h \
|
||||
ui_DlgPartImportStep.h \
|
||||
ui_DlgPrimitives.h \
|
||||
ui_Location.h \
|
||||
ui_DlgSettings3DViewPart.h \
|
||||
ui_DlgSettingsGeneral.h \
|
||||
ui_Mirroring.h \
|
||||
ui_TaskFaceColors.h \
|
||||
ui_TaskShapeBuilder.h \
|
||||
ui_TaskLoft.h \
|
||||
ui_TaskOffset.h \
|
||||
ui_TaskSweep.h \
|
||||
moc_CrossSections.cpp \
|
||||
moc_DlgBooleanOperation.cpp \
|
||||
moc_DlgExtrusion.cpp \
|
||||
moc_DlgFilletEdges.cpp \
|
||||
moc_DlgRevolution.cpp \
|
||||
moc_DlgPartBoxImp.cpp \
|
||||
moc_DlgPartCylinderImp.cpp \
|
||||
moc_DlgPartImportIgesImp.cpp \
|
||||
moc_DlgPartImportStepImp.cpp \
|
||||
moc_DlgPrimitives.cpp \
|
||||
moc_DlgSettings3DViewPartImp.cpp \
|
||||
moc_DlgSettingsGeneral.cpp \
|
||||
moc_Mirroring.cpp \
|
||||
moc_TaskCheckGeometry.cpp \
|
||||
moc_TaskFaceColors.cpp \
|
||||
moc_TaskShapeBuilder.cpp \
|
||||
moc_TaskLoft.cpp \
|
||||
moc_TaskOffset.cpp \
|
||||
moc_TaskSweep.cpp \
|
||||
moc_TaskThickness.cpp \
|
||||
qrc_Part.cpp
|
||||
|
||||
libPartGui_la_SOURCES=\
|
||||
Command.cpp \
|
||||
CommandSimple.cpp \
|
||||
CommandParametric.cpp \
|
||||
CrossSections.cpp \
|
||||
CrossSections.h \
|
||||
DlgBooleanOperation.cpp \
|
||||
DlgBooleanOperation.h \
|
||||
DlgExtrusion.cpp \
|
||||
DlgExtrusion.h \
|
||||
DlgFilletEdges.cpp \
|
||||
DlgFilletEdges.h \
|
||||
DlgRevolution.cpp \
|
||||
DlgRevolution.h \
|
||||
DlgPartBoxImp.cpp \
|
||||
DlgPartBoxImp.h \
|
||||
DlgPartCylinderImp.cpp \
|
||||
DlgPartCylinderImp.h \
|
||||
DlgPartImportIgesImp.cpp \
|
||||
DlgPartImportIgesImp.h \
|
||||
DlgPartImportStepImp.cpp \
|
||||
DlgPartImportStepImp.h \
|
||||
DlgPrimitives.cpp \
|
||||
DlgPrimitives.h \
|
||||
DlgSettings3DViewPartImp.cpp \
|
||||
DlgSettings3DViewPartImp.h \
|
||||
DlgSettingsGeneral.cpp \
|
||||
DlgSettingsGeneral.h \
|
||||
Mirroring.cpp \
|
||||
Mirroring.h \
|
||||
TaskCheckGeometry.cpp \
|
||||
TaskCheckGeometry.h \
|
||||
TaskFaceColors.cpp \
|
||||
TaskFaceColors.h \
|
||||
TaskShapeBuilder.cpp \
|
||||
TaskShapeBuilder.h \
|
||||
TaskLoft.cpp \
|
||||
TaskLoft.h \
|
||||
TaskOffset.cpp \
|
||||
TaskOffset.h \
|
||||
TaskSweep.cpp \
|
||||
TaskSweep.h \
|
||||
TaskThickness.cpp \
|
||||
TaskThickness.h \
|
||||
PreCompiled.cpp \
|
||||
PreCompiled.h \
|
||||
SoBrepShape.cpp \
|
||||
SoFCShapeObject.cpp \
|
||||
ViewProvider.cpp \
|
||||
ViewProviderExt.cpp \
|
||||
ViewProviderReference.cpp \
|
||||
ViewProviderBox.cpp \
|
||||
ViewProviderCurveNet.cpp \
|
||||
ViewProviderImport.cpp \
|
||||
ViewProviderExtrusion.cpp \
|
||||
ViewProviderMirror.cpp \
|
||||
ViewProvider2DObject.cpp \
|
||||
ViewProviderPython.cpp \
|
||||
ViewProviderBoolean.cpp \
|
||||
Workbench.cpp
|
||||
|
||||
include_HEADERS=\
|
||||
SoBrepShape.h \
|
||||
SoFCShapeObject.h \
|
||||
ViewProvider.h \
|
||||
ViewProviderExt.h \
|
||||
ViewProviderReference.h \
|
||||
ViewProviderBox.h \
|
||||
ViewProviderCurveNet.h \
|
||||
ViewProviderImport.h \
|
||||
ViewProviderExtrusion.h \
|
||||
ViewProviderMirror.h \
|
||||
ViewProvider2DObject.h \
|
||||
ViewProviderPython.h \
|
||||
ViewProviderBoolean.h \
|
||||
Workbench.h
|
||||
|
||||
# the library search path.
|
||||
libPartGui_la_LDFLAGS = -L../../../Base -L../../../App -L../../../Gui -L../App -L$(OCC_LIB) \
|
||||
$(sim_ac_coin_ldflags) $(sim_ac_coin_libs) $(sim_ac_soqt_ldflags) $(sim_ac_soqt_libs) \
|
||||
$(QT_LIBS) $(all_libraries) -version-info @LIB_CURRENT@:@LIB_REVISION@:@LIB_AGE@
|
||||
libPartGui_la_CPPFLAGS = -DPartExport= -DPartGuiExport=
|
||||
|
||||
libPartGui_la_LIBADD = \
|
||||
@BOOST_SIGNALS_LIB@ \
|
||||
@BOOST_SYSTEM_LIB@ \
|
||||
-lxerces-c \
|
||||
-l@PYTHON_LIB@ \
|
||||
-lFreeCADBase \
|
||||
-lFreeCADApp \
|
||||
-lFreeCADGui \
|
||||
-lTKernel \
|
||||
-lTKG2d \
|
||||
-lTKG3d \
|
||||
-lTKMath \
|
||||
-lTKSTEP \
|
||||
-lTKIGES \
|
||||
-lTKShHealing \
|
||||
-lTKXSBase \
|
||||
-lTKBool \
|
||||
-lTKBO \
|
||||
-lTKBRep \
|
||||
-lTKTopAlgo \
|
||||
-lTKGeomAlgo \
|
||||
-lTKGeomBase \
|
||||
-lTKPrim \
|
||||
-lTKMesh \
|
||||
-lPart
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
# Loader of libPartGui
|
||||
|
||||
PartGui_la_SOURCES=\
|
||||
AppPartGui.cpp
|
||||
|
||||
# the library search path.
|
||||
PartGui_la_LDFLAGS = $(libPartGui_la_LDFLAGS) -module -avoid-version
|
||||
PartGui_la_CPPFLAGS = $(libPartGui_la_CPPFLAGS)
|
||||
|
||||
PartGui_la_LIBADD = \
|
||||
$(libPartGui_la_LIBADD) \
|
||||
-lPartGui
|
||||
|
||||
PartGui_la_DEPENDENCIES = libPartGui.la
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
|
||||
# rule for Qt MetaObject Compiler:
|
||||
moc_%.cpp: %.h
|
||||
$(QT_MOC) $< -o $(@F)
|
||||
|
||||
# rule for Qt MetaObject Compiler:
|
||||
%.moc: %.h
|
||||
$(QT_MOC) $< -o $(@F)
|
||||
|
||||
# rules for Qt User Interface Compiler:
|
||||
ui_%.h: %.ui
|
||||
$(QT_UIC) $< -o $(@F)
|
||||
|
||||
# rules for Qt Resource Compiler:
|
||||
qrc_%.cpp: Resources/%.qrc
|
||||
$(QT_RCC) -name $(*F) $< -o $(@F)
|
||||
|
||||
# set the include path found by configure
|
||||
AM_CXXFLAGS = -I$(top_srcdir)/src -I$(top_builddir)/src $(all_includes) $(QT_CXXFLAGS) -I$(OCC_INC) \
|
||||
-I$(sim_ac_coin_includedir) -I$(sim_ac_soqt_includedir)
|
||||
|
||||
|
||||
includedir = @includedir@/Mod/Part/Gui
|
||||
libdir = $(prefix)/Mod/Part
|
||||
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
||||
EXTRA_DIST = \
|
||||
Resources/icons/Part_Cylinder.svg \
|
||||
Resources/icons/Part_Box.svg \
|
||||
Resources/icons/Part_Torus.svg \
|
||||
Resources/icons/Part_Cone.svg \
|
||||
Resources/icons/Part_Sphere.svg \
|
||||
Resources/icons/Part_Booleans.svg \
|
||||
Resources/icons/Part_Chamfer.svg \
|
||||
Resources/icons/Part_CheckGeometry.svg \
|
||||
Resources/icons/Part_Cut.svg \
|
||||
Resources/icons/Part_Common.svg \
|
||||
Resources/icons/Part_CreatePrimitives.png \
|
||||
Resources/icons/Part_CreatePrimitives.svg \
|
||||
Resources/icons/Part_Fuse.svg \
|
||||
Resources/icons/Part_CrossSections.svg \
|
||||
Resources/icons/Part_Section.svg \
|
||||
Resources/icons/Part_Extrude.svg \
|
||||
Resources/icons/Part_Fillet.svg \
|
||||
Resources/icons/Part_Revolve.svg \
|
||||
Resources/icons/Part_Import.svg \
|
||||
Resources/icons/Part_Loft.svg \
|
||||
Resources/icons/Part_Mirror.svg \
|
||||
Resources/icons/Part_MirrorPNG.png \
|
||||
Resources/icons/Part_Offset.svg \
|
||||
Resources/icons/Part_RuledSurface.svg \
|
||||
Resources/icons/Part_Shapebuilder.png \
|
||||
Resources/icons/Part_Shapebuilder.svg \
|
||||
Resources/icons/Part_ShapeInfo.svg \
|
||||
Resources/icons/Part_Sweep.svg \
|
||||
Resources/icons/Part_Thickness.svg \
|
||||
Resources/icons/Tree_Part.svg \
|
||||
Resources/icons/preferences-part_design.svg \
|
||||
Resources/icons/PartFeature.svg \
|
||||
Resources/icons/PartFeature.xpm \
|
||||
Resources/icons/PartFeatureImport.xpm \
|
||||
CrossSections.ui \
|
||||
DlgBooleanOperation.ui \
|
||||
DlgExtrusion.ui \
|
||||
DlgFilletEdges.ui \
|
||||
DlgRevolution.ui \
|
||||
DlgPartBox.ui \
|
||||
DlgPartCylinder.ui \
|
||||
DlgPartImportIges.ui \
|
||||
DlgPartImportStep.ui \
|
||||
DlgPrimitives.ui \
|
||||
Location.ui \
|
||||
DlgSettings3DViewPart.ui \
|
||||
DlgSettingsGeneral.ui \
|
||||
Mirroring.ui \
|
||||
TaskFaceColors.ui \
|
||||
TaskShapeBuilder.ui \
|
||||
TaskLoft.ui \
|
||||
TaskOffset.ui \
|
||||
TaskSweep.ui \
|
||||
Resources/Part.qrc \
|
||||
Resources/translations/Part_af.qm \
|
||||
Resources/translations/Part_af.ts \
|
||||
Resources/translations/Part_de.qm \
|
||||
Resources/translations/Part_de.ts \
|
||||
Resources/translations/Part_es-ES.qm \
|
||||
Resources/translations/Part_es-ES.ts \
|
||||
Resources/translations/Part_fi.qm \
|
||||
Resources/translations/Part_fi.ts \
|
||||
Resources/translations/Part_fr.qm \
|
||||
Resources/translations/Part_fr.ts \
|
||||
Resources/translations/Part_hr.qm \
|
||||
Resources/translations/Part_hr.ts \
|
||||
Resources/translations/Part_it.qm \
|
||||
Resources/translations/Part_it.ts \
|
||||
Resources/translations/Part_nl.qm \
|
||||
Resources/translations/Part_nl.ts \
|
||||
Resources/translations/Part_no.qm \
|
||||
Resources/translations/Part_no.ts \
|
||||
Resources/translations/Part_pl.qm \
|
||||
Resources/translations/Part_pl.ts \
|
||||
Resources/translations/Part_pt-BR.qm \
|
||||
Resources/translations/Part_pt-BR.ts \
|
||||
Resources/translations/Part_ru.qm \
|
||||
Resources/translations/Part_ru.ts \
|
||||
Resources/translations/Part_sv-SE.qm \
|
||||
Resources/translations/Part_sv-SE.ts \
|
||||
Resources/translations/Part_uk.qm \
|
||||
Resources/translations/Part_uk.ts \
|
||||
Resources/translations/Part_zh-CN.qm \
|
||||
Resources/translations/Part_zh-CN.ts \
|
||||
Resources/translations/Part_zh-TW.qm \
|
||||
Resources/translations/Part_zh-TW.ts \
|
||||
Resources/translations/Part_ro.qm \
|
||||
Resources/translations/Part_ro.ts \
|
||||
Resources/translations/Part_ja.qm \
|
||||
Resources/translations/Part_ja.ts \
|
||||
Resources/translations/Part_hu.qm \
|
||||
Resources/translations/Part_hu.ts \
|
||||
Resources/translations/Part_cs.qm \
|
||||
Resources/translations/Part_cs.ts \
|
||||
Resources/translations/Part_sk.qm \
|
||||
Resources/translations/Part_sk.ts \
|
||||
Resources/translations/Part_tr.qm \
|
||||
Resources/translations/Part_tr.ts \
|
||||
CMakeLists.txt
|
|
@ -1,11 +0,0 @@
|
|||
SUBDIRS=App Gui
|
||||
|
||||
# Change data dir from default ($(prefix)/share) to $(prefix)
|
||||
datadir = $(prefix)/Mod/Part
|
||||
|
||||
data_DATA = Init.py InitGui.py TestPartApp.py TestPartGui.py MakeBottle.py
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(data_DATA) \
|
||||
CMakeLists.txt \
|
||||
part.dox
|
|
@ -1,106 +0,0 @@
|
|||
|
||||
lib_LTLIBRARIES=libPartDesign.la PartDesign.la
|
||||
|
||||
libPartDesign_la_SOURCES=\
|
||||
AppPartDesignPy.cpp \
|
||||
Feature.cpp \
|
||||
Feature.h \
|
||||
FeatureFace.cpp \
|
||||
FeatureFace.h \
|
||||
FeatureFillet.cpp \
|
||||
FeatureFillet.h \
|
||||
FeaturePad.cpp \
|
||||
FeaturePad.h \
|
||||
FeaturePocket.cpp \
|
||||
FeaturePocket.h \
|
||||
FeatureChamfer.cpp \
|
||||
FeatureChamfer.h \
|
||||
FeatureDraft.cpp \
|
||||
FeatureDraft.h \
|
||||
FeatureDressUp.cpp \
|
||||
FeatureDressUp.h \
|
||||
FeatureGroove.cpp \
|
||||
FeatureGroove.h \
|
||||
Body.cpp \
|
||||
Body.h \
|
||||
FeatureLinearPattern.cpp \
|
||||
FeatureLinearPattern.h \
|
||||
FeatureMirrored.cpp \
|
||||
FeatureMirrored.h \
|
||||
FeatureMultiTransform.cpp \
|
||||
FeatureMultiTransform.h \
|
||||
FeaturePolarPattern.cpp \
|
||||
FeaturePolarPattern.h \
|
||||
FeatureScaled.cpp \
|
||||
FeatureScaled.h \
|
||||
FeatureSketchBased.cpp \
|
||||
FeatureSketchBased.h \
|
||||
FeatureRevolution.cpp \
|
||||
FeatureRevolution.h \
|
||||
FeatureAdditive.cpp \
|
||||
FeatureAdditive.h \
|
||||
FeatureSubtractive.cpp \
|
||||
FeatureSubtractive.h \
|
||||
FeatureHole.cpp \
|
||||
FeatureHole.h \
|
||||
FeatureTransformed.cpp \
|
||||
FeatureTransformed.h \
|
||||
PreCompiled.cpp \
|
||||
PreCompiled.h
|
||||
|
||||
|
||||
# the library search path.
|
||||
libPartDesign_la_LDFLAGS = -L../../../Base -L../../../App -L../../../Mod/Part/App \
|
||||
-L$(OCC_LIB) $(all_libraries) -version-info @LIB_CURRENT@:@LIB_REVISION@:@LIB_AGE@
|
||||
libPartDesign_la_CPPFLAGS = -DPartDesignAppExport=
|
||||
|
||||
libPartDesign_la_LIBADD = \
|
||||
@BOOST_REGEX_LIB@ @BOOST_SYSTEM_LIB@ \
|
||||
-l@PYTHON_LIB@ \
|
||||
-lxerces-c \
|
||||
-lFreeCADBase \
|
||||
-lFreeCADApp \
|
||||
-lPart \
|
||||
-lTKernel \
|
||||
-lTKG2d \
|
||||
-lTKG3d \
|
||||
-lTKMath \
|
||||
-lTKXSBase \
|
||||
-lTKBRep \
|
||||
-lTKGeomAlgo \
|
||||
-lTKGeomBase \
|
||||
-lTKOffset \
|
||||
-lTKPrim \
|
||||
-lTKFeat \
|
||||
-lTKFillet \
|
||||
-lTKShHealing \
|
||||
-lTKBool \
|
||||
-lTKBO \
|
||||
-lTKTopAlgo
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
# Loader of libPartDesign
|
||||
|
||||
PartDesign_la_SOURCES=\
|
||||
AppPartDesign.cpp
|
||||
|
||||
# the library search path.
|
||||
PartDesign_la_LDFLAGS = $(libPartDesign_la_LDFLAGS) -module -avoid-version
|
||||
PartDesign_la_CPPFLAGS = $(libPartDesign_la_CPPFLAGS)
|
||||
|
||||
PartDesign_la_LIBADD = \
|
||||
$(libPartDesign_la_LIBADD) \
|
||||
-lPartDesign
|
||||
|
||||
PartDesign_la_DEPENDENCIES = libPartDesign.la
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
|
||||
# set the include path found by configure
|
||||
AM_CXXFLAGS = -I$(OCC_INC) -I$(top_srcdir)/src -I$(top_builddir)/src $(all_includes)
|
||||
|
||||
|
||||
libdir = $(prefix)/Mod/PartDesign
|
||||
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt
|
|
@ -1,205 +0,0 @@
|
|||
SUBDIRS=Resources
|
||||
|
||||
lib_LTLIBRARIES=libPartDesignGui.la PartDesignGui.la
|
||||
|
||||
BUILT_SOURCES=\
|
||||
moc_FeaturePickDialog.cpp \
|
||||
moc_TaskPadParameters.cpp \
|
||||
moc_TaskPocketParameters.cpp \
|
||||
moc_TaskChamferParameters.cpp \
|
||||
moc_TaskFilletParameters.cpp \
|
||||
moc_TaskDraftParameters.cpp \
|
||||
moc_TaskGrooveParameters.cpp \
|
||||
moc_TaskHoleParameters.cpp \
|
||||
moc_TaskLinearPatternParameters.cpp \
|
||||
moc_TaskMirroredParameters.cpp \
|
||||
moc_TaskMultiTransformParameters.cpp \
|
||||
moc_TaskPolarPatternParameters.cpp \
|
||||
moc_TaskRevolutionParameters.cpp \
|
||||
moc_TaskScaledParameters.cpp \
|
||||
moc_TaskTransformedMessages.cpp \
|
||||
moc_TaskTransformedParameters.cpp \
|
||||
ui_FeaturePickDialog.h \
|
||||
ui_TaskGrooveParameters.h \
|
||||
ui_TaskPadParameters.h \
|
||||
ui_TaskPocketParameters.h \
|
||||
ui_TaskChamferParameters.h \
|
||||
ui_TaskFilletParameters.h \
|
||||
ui_TaskDraftParameters.h \
|
||||
ui_TaskHoleParameters.h \
|
||||
ui_TaskLinearPatternParameters.h \
|
||||
ui_TaskMirroredParameters.h \
|
||||
ui_TaskMultiTransformParameters.h \
|
||||
ui_TaskPolarPatternParameters.h \
|
||||
ui_TaskRevolutionParameters.h \
|
||||
ui_TaskScaledParameters.h \
|
||||
ui_TaskTransformedMessages.h
|
||||
|
||||
libPartDesignGui_la_UI=\
|
||||
FeaturePickDialog.ui \
|
||||
TaskGrooveParameters.ui \
|
||||
TaskPadParameters.ui \
|
||||
TaskPocketParameters.ui \
|
||||
TaskChamferParameters.ui \
|
||||
TaskDraftParameters.ui \
|
||||
TaskFilletParameters.ui \
|
||||
TaskFilletParameters.ui \
|
||||
TaskHoleParameters.ui \
|
||||
TaskLinearPatternParameters.ui \
|
||||
TaskMirroredParameters.ui \
|
||||
TaskMultiTransformParameters.ui \
|
||||
TaskPolarPatternParameters.ui \
|
||||
TaskRevolutionParameters.ui \
|
||||
TaskScaledParameters.ui \
|
||||
TaskTransformedMessages.ui
|
||||
|
||||
libPartDesignGui_la_SOURCES=\
|
||||
AppPartDesignGuiPy.cpp \
|
||||
Command.cpp \
|
||||
PreCompiled.cpp \
|
||||
PreCompiled.h \
|
||||
FeaturePickDialog.cpp \
|
||||
FeaturePickDialog.h \
|
||||
ReferenceSelection.cpp \
|
||||
ReferenceSelection.h \
|
||||
TaskGrooveParameters.cpp \
|
||||
TaskGrooveParameters.h \
|
||||
TaskPadParameters.cpp \
|
||||
TaskPadParameters.h \
|
||||
TaskPocketParameters.cpp \
|
||||
TaskPocketParameters.h \
|
||||
TaskChamferParameters.cpp \
|
||||
TaskChamferParameters.h \
|
||||
TaskFilletParameters.cpp \
|
||||
TaskFilletParameters.h \
|
||||
TaskDraftParameters.cpp \
|
||||
TaskDraftParameters.h \
|
||||
TaskLinearPatternParameters.cpp \
|
||||
TaskLinearPatternParameters.h \
|
||||
TaskMirroredParameters.cpp \
|
||||
TaskMirroredParameters.h \
|
||||
TaskMultiTransformParameters.cpp \
|
||||
TaskMultiTransformParameters.h \
|
||||
TaskPolarPatternParameters.cpp \
|
||||
TaskPolarPatternParameters.h \
|
||||
TaskRevolutionParameters.cpp \
|
||||
TaskRevolutionParameters.h \
|
||||
TaskHoleParameters.cpp \
|
||||
TaskHoleParameters.h \
|
||||
TaskScaledParameters.cpp \
|
||||
TaskScaledParameters.h \
|
||||
TaskTransformedParameters.cpp \
|
||||
TaskTransformedParameters.h \
|
||||
TaskTransformedMessages.cpp \
|
||||
TaskTransformedMessages.h \
|
||||
ViewProvider.cpp \
|
||||
ViewProvider.h \
|
||||
ViewProviderHole.cpp \
|
||||
ViewProviderHole.h \
|
||||
ViewProviderLinearPattern.cpp \
|
||||
ViewProviderLinearPattern.h \
|
||||
ViewProviderMirrored.cpp \
|
||||
ViewProviderMirrored.h \
|
||||
ViewProviderMultiTransform.cpp \
|
||||
ViewProviderMultiTransform.h \
|
||||
ViewProviderPad.cpp \
|
||||
ViewProviderPad.h \
|
||||
ViewProviderPocket.cpp \
|
||||
ViewProviderPocket.h \
|
||||
ViewProviderPolarPattern.cpp \
|
||||
ViewProviderPolarPattern.h \
|
||||
ViewProviderChamfer.cpp \
|
||||
ViewProviderChamfer.h \
|
||||
ViewProviderFillet.cpp \
|
||||
ViewProviderFillet.h \
|
||||
ViewProviderDraft.cpp \
|
||||
ViewProviderDraft.h \
|
||||
ViewProviderGroove.cpp \
|
||||
ViewProviderGroove.h \
|
||||
ViewProviderRevolution.cpp \
|
||||
ViewProviderRevolution.h \
|
||||
ViewProviderScaled.cpp \
|
||||
ViewProviderScaled.h \
|
||||
ViewProviderTransformed.cpp \
|
||||
ViewProviderTransformed.h \
|
||||
Workbench.cpp \
|
||||
Workbench.h
|
||||
|
||||
# the library search path.
|
||||
libPartDesignGui_la_LDFLAGS = -L../../../Base -L../../../App -L../../../Gui \
|
||||
-L../../Part/App -L../../Part/Gui -L../App \
|
||||
-L$(OCC_LIB) $(QT_LIBS) $(GL_LIBS) $(all_libraries) \
|
||||
-version-info @LIB_CURRENT@:@LIB_REVISION@:@LIB_AGE@
|
||||
|
||||
libPartDesignGui_la_CPPFLAGS = -DPartDesignAppExport= -DPartDesignGuiExport=
|
||||
|
||||
libPartDesignGui_la_LIBADD = \
|
||||
@BOOST_SYSTEM_LIB@ \
|
||||
@BOOST_SIGNALS_LIB@ \
|
||||
-l@PYTHON_LIB@ \
|
||||
-lxerces-c \
|
||||
-lFreeCADBase \
|
||||
-lFreeCADApp \
|
||||
-lFreeCADGui \
|
||||
-lPart \
|
||||
-lPartGui \
|
||||
-lTKernel \
|
||||
-lTKMath \
|
||||
-lTKXSBase \
|
||||
-lTKBRep \
|
||||
-lTKTopAlgo \
|
||||
-lTKG2d \
|
||||
-lTKG3d \
|
||||
-lTKGeomAlgo \
|
||||
-lTKGeomBase \
|
||||
-lPartDesign
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
# Loader of libPartDesignGui
|
||||
|
||||
PartDesignGui_la_SOURCES=\
|
||||
AppPartDesignGui.cpp
|
||||
|
||||
# the library search path.
|
||||
PartDesignGui_la_LDFLAGS = $(libPartDesignGui_la_LDFLAGS) -module -avoid-version
|
||||
PartDesignGui_la_CPPFLAGS = $(libPartDesignGui_la_CPPFLAGS)
|
||||
|
||||
PartDesignGui_la_LIBADD = \
|
||||
$(libPartDesignGui_la_LIBADD) \
|
||||
Resources/libResources.la \
|
||||
-lPartDesignGui
|
||||
|
||||
PartDesignGui_la_DEPENDENCIES = libPartDesignGui.la
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
|
||||
# rule for Qt MetaObject Compiler:
|
||||
moc_%.cpp: %.h
|
||||
$(QT_MOC) $< -o $(@F)
|
||||
|
||||
# rule for Qt MetaObject Compiler:
|
||||
%.moc: %.h
|
||||
$(QT_MOC) $< -o $(@F)
|
||||
|
||||
# rules for Qt User Interface Compiler:
|
||||
ui_%.h: %.ui
|
||||
$(QT_UIC) $< -o $(@F)
|
||||
|
||||
# rules for Qt Resource Compiler:
|
||||
qrc_%.cpp: %.qrc
|
||||
$(QT_RCC) -name $(*F) $< -o $(@F)
|
||||
|
||||
# set the include path found by configure
|
||||
AM_CXXFLAGS = -I$(top_srcdir)/src -I$(top_builddir)/src -I$(srcdir)/.. \
|
||||
$(all_includes) $(QT_CXXFLAGS) -I$(OCC_INC) \
|
||||
-I$(sim_ac_coin_includedir) -I$(sim_ac_soqt_includedir)
|
||||
|
||||
|
||||
libdir = $(prefix)/Mod/PartDesign
|
||||
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(libPartDesignGui_la_UI) \
|
||||
CMakeLists.txt
|
||||
|
|
@ -1,86 +0,0 @@
|
|||
noinst_LTLIBRARIES=libResources.la
|
||||
|
||||
BUILT_SOURCES=\
|
||||
qrc_PartDesign.cpp
|
||||
|
||||
nodist_libResources_la_SOURCES=\
|
||||
qrc_PartDesign.cpp
|
||||
|
||||
EXTRA_DIST = \
|
||||
translations/PartDesign_af.qm \
|
||||
translations/PartDesign_af.ts \
|
||||
translations/PartDesign_de.qm \
|
||||
translations/PartDesign_de.ts \
|
||||
translations/PartDesign_es-ES.qm \
|
||||
translations/PartDesign_es-ES.ts \
|
||||
translations/PartDesign_fi.qm \
|
||||
translations/PartDesign_fi.ts \
|
||||
translations/PartDesign_fr.qm \
|
||||
translations/PartDesign_fr.ts \
|
||||
translations/PartDesign_hr.qm \
|
||||
translations/PartDesign_hr.ts \
|
||||
translations/PartDesign_it.qm \
|
||||
translations/PartDesign_it.ts \
|
||||
translations/PartDesign_nl.qm \
|
||||
translations/PartDesign_nl.ts \
|
||||
translations/PartDesign_no.qm \
|
||||
translations/PartDesign_no.ts \
|
||||
translations/PartDesign_pl.qm \
|
||||
translations/PartDesign_pl.ts \
|
||||
translations/PartDesign_pt-BR.qm \
|
||||
translations/PartDesign_pt-BR.ts \
|
||||
translations/PartDesign_ru.qm \
|
||||
translations/PartDesign_ru.ts \
|
||||
translations/PartDesign_sv-SE.qm \
|
||||
translations/PartDesign_sv-SE.ts \
|
||||
translations/PartDesign_uk.qm \
|
||||
translations/PartDesign_uk.ts \
|
||||
translations/PartDesign_zh-CN.qm \
|
||||
translations/PartDesign_zh-CN.ts \
|
||||
translations/PartDesign_zh-TW.qm \
|
||||
translations/PartDesign_zh-TW.ts \
|
||||
translations/PartDesign_ja.qm \
|
||||
translations/PartDesign_ja.ts \
|
||||
translations/PartDesign_ro.qm \
|
||||
translations/PartDesign_ro.ts \
|
||||
translations/PartDesign_hu.qm \
|
||||
translations/PartDesign_hu.ts \
|
||||
translations/PartDesign_cs.qm \
|
||||
translations/PartDesign_cs.ts \
|
||||
translations/PartDesign_sk.qm \
|
||||
translations/PartDesign_sk.ts \
|
||||
translations/PartDesign_tr.qm \
|
||||
translations/PartDesign_tr.ts \
|
||||
icons/PartDesign_Chamfer.svg \
|
||||
icons/PartDesign_Fillet.svg \
|
||||
icons/PartDesign_Draft.svg \
|
||||
icons/PartDesign_Groove.svg \
|
||||
icons/PartDesign_Pad.svg \
|
||||
icons/PartDesign_Pocket.svg \
|
||||
icons/PartDesign_Revolution.svg \
|
||||
icons/PartDesign_Mirrored.svg \
|
||||
icons/PartDesign_LinearPattern.svg \
|
||||
icons/PartDesign_PolarPattern.svg \
|
||||
icons/PartDesign_Scaled.svg \
|
||||
icons/PartDesign_MultiTransform.svg \
|
||||
PartDesign.qrc
|
||||
|
||||
|
||||
# rule for Qt MetaObject Compiler:
|
||||
moc_%.cpp: %.h
|
||||
$(QT_MOC) $< -o $(@F)
|
||||
|
||||
# rule for Qt MetaObject Compiler:
|
||||
%.moc: %.h
|
||||
$(QT_MOC) $< -o $(@F)
|
||||
|
||||
# rules for Qt Resource Compiler:
|
||||
qrc_%.cpp: %.qrc
|
||||
$(QT_RCC) -name $(*F) $< -o $(@F)
|
||||
|
||||
|
||||
# set the include path found by configure
|
||||
AM_CXXFLAGS = -I$(top_srcdir)/src -I$(top_builddir)/src -I$(srcdir)/.. \
|
||||
$(all_includes) $(QT_CXXFLAGS) -I$(OCC_INC)
|
||||
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
|
@ -1,20 +0,0 @@
|
|||
SUBDIRS=App Gui Scripts
|
||||
|
||||
# Create the file __init__.py so that we can import as
|
||||
# from PartDesign.Scripts import ...
|
||||
#install-exec-hook:
|
||||
# echo "import PartDesign" > $(DESTDIR)$(datadir)/__init__.py
|
||||
#
|
||||
#uninstall-hook:
|
||||
# rm -f $(DESTDIR)$(datadir)/__init__.py
|
||||
|
||||
# Change data dir from default ($(prefix)/share) to $(prefix)
|
||||
datadir = $(prefix)/Mod/PartDesign
|
||||
|
||||
data_DATA = Init.py InitGui.py TestPartDesignGui.py TestPartDesignApp.py __init__.py
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(data_DATA) \
|
||||
CMakeLists.txt \
|
||||
partdesign.dox
|
||||
|
|
@ -1,15 +0,0 @@
|
|||
# Change data dir from default $(datadir) to $(prefix)/Mod/PartDesign/Scripts
|
||||
datadir = $(prefix)/Mod/PartDesign/Scripts
|
||||
data_DATA = \
|
||||
__init__.py \
|
||||
DistanceBolt.py \
|
||||
Epitrochoid.py \
|
||||
FilletArc.py \
|
||||
Gear.py \
|
||||
Parallelepiped.py \
|
||||
RadialCopy.py \
|
||||
Spring.py
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(data_DATA)
|
||||
|
|
@ -1,37 +0,0 @@
|
|||
# Change data dir from default ($(prefix)/share) to actual dir
|
||||
datadir = $(prefix)/Mod/Plot
|
||||
|
||||
data_DATA = \
|
||||
Plot.py \
|
||||
InitGui.py \
|
||||
PlotGui.py \
|
||||
Plot_rc.py
|
||||
|
||||
nobase_data_DATA = \
|
||||
plotAxes/__init__.py \
|
||||
plotAxes/TaskPanel.py \
|
||||
plotAxes/TaskPanel.ui \
|
||||
plotLabels/__init__.py \
|
||||
plotLabels/TaskPanel.py \
|
||||
plotLabels/TaskPanel.ui \
|
||||
plotPositions/__init__.py \
|
||||
plotPositions/TaskPanel.py \
|
||||
plotPositions/TaskPanel.ui \
|
||||
plotSave/__init__.py \
|
||||
plotSave/TaskPanel.py \
|
||||
plotSave/TaskPanel.ui \
|
||||
plotSeries/__init__.py \
|
||||
plotSeries/TaskPanel.py \
|
||||
plotSeries/TaskPanel.ui \
|
||||
plotUtils/__init__.py \
|
||||
plotUtils/Paths.py
|
||||
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(data_DATA) \
|
||||
$(nobase_data_DATA) \
|
||||
CMakeLists.txt \
|
||||
README \
|
||||
plot.dox
|
||||
|
|
@ -1,79 +0,0 @@
|
|||
|
||||
lib_LTLIBRARIES=libPoints.la Points.la
|
||||
|
||||
BUILT_SOURCES=\
|
||||
PointsPy.cpp
|
||||
|
||||
libPoints_la_BUILT=\
|
||||
PointsPy.h
|
||||
|
||||
libPoints_la_SOURCES=\
|
||||
AppPointsPy.cpp \
|
||||
FeaturePointsImportAscii.cpp \
|
||||
Points.cpp \
|
||||
PointsPyImp.cpp \
|
||||
PointsAlgos.cpp \
|
||||
PointsFeature.cpp \
|
||||
PointsGrid.cpp \
|
||||
Properties.cpp \
|
||||
PropertyPointKernel.cpp \
|
||||
PreCompiled.cpp \
|
||||
PreCompiled.h
|
||||
|
||||
nodist_include_HEADERS=\
|
||||
$(libPoints_la_BUILT)
|
||||
|
||||
include_HEADERS=\
|
||||
FeaturePointsImportAscii.h \
|
||||
Points.h \
|
||||
PointsAlgos.h \
|
||||
PointsFeature.h \
|
||||
PointsGrid.h \
|
||||
Properties.h \
|
||||
PropertyPointKernel.h
|
||||
|
||||
%.cpp: %.xml $(top_srcdir)/src/Tools/generateTemplates/templateClassPyExport.py
|
||||
$(PYTHON) $(top_srcdir)/src/Tools/generate.py --outputPath $(@D) $<
|
||||
|
||||
|
||||
# the library search path.
|
||||
libPoints_la_LDFLAGS = -L../../../Base -L../../../App $(all_libraries) \
|
||||
-version-info @LIB_CURRENT@:@LIB_REVISION@:@LIB_AGE@
|
||||
libPoints_la_CPPFLAGS = -DPointsAppExport=
|
||||
|
||||
libPoints_la_LIBADD = \
|
||||
@BOOST_REGEX_LIB@ @BOOST_FILESYSTEM_LIB@ @BOOST_SYSTEM_LIB@ \
|
||||
-l@PYTHON_LIB@ \
|
||||
-lxerces-c \
|
||||
-lFreeCADBase \
|
||||
-lFreeCADApp
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
# Loader of libPoints
|
||||
|
||||
Points_la_SOURCES=\
|
||||
AppPoints.cpp
|
||||
|
||||
# the library search path.
|
||||
Points_la_LDFLAGS = $(libPoints_la_LDFLAGS) -module -avoid-version
|
||||
Points_la_CPPFLAGS = $(libPoints_la_CPPFLAGS)
|
||||
|
||||
Points_la_LIBADD = \
|
||||
$(libPoints_la_LIBADD) \
|
||||
-lPoints
|
||||
|
||||
Points_la_DEPENDENCIES = libPoints.la
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
|
||||
# set the include path found by configure
|
||||
AM_CXXFLAGS = -I$(top_srcdir)/src -I$(top_builddir)/src $(all_includes)
|
||||
|
||||
includedir = @includedir@/Mod/Points/App
|
||||
libdir = $(prefix)/Mod/Points
|
||||
|
||||
CLEANFILES = $(BUILT_SOURCES) $(libPoints_la_BUILT)
|
||||
|
||||
EXTRA_DIST = \
|
||||
PointsPy.xml \
|
||||
CMakeLists.txt
|
|
@ -1,129 +0,0 @@
|
|||
|
||||
lib_LTLIBRARIES=libPointsGui.la PointsGui.la
|
||||
|
||||
BUILT_SOURCES=\
|
||||
ui_DlgPointsRead.h \
|
||||
moc_DlgPointsReadImp.cpp \
|
||||
qrc_Points.cpp
|
||||
|
||||
libPointsGui_la_SOURCES=\
|
||||
Command.cpp \
|
||||
DlgPointsReadImp.cpp \
|
||||
DlgPointsReadImp.h \
|
||||
PreCompiled.cpp \
|
||||
PreCompiled.h \
|
||||
ViewProvider.cpp \
|
||||
Workbench.cpp
|
||||
|
||||
includedir = @includedir@/Mod/Points/Gui
|
||||
|
||||
include_HEADERS=\
|
||||
ViewProvider.h \
|
||||
Workbench.h
|
||||
|
||||
# the library search path.
|
||||
libPointsGui_la_LDFLAGS = -L../../../Base -L../../../App -L../../../Gui -L../App $(QT_LIBS) \
|
||||
$(sim_ac_coin_libs) $(sim_ac_soqt_libs) $(all_libraries) \
|
||||
-version-info @LIB_CURRENT@:@LIB_REVISION@:@LIB_AGE@
|
||||
libPointsGui_la_CPPFLAGS = -DPointsAppExport= -DPointsGuiExport=
|
||||
|
||||
libPointsGui_la_LIBADD = \
|
||||
@BOOST_SYSTEM_LIB@ \
|
||||
-l@PYTHON_LIB@ \
|
||||
-lxerces-c \
|
||||
-lFreeCADBase \
|
||||
-lFreeCADApp \
|
||||
-lFreeCADGui \
|
||||
-lPoints
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
# Loader of libPointsGui
|
||||
|
||||
PointsGui_la_SOURCES=\
|
||||
AppPointsGui.cpp
|
||||
|
||||
# the library search path.
|
||||
PointsGui_la_LDFLAGS = $(libPointsGui_la_LDFLAGS) -module -avoid-version
|
||||
PointsGui_la_CPPFLAGS = $(libPointsGui_la_CPPFLAGS)
|
||||
|
||||
PointsGui_la_LIBADD = \
|
||||
$(libPointsGui_la_LIBADD) \
|
||||
-lPointsGui
|
||||
|
||||
PointsGui_la_DEPENDENCIES = libPointsGui.la
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
|
||||
# rule for Qt MetaObject Compiler:
|
||||
moc_%.cpp: %.h
|
||||
$(QT_MOC) $< -o $(@F)
|
||||
|
||||
# rule for Qt MetaObject Compiler:
|
||||
%.moc: %.h
|
||||
$(QT_MOC) $< -o $(@F)
|
||||
|
||||
# rules for Qt User Interface Compiler:
|
||||
ui_%.h: %.ui
|
||||
$(QT_UIC) $< -o $(@F)
|
||||
|
||||
# rules for Qt Resource Compiler:
|
||||
qrc_%.cpp: Resources/%.qrc
|
||||
$(QT_RCC) -name $(*F) $< -o $(@F)
|
||||
|
||||
# set the include path found by configure
|
||||
AM_CXXFLAGS = -I$(top_srcdir)/src -I$(top_builddir)/src $(all_includes) $(QT_CXXFLAGS) \
|
||||
-I$(sim_ac_coin_includedir) -I$(sim_ac_soqt_includedir)
|
||||
|
||||
libdir = $(prefix)/Mod/Points
|
||||
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
||||
EXTRA_DIST = \
|
||||
DlgPointsRead.ui \
|
||||
CMakeLists.txt \
|
||||
Resources/Points.qrc \
|
||||
Resources/translations/Points_af.qm \
|
||||
Resources/translations/Points_af.ts \
|
||||
Resources/translations/Points_de.qm \
|
||||
Resources/translations/Points_de.ts \
|
||||
Resources/translations/Points_es-ES.qm \
|
||||
Resources/translations/Points_es-ES.ts \
|
||||
Resources/translations/Points_fi.qm \
|
||||
Resources/translations/Points_fi.ts \
|
||||
Resources/translations/Points_fr.qm \
|
||||
Resources/translations/Points_fr.ts \
|
||||
Resources/translations/Points_hr.qm \
|
||||
Resources/translations/Points_hr.ts \
|
||||
Resources/translations/Points_it.qm \
|
||||
Resources/translations/Points_it.ts \
|
||||
Resources/translations/Points_nl.qm \
|
||||
Resources/translations/Points_nl.ts \
|
||||
Resources/translations/Points_no.qm \
|
||||
Resources/translations/Points_no.ts \
|
||||
Resources/translations/Points_pl.qm \
|
||||
Resources/translations/Points_pl.ts \
|
||||
Resources/translations/Points_pt-BR.qm \
|
||||
Resources/translations/Points_pt-BR.ts \
|
||||
Resources/translations/Points_ru.qm \
|
||||
Resources/translations/Points_ru.ts \
|
||||
Resources/translations/Points_sv-SE.qm \
|
||||
Resources/translations/Points_sv-SE.ts \
|
||||
Resources/translations/Points_uk.qm \
|
||||
Resources/translations/Points_uk.ts \
|
||||
Resources/translations/Points_zh-TW.qm \
|
||||
Resources/translations/Points_zh-TW.ts \
|
||||
Resources/translations/Points_ro.qm \
|
||||
Resources/translations/Points_ro.ts \
|
||||
Resources/translations/Points_ja.qm \
|
||||
Resources/translations/Points_ja.ts \
|
||||
Resources/translations/Points_tr.qm \
|
||||
Resources/translations/Points_tr.ts \
|
||||
Resources/translations/Points_cs.qm \
|
||||
Resources/translations/Points_cs.ts \
|
||||
Resources/translations/Points_sk.qm \
|
||||
Resources/translations/Points_sk.ts \
|
||||
Resources/translations/Points_hu.qm \
|
||||
Resources/translations/Points_hu.ts \
|
||||
Resources/translations/Points_zh-CN.qm \
|
||||
Resources/translations/Points_zh-CN.ts
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
SUBDIRS=App Gui
|
||||
|
||||
# Change data dir from default ($(prefix)/share) to $(prefix)
|
||||
datadir = $(prefix)/Mod/Points
|
||||
|
||||
data_DATA = Init.py InitGui.py
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(data_DATA) \
|
||||
CMakeLists.txt \
|
||||
points.dox
|
|
@ -1,79 +0,0 @@
|
|||
|
||||
lib_LTLIBRARIES=libRaytracing.la Raytracing.la
|
||||
|
||||
BUILT_SOURCES=\
|
||||
FreeCADpov.h
|
||||
|
||||
libRaytracing_la_SOURCES=\
|
||||
AppRaytracingPy.cpp \
|
||||
PovTools.cpp \
|
||||
PovTools.h \
|
||||
PreCompiled.cpp \
|
||||
PreCompiled.h \
|
||||
RayFeature.cpp \
|
||||
RayFeature.h \
|
||||
RayProject.cpp \
|
||||
RayProject.h \
|
||||
RaySegment.cpp \
|
||||
RaySegment.h
|
||||
|
||||
|
||||
FreeCADpov.h: FreeCADpov
|
||||
$(PYTHON) $(top_srcdir)/src/Tools/PythonToCPP.py $< $@
|
||||
|
||||
|
||||
# the library search path.
|
||||
libRaytracing_la_LDFLAGS = -L../../../Base -L../../../App -L../../Part/App -L/usr/X11R6/lib \
|
||||
-L$(OCC_LIB) $(all_libraries) -version-info @LIB_CURRENT@:@LIB_REVISION@:@LIB_AGE@
|
||||
libRaytracing_la_CPPFLAGS = -DAppPartExport= -DAppRaytracingExport= -DFeatureRayExportPov=
|
||||
|
||||
libRaytracing_la_LIBADD = \
|
||||
@BOOST_SYSTEM_LIB@ \
|
||||
-l@PYTHON_LIB@ \
|
||||
-lxerces-c \
|
||||
-lFreeCADBase \
|
||||
-lFreeCADApp \
|
||||
-lTKernel \
|
||||
-lTKG2d \
|
||||
-lTKG3d \
|
||||
-lTKMath \
|
||||
-lTKBool \
|
||||
-lTKBRep \
|
||||
-lTKGeomAlgo \
|
||||
-lTKGeomBase \
|
||||
-lTKMesh \
|
||||
-lPart
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
# Loader of libRaytracing
|
||||
|
||||
Raytracing_la_SOURCES=\
|
||||
AppRaytracing.cpp
|
||||
|
||||
# the library search path.
|
||||
Raytracing_la_LDFLAGS = $(libRaytracing_la_LDFLAGS) -module -avoid-version
|
||||
Raytracing_la_CPPFLAGS = $(libRaytracing_la_CPPFLAGS)
|
||||
|
||||
Raytracing_la_LIBADD = \
|
||||
$(libRaytracing_la_LIBADD) \
|
||||
-lRaytracing
|
||||
|
||||
Raytracing_la_DEPENDENCIES = libRaytracing.la
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
|
||||
# set the include path found by configure
|
||||
AM_CXXFLAGS = -I$(top_srcdir)/src -I$(top_builddir)/src $(all_includes) -I$(OCC_INC)
|
||||
|
||||
|
||||
libdir = $(prefix)/Mod/Raytracing
|
||||
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
||||
EXTRA_DIST = \
|
||||
resources/FCAnimation.inc \
|
||||
resources/FCAnimation.ini \
|
||||
resources/FCAnimation.pov \
|
||||
resources/FCSimple.pov \
|
||||
CMakeLists.txt \
|
||||
FreeCADpov
|
|
@ -1,147 +0,0 @@
|
|||
|
||||
lib_LTLIBRARIES=libRaytracingGui.la RaytracingGui.la
|
||||
|
||||
BUILT_SOURCES=\
|
||||
ui_DlgSettingsRay.h \
|
||||
moc_DlgSettingsRayImp.cpp \
|
||||
FreeCADpov.h \
|
||||
qrc_Raytracing.cpp
|
||||
|
||||
libRaytracingGui_la_SOURCES=\
|
||||
AppRaytracingGuiPy.cpp \
|
||||
Command.cpp \
|
||||
DlgSettingsRayImp.cpp \
|
||||
DlgSettingsRayImp.h \
|
||||
PovrayHighlighter.cpp \
|
||||
PovrayHighlighter.h \
|
||||
PreCompiled.cpp \
|
||||
PreCompiled.h \
|
||||
Workbench.cpp \
|
||||
Workbench.h
|
||||
|
||||
# the library search path.
|
||||
libRaytracingGui_la_LDFLAGS = -L../../../Base -L../../../App -L../../../Gui -L../../Part/App -L../App -L$(OCC_LIB) \
|
||||
$(QT_LIBS) $(sim_ac_coin_ldflags) $(sim_ac_coin_libs) $(sim_ac_soqt_ldflags) $(sim_ac_soqt_libs) \
|
||||
$(all_libraries) -version-info @LIB_CURRENT@:@LIB_REVISION@:@LIB_AGE@
|
||||
libRaytracingGui_la_CPPFLAGS = -DAppPartExport= -DAppRaytracingGuiExport= -DFeatureRayExportPov=
|
||||
|
||||
libRaytracingGui_la_LIBADD = \
|
||||
@BOOST_SYSTEM_LIB@ \
|
||||
-l@PYTHON_LIB@ \
|
||||
-lxerces-c \
|
||||
-lFreeCADBase \
|
||||
-lFreeCADApp \
|
||||
-lFreeCADGui \
|
||||
-lTKernel \
|
||||
-lTKG2d \
|
||||
-lTKG3d \
|
||||
-lTKMath \
|
||||
-lTKBool \
|
||||
-lTKBRep \
|
||||
-lTKGeomAlgo \
|
||||
-lTKGeomBase \
|
||||
-lPart \
|
||||
-lRaytracing
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
# Loader of libRaytracingGui
|
||||
|
||||
RaytracingGui_la_SOURCES=\
|
||||
AppRaytracingGui.cpp
|
||||
|
||||
# the library search path.
|
||||
RaytracingGui_la_LDFLAGS = $(libRaytracingGui_la_LDFLAGS) -module -avoid-version
|
||||
RaytracingGui_la_CPPFLAGS = $(libRaytracingGui_la_CPPFLAGS)
|
||||
|
||||
RaytracingGui_la_LIBADD = \
|
||||
$(libRaytracingGui_la_LIBADD) \
|
||||
-lRaytracingGui
|
||||
|
||||
RaytracingGui_la_DEPENDENCIES = libRaytracingGui.la
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
|
||||
# rule for Qt MetaObject Compiler:
|
||||
moc_%.cpp: %.h
|
||||
$(QT_MOC) $< -o $(@F)
|
||||
|
||||
# rule for Qt MetaObject Compiler:
|
||||
%.moc: %.h
|
||||
$(QT_MOC) $< -o $(@F)
|
||||
|
||||
# rules for Qt User Interface Compiler:
|
||||
ui_%.h: %.ui
|
||||
$(QT_UIC) $< -o $(@F)
|
||||
|
||||
# rules for Qt Resource Compiler:
|
||||
qrc_%.cpp: Resources/%.qrc
|
||||
$(QT_RCC) -name $(*F) $< -o $(@F)
|
||||
|
||||
FreeCADpov.h: FreeCADpov
|
||||
$(PYTHON) $(top_srcdir)/src/Tools/PythonToCPP.py $< $@
|
||||
|
||||
# set the include path found by configure
|
||||
AM_CXXFLAGS = -I$(top_srcdir)/src -I$(top_builddir)/src $(all_includes) $(QT_CXXFLAGS) -I$(OCC_INC) \
|
||||
-I$(sim_ac_coin_includedir) -I$(sim_ac_soqt_includedir)
|
||||
|
||||
|
||||
libdir = $(prefix)/Mod/Raytracing
|
||||
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
||||
EXTRA_DIST = \
|
||||
Resources/icons/preferences-raytracing.svg \
|
||||
Resources/icons/Raytrace_Camera.svg \
|
||||
Resources/icons/Raytrace_Export.svg \
|
||||
Resources/icons/Raytrace_ExportProject.svg \
|
||||
Resources/icons/Raytrace_New.svg \
|
||||
Resources/icons/Raytrace_Part.svg \
|
||||
Resources/icons/Raytrace_NewPartSegment.svg \
|
||||
DlgSettingsRay.ui \
|
||||
FreeCADpov \
|
||||
Resources/Raytracing.qrc \
|
||||
Resources/translations/Raytracing_af.qm \
|
||||
Resources/translations/Raytracing_af.ts \
|
||||
Resources/translations/Raytracing_de.qm \
|
||||
Resources/translations/Raytracing_de.ts \
|
||||
Resources/translations/Raytracing_es-ES.qm \
|
||||
Resources/translations/Raytracing_es-ES.ts \
|
||||
Resources/translations/Raytracing_fi.qm \
|
||||
Resources/translations/Raytracing_fi.ts \
|
||||
Resources/translations/Raytracing_fr.qm \
|
||||
Resources/translations/Raytracing_fr.ts \
|
||||
Resources/translations/Raytracing_hr.qm \
|
||||
Resources/translations/Raytracing_hr.ts \
|
||||
Resources/translations/Raytracing_it.qm \
|
||||
Resources/translations/Raytracing_it.ts \
|
||||
Resources/translations/Raytracing_nl.qm \
|
||||
Resources/translations/Raytracing_nl.ts \
|
||||
Resources/translations/Raytracing_no.qm \
|
||||
Resources/translations/Raytracing_no.ts \
|
||||
Resources/translations/Raytracing_pl.qm \
|
||||
Resources/translations/Raytracing_pl.ts \
|
||||
Resources/translations/Raytracing_pt-BR.qm \
|
||||
Resources/translations/Raytracing_pt-BR.ts \
|
||||
Resources/translations/Raytracing_ru.qm \
|
||||
Resources/translations/Raytracing_ru.ts \
|
||||
Resources/translations/Raytracing_sv-SE.qm \
|
||||
Resources/translations/Raytracing_sv-SE.ts \
|
||||
Resources/translations/Raytracing_uk.qm \
|
||||
Resources/translations/Raytracing_uk.ts \
|
||||
Resources/translations/Raytracing_hu.qm \
|
||||
Resources/translations/Raytracing_hu.ts \
|
||||
Resources/translations/Raytracing_sk.qm \
|
||||
Resources/translations/Raytracing_sk.ts \
|
||||
Resources/translations/Raytracing_cs.qm \
|
||||
Resources/translations/Raytracing_cs.ts \
|
||||
Resources/translations/Raytracing_ro.qm \
|
||||
Resources/translations/Raytracing_ro.ts \
|
||||
Resources/translations/Raytracing_tr.qm \
|
||||
Resources/translations/Raytracing_tr.ts \
|
||||
Resources/translations/Raytracing_ja.qm \
|
||||
Resources/translations/Raytracing_ja.ts \
|
||||
Resources/translations/Raytracing_zh-TW.qm \
|
||||
Resources/translations/Raytracing_zh-TW.ts \
|
||||
Resources/translations/Raytracing_zh-CN.qm \
|
||||
Resources/translations/Raytracing_zh-CN.ts \
|
||||
CMakeLists.txt
|
|
@ -1,11 +0,0 @@
|
|||
SUBDIRS=App Gui Templates
|
||||
|
||||
# Change data dir from default ($(prefix)/share) to $(prefix)
|
||||
datadir = $(prefix)/Mod/Raytracing
|
||||
|
||||
data_DATA = Init.py InitGui.py RaytracingExample.py
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(data_DATA) \
|
||||
CMakeLists.txt \
|
||||
raytracing.dox
|
|
@ -1,7 +0,0 @@
|
|||
# Change data dir from default $(datadir) to $(datadir)/Mod/Raytracing/Templates
|
||||
datadir = @datadir@/Mod/Raytracing/Templates
|
||||
data_DATA = \
|
||||
ProjectStd.pov
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(data_DATA)
|
|
@ -1,74 +0,0 @@
|
|||
|
||||
lib_LTLIBRARIES=libReverseEngineering.la ReverseEngineering.la
|
||||
|
||||
libReverseEngineering_la_SOURCES=\
|
||||
AppReverseEngineeringPy.cpp \
|
||||
ApproxSurface.cpp \
|
||||
PreCompiled.cpp \
|
||||
PreCompiled.h
|
||||
|
||||
|
||||
include_HEADERS=\
|
||||
ApproxSurface.h
|
||||
|
||||
# the library search path.
|
||||
libReverseEngineering_la_LDFLAGS = -L../../../Base -L../../../App -L../../../Mod/Part/App \
|
||||
-L../../../Mod/Mesh/App -L$(OCC_LIB) $(all_libraries) \
|
||||
-version-info @LIB_CURRENT@:@LIB_REVISION@:@LIB_AGE@
|
||||
|
||||
libReverseEngineering_la_CPPFLAGS = -DReenExport=
|
||||
|
||||
libReverseEngineering_la_LIBADD = \
|
||||
@BOOST_REGEX_LIB@ @BOOST_SYSTEM_LIB@ \
|
||||
-l@PYTHON_LIB@ \
|
||||
-lxerces-c \
|
||||
-lFreeCADBase \
|
||||
-lFreeCADApp \
|
||||
-lPart \
|
||||
-lMesh \
|
||||
-lTKernel \
|
||||
-lTKG2d \
|
||||
-lTKG3d \
|
||||
-lTKMath \
|
||||
-lTKSTEP \
|
||||
-lTKIGES \
|
||||
-lTKSTL \
|
||||
-lTKShHealing \
|
||||
-lTKXSBase \
|
||||
-lTKBool \
|
||||
-lTKBO \
|
||||
-lTKBRep \
|
||||
-lTKTopAlgo \
|
||||
-lTKGeomAlgo \
|
||||
-lTKGeomBase \
|
||||
-lTKOffset \
|
||||
-lTKPrim \
|
||||
-lTKHLR
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
# Loader of libReverseEngineering
|
||||
|
||||
ReverseEngineering_la_SOURCES=\
|
||||
AppReverseEngineering.cpp
|
||||
|
||||
# the library search path.
|
||||
ReverseEngineering_la_LDFLAGS = $(libReverseEngineering_la_LDFLAGS) -module -avoid-version
|
||||
ReverseEngineering_la_CPPFLAGS = $(libReverseEngineering_la_CPPFLAGS)
|
||||
|
||||
ReverseEngineering_la_LIBADD = \
|
||||
$(libReverseEngineering_la_LIBADD) \
|
||||
-lReverseEngineering
|
||||
|
||||
ReverseEngineering_la_DEPENDENCIES = libReverseEngineering.la
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
|
||||
# set the include path found by configure
|
||||
AM_CXXFLAGS = -I$(top_srcdir)/src -I$(top_builddir)/src -I$(OCC_INC) $(all_includes)
|
||||
|
||||
|
||||
includedir = @includedir@/Mod/ReverseEngineering/App
|
||||
libdir = $(prefix)/Mod/ReverseEngineering
|
||||
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt
|
|
@ -1,77 +0,0 @@
|
|||
SUBDIRS=Resources
|
||||
|
||||
lib_LTLIBRARIES=libReverseEngineeringGui.la ReverseEngineeringGui.la
|
||||
|
||||
BUILT_SOURCES=
|
||||
|
||||
libReverseEngineeringGui_la_SOURCES=\
|
||||
AppReverseEngineeringGuiPy.cpp \
|
||||
Command.cpp \
|
||||
PreCompiled.cpp \
|
||||
PreCompiled.h \
|
||||
Workbench.cpp \
|
||||
Workbench.h
|
||||
|
||||
# the library search path.
|
||||
libReverseEngineeringGui_la_LDFLAGS = -L../../../Base -L../../../App -L../../../Gui \
|
||||
-L../../../Mod/Mesh/App -L../App -L$(OCC_LIB) $(QT_LIBS) $(GL_LIBS) \
|
||||
$(all_libraries) -version-info @LIB_CURRENT@:@LIB_REVISION@:@LIB_AGE@
|
||||
|
||||
libReverseEngineeringGui_la_CPPFLAGS = -DReenExport= -DReenGuiExport=
|
||||
|
||||
libReverseEngineeringGui_la_LIBADD = \
|
||||
@BOOST_SYSTEM_LIB@ \
|
||||
-l@PYTHON_LIB@ \
|
||||
-lxerces-c \
|
||||
-lFreeCADBase \
|
||||
-lFreeCADApp \
|
||||
-lFreeCADGui \
|
||||
-lMesh \
|
||||
-lReverseEngineering
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
# Loader of libReverseEngineeringGui
|
||||
|
||||
ReverseEngineeringGui_la_SOURCES=\
|
||||
AppReverseEngineeringGui.cpp
|
||||
|
||||
# the library search path.
|
||||
ReverseEngineeringGui_la_LDFLAGS = $(libReverseEngineeringGui_la_LDFLAGS) -module -avoid-version
|
||||
ReverseEngineeringGui_la_CPPFLAGS = $(libReverseEngineeringGui_la_CPPFLAGS)
|
||||
|
||||
ReverseEngineeringGui_la_LIBADD = \
|
||||
$(libReverseEngineeringGui_la_LIBADD) \
|
||||
Resources/libResources.la \
|
||||
-lReverseEngineeringGui
|
||||
|
||||
ReverseEngineeringGui_la_DEPENDENCIES = libReverseEngineeringGui.la
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
|
||||
# rule for Qt MetaObject Compiler:
|
||||
moc_%.cpp: %.h
|
||||
$(QT_MOC) $< -o $(@F)
|
||||
|
||||
# rule for Qt MetaObject Compiler:
|
||||
%.moc: %.h
|
||||
$(QT_MOC) $< -o $(@F)
|
||||
|
||||
# rules for Qt User Interface Compiler:
|
||||
ui_%.h: %.ui
|
||||
$(QT_UIC) $< -o $(@F)
|
||||
|
||||
# rules for Qt Resource Compiler:
|
||||
qrc_%.cpp: %.qrc
|
||||
$(QT_RCC) -name $(*F) $< -o $(@F)
|
||||
|
||||
# set the include path found by configure
|
||||
AM_CXXFLAGS = -I$(top_srcdir)/src -I$(top_builddir)/src -I$(OCC_INC) $(QT_CXXFLAGS) $(all_includes)
|
||||
|
||||
|
||||
libdir = $(prefix)/Mod/ReverseEngineering
|
||||
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt
|
||||
|
|
@ -1,75 +0,0 @@
|
|||
noinst_LTLIBRARIES=libResources.la
|
||||
|
||||
BUILT_SOURCES=\
|
||||
qrc_ReverseEngineering.cpp
|
||||
|
||||
nodist_libResources_la_SOURCES=\
|
||||
qrc_ReverseEngineering.cpp
|
||||
|
||||
EXTRA_DIST = \
|
||||
icons/actions/FitSurface.svg \
|
||||
translations/ReverseEngineering_af.qm \
|
||||
translations/ReverseEngineering_af.ts \
|
||||
translations/ReverseEngineering_de.qm \
|
||||
translations/ReverseEngineering_de.ts \
|
||||
translations/ReverseEngineering_es-ES.qm \
|
||||
translations/ReverseEngineering_es-ES.ts \
|
||||
translations/ReverseEngineering_fi.qm \
|
||||
translations/ReverseEngineering_fi.ts \
|
||||
translations/ReverseEngineering_fr.qm \
|
||||
translations/ReverseEngineering_fr.ts \
|
||||
translations/ReverseEngineering_hr.qm \
|
||||
translations/ReverseEngineering_hr.ts \
|
||||
translations/ReverseEngineering_it.qm \
|
||||
translations/ReverseEngineering_it.ts \
|
||||
translations/ReverseEngineering_nl.qm \
|
||||
translations/ReverseEngineering_nl.ts \
|
||||
translations/ReverseEngineering_no.qm \
|
||||
translations/ReverseEngineering_no.ts \
|
||||
translations/ReverseEngineering_pl.qm \
|
||||
translations/ReverseEngineering_pl.ts \
|
||||
translations/ReverseEngineering_pt-BR.qm \
|
||||
translations/ReverseEngineering_pt-BR.ts \
|
||||
translations/ReverseEngineering_ru.qm \
|
||||
translations/ReverseEngineering_ru.ts \
|
||||
translations/ReverseEngineering_sv-SE.qm \
|
||||
translations/ReverseEngineering_sv-SE.ts \
|
||||
translations/ReverseEngineering_uk.qm \
|
||||
translations/ReverseEngineering_uk.ts \
|
||||
translations/ReverseEngineering_hu.qm \
|
||||
translations/ReverseEngineering_hu.ts \
|
||||
translations/ReverseEngineering_cs.qm \
|
||||
translations/ReverseEngineering_cs.ts \
|
||||
translations/ReverseEngineering_sk.qm \
|
||||
translations/ReverseEngineering_sk.ts \
|
||||
translations/ReverseEngineering_tr.qm \
|
||||
translations/ReverseEngineering_tr.ts \
|
||||
translations/ReverseEngineering_ro.qm \
|
||||
translations/ReverseEngineering_ro.ts \
|
||||
translations/ReverseEngineering_ja.qm \
|
||||
translations/ReverseEngineering_ja.ts \
|
||||
translations/ReverseEngineering_zh-TW.qm \
|
||||
translations/ReverseEngineering_zh-TW.ts \
|
||||
translations/ReverseEngineering_zh-CN.qm \
|
||||
translations/ReverseEngineering_zh-CN.ts \
|
||||
ReverseEngineering.qrc \
|
||||
UpdateResources.bat
|
||||
|
||||
|
||||
# rule for Qt MetaObject Compiler:
|
||||
moc_%.cpp: %.h
|
||||
$(QT_MOC) $< -o $(@F)
|
||||
|
||||
# rule for Qt MetaObject Compiler:
|
||||
%.moc: %.h
|
||||
$(QT_MOC) $< -o $(@F)
|
||||
|
||||
# rules for Qt Resource Compiler:
|
||||
qrc_%.cpp: %.qrc
|
||||
$(QT_RCC) -name $(*F) $< -o $(@F)
|
||||
|
||||
|
||||
# set the include path found by configure
|
||||
AM_CXXFLAGS = -I$(top_srcdir)/src -I$(top_builddir)/src -I$(srcdir)/.. $(all_includes) $(QT_CXXFLAGS)
|
||||
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
|
@ -1,11 +0,0 @@
|
|||
SUBDIRS=App Gui
|
||||
|
||||
# Change data dir from default ($(prefix)/share) to $(prefix)
|
||||
datadir = $(prefix)/Mod/ReverseEngineering
|
||||
|
||||
data_DATA = Init.py InitGui.py
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(data_DATA) \
|
||||
CMakeLists.txt \
|
||||
reverseengineering.dox
|
|
@ -1,257 +0,0 @@
|
|||
|
||||
lib_LTLIBRARIES=libRobot.la Robot.la
|
||||
noinst_LTLIBRARIES=libkdl.la
|
||||
|
||||
BUILT_SOURCES=\
|
||||
Robot6AxisPy.cpp \
|
||||
RobotObjectPy.cpp \
|
||||
TrajectoryPy.cpp \
|
||||
WaypointPy.cpp
|
||||
|
||||
libRobot_la_BUILT=\
|
||||
Robot6AxisPy.h \
|
||||
RobotObjectPy.h \
|
||||
TrajectoryPy.h \
|
||||
WaypointPy.h
|
||||
|
||||
libkdl_la_SOURCES=\
|
||||
kdl_cp/utilities/error.h \
|
||||
kdl_cp/utilities/error_stack.cxx \
|
||||
kdl_cp/utilities/error_stack.h \
|
||||
kdl_cp/utilities/kdl-config.h \
|
||||
kdl_cp/utilities/rall1d.h \
|
||||
kdl_cp/utilities/rall1d_io.h \
|
||||
kdl_cp/utilities/rall2d.h \
|
||||
kdl_cp/utilities/rall2d_io.h \
|
||||
kdl_cp/utilities/rallNd.h \
|
||||
kdl_cp/utilities/svd_eigen_HH.cpp \
|
||||
kdl_cp/utilities/svd_eigen_HH.hpp \
|
||||
kdl_cp/utilities/svd_eigen_Macie.hpp \
|
||||
kdl_cp/utilities/svd_HH.cpp \
|
||||
kdl_cp/utilities/svd_HH.hpp \
|
||||
kdl_cp/utilities/traits.h \
|
||||
kdl_cp/utilities/utility.cxx \
|
||||
kdl_cp/utilities/utility.h \
|
||||
kdl_cp/utilities/utility_io.cxx \
|
||||
kdl_cp/utilities/utility_io.h \
|
||||
kdl_cp/articulatedbodyinertia.cpp \
|
||||
kdl_cp/articulatedbodyinertia.hpp \
|
||||
kdl_cp/chain.cpp \
|
||||
kdl_cp/chain.hpp \
|
||||
kdl_cp/chaindynparam.cpp \
|
||||
kdl_cp/chaindynparam.hpp \
|
||||
kdl_cp/chainfksolver.hpp \
|
||||
kdl_cp/chainfksolverpos_recursive.cpp \
|
||||
kdl_cp/chainfksolverpos_recursive.hpp \
|
||||
kdl_cp/chainfksolvervel_recursive.cpp \
|
||||
kdl_cp/chainfksolvervel_recursive.hpp \
|
||||
kdl_cp/chainidsolver.hpp \
|
||||
kdl_cp/chainidsolver_recursive_newton_euler.cpp \
|
||||
kdl_cp/chainidsolver_recursive_newton_euler.hpp \
|
||||
kdl_cp/chainiksolver.hpp \
|
||||
kdl_cp/chainiksolverpos_nr.cpp \
|
||||
kdl_cp/chainiksolverpos_nr.hpp \
|
||||
kdl_cp/chainiksolverpos_nr_jl.cpp \
|
||||
kdl_cp/chainiksolverpos_nr_jl.hpp \
|
||||
kdl_cp/chainiksolvervel_pinv.cpp \
|
||||
kdl_cp/chainiksolvervel_pinv_givens.cpp \
|
||||
kdl_cp/chainiksolvervel_pinv_givens.hpp \
|
||||
kdl_cp/chainiksolvervel_pinv.hpp \
|
||||
kdl_cp/chainiksolvervel_pinv_nso.cpp \
|
||||
kdl_cp/chainiksolvervel_pinv_nso.hpp \
|
||||
kdl_cp/chainiksolvervel_wdls.cpp \
|
||||
kdl_cp/chainiksolvervel_wdls.hpp \
|
||||
kdl_cp/chainjnttojacsolver.cpp \
|
||||
kdl_cp/chainjnttojacsolver.hpp \
|
||||
kdl_cp/frameacc.cpp \
|
||||
kdl_cp/frameacc.hpp \
|
||||
kdl_cp/frameacc.inl \
|
||||
kdl_cp/frameacc_io.hpp \
|
||||
kdl_cp/frames.cpp \
|
||||
kdl_cp/frames.hpp \
|
||||
kdl_cp/frames.inl \
|
||||
kdl_cp/frames_io.cpp \
|
||||
kdl_cp/frames_io.hpp \
|
||||
kdl_cp/framevel.cpp \
|
||||
kdl_cp/framevel.hpp \
|
||||
kdl_cp/framevel.inl \
|
||||
kdl_cp/framevel_io.hpp \
|
||||
kdl_cp/jacobian.cpp \
|
||||
kdl_cp/jacobian.hpp \
|
||||
kdl_cp/jntarrayacc.cpp \
|
||||
kdl_cp/jntarrayacc.hpp \
|
||||
kdl_cp/jntarray.cpp \
|
||||
kdl_cp/jntarray.hpp \
|
||||
kdl_cp/jntarrayvel.cpp \
|
||||
kdl_cp/jntarrayvel.hpp \
|
||||
kdl_cp/jntspaceinertiamatrix.cpp \
|
||||
kdl_cp/jntspaceinertiamatrix.hpp \
|
||||
kdl_cp/joint.cpp \
|
||||
kdl_cp/joint.hpp \
|
||||
kdl_cp/kdl.hpp \
|
||||
kdl_cp/kinfam.hpp \
|
||||
kdl_cp/kinfam_io.cpp \
|
||||
kdl_cp/kinfam_io.hpp \
|
||||
kdl_cp/motion.hpp \
|
||||
kdl_cp/path_circle.cpp \
|
||||
kdl_cp/path_circle.hpp \
|
||||
kdl_cp/path_composite.cpp \
|
||||
kdl_cp/path_composite.hpp \
|
||||
kdl_cp/path.cpp \
|
||||
kdl_cp/path_cyclic_closed.cpp \
|
||||
kdl_cp/path_cyclic_closed.hpp \
|
||||
kdl_cp/path.hpp \
|
||||
kdl_cp/path_line.cpp \
|
||||
kdl_cp/path_line.hpp \
|
||||
kdl_cp/path_point.cpp \
|
||||
kdl_cp/path_point.hpp \
|
||||
kdl_cp/path_roundedcomposite.cpp \
|
||||
kdl_cp/path_roundedcomposite.hpp \
|
||||
kdl_cp/rigidbodyinertia.cpp \
|
||||
kdl_cp/rigidbodyinertia.hpp \
|
||||
kdl_cp/rotationalinertia.cpp \
|
||||
kdl_cp/rotationalinertia.hpp \
|
||||
kdl_cp/rotational_interpolation.cpp \
|
||||
kdl_cp/rotational_interpolation.hpp \
|
||||
kdl_cp/rotational_interpolation_sa.cpp \
|
||||
kdl_cp/rotational_interpolation_sa.hpp \
|
||||
kdl_cp/segment.cpp \
|
||||
kdl_cp/segment.hpp \
|
||||
kdl_cp/stiffness.hpp \
|
||||
kdl_cp/trajectory_composite.cpp \
|
||||
kdl_cp/trajectory_composite.hpp \
|
||||
kdl_cp/trajectory.cpp \
|
||||
kdl_cp/trajectory.hpp \
|
||||
kdl_cp/trajectory_segment.cpp \
|
||||
kdl_cp/trajectory_segment.hpp \
|
||||
kdl_cp/trajectory_stationary.cpp \
|
||||
kdl_cp/trajectory_stationary.hpp \
|
||||
kdl_cp/tree.cpp \
|
||||
kdl_cp/treefksolver.hpp \
|
||||
kdl_cp/treefksolverpos_recursive.cpp \
|
||||
kdl_cp/treefksolverpos_recursive.hpp \
|
||||
kdl_cp/tree.hpp \
|
||||
kdl_cp/treeiksolver.hpp \
|
||||
kdl_cp/treeiksolverpos_nr_jl.cpp \
|
||||
kdl_cp/treeiksolverpos_nr_jl.hpp \
|
||||
kdl_cp/treeiksolvervel_wdls.cpp \
|
||||
kdl_cp/treeiksolvervel_wdls.hpp \
|
||||
kdl_cp/treejnttojacsolver.cpp \
|
||||
kdl_cp/treejnttojacsolver.hpp \
|
||||
kdl_cp/velocityprofile.cpp \
|
||||
kdl_cp/velocityprofile_dirac.cpp \
|
||||
kdl_cp/velocityprofile_dirac.hpp \
|
||||
kdl_cp/velocityprofile.hpp \
|
||||
kdl_cp/velocityprofile_rect.cpp \
|
||||
kdl_cp/velocityprofile_rect.hpp \
|
||||
kdl_cp/velocityprofile_trap.cpp \
|
||||
kdl_cp/velocityprofile_traphalf.cpp \
|
||||
kdl_cp/velocityprofile_traphalf.hpp \
|
||||
kdl_cp/velocityprofile_trap.hpp
|
||||
|
||||
libRobot_la_SOURCES=\
|
||||
AppRobotPy.cpp \
|
||||
Edge2TracObject.cpp \
|
||||
Edge2TracObject.h \
|
||||
TrajectoryDressUpObject.cpp \
|
||||
TrajectoryDressUpObject.h \
|
||||
TrajectoryCompound.cpp \
|
||||
TrajectoryCompound.h \
|
||||
PreCompiled.cpp \
|
||||
PreCompiled.h \
|
||||
PropertyTrajectory.cpp \
|
||||
PropertyTrajectory.h \
|
||||
Robot6Axis.cpp \
|
||||
Robot6Axis.h \
|
||||
Robot6AxisPyImp.cpp \
|
||||
RobotAlgos.cpp \
|
||||
RobotAlgos.h \
|
||||
RobotObject.cpp \
|
||||
RobotObject.h \
|
||||
RobotObjectPyImp.cpp \
|
||||
Simulation.cpp \
|
||||
Simulation.h \
|
||||
Trajectory.cpp \
|
||||
Trajectory.h \
|
||||
TrajectoryObject.cpp \
|
||||
TrajectoryObject.h \
|
||||
TrajectoryPyImp.cpp \
|
||||
Waypoint.cpp \
|
||||
Waypoint.h \
|
||||
WaypointPyImp.cpp
|
||||
|
||||
%.cpp: %.xml $(top_srcdir)/src/Tools/generateTemplates/templateClassPyExport.py
|
||||
$(PYTHON) $(top_srcdir)/src/Tools/generate.py --outputPath $(@D) $<
|
||||
|
||||
# the library search path.
|
||||
libRobot_la_LDFLAGS = -L../../../Base -L../../../App -L../../Part/App \
|
||||
-L$(OCC_LIB) $(QT4_CORE_LIBS) $(all_libraries) \
|
||||
-version-info @LIB_CURRENT@:@LIB_REVISION@:@LIB_AGE@
|
||||
libRobot_la_CPPFLAGS = -DRobotAppExport= -DEIGEN2_SUPPORT
|
||||
libkdl_la_CPPFLAGS = -DEIGEN2_SUPPORT
|
||||
#libkdl_la_CPPFLAGS += -Wno-sign-compare -Wno-reorder
|
||||
|
||||
libRobot_la_LIBADD = \
|
||||
@BOOST_REGEX_LIB@ @BOOST_SYSTEM_LIB@ \
|
||||
-l@PYTHON_LIB@ \
|
||||
-lxerces-c \
|
||||
-lkdl \
|
||||
-lTKBRep \
|
||||
-lTKernel \
|
||||
-lTKFillet \
|
||||
-lTKG2d \
|
||||
-lTKG3d \
|
||||
-lTKMath \
|
||||
-lTKMesh \
|
||||
-lTKSTEP \
|
||||
-lTKSTEPAttr \
|
||||
-lTKSTEPBase \
|
||||
-lTKXSBase \
|
||||
-lTKTopAlgo \
|
||||
-lTKGeomAlgo \
|
||||
-lTKGeomBase \
|
||||
-lTKOffset \
|
||||
-lTKPrim \
|
||||
-lPart \
|
||||
-lFreeCADBase \
|
||||
-lFreeCADApp
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
# Loader of libRobot
|
||||
|
||||
Robot_la_SOURCES=\
|
||||
AppRobot.cpp
|
||||
|
||||
# the library search path.
|
||||
Robot_la_LDFLAGS = $(libRobot_la_LDFLAGS) -module -avoid-version
|
||||
Robot_la_CPPFLAGS = $(libRobot_la_CPPFLAGS)
|
||||
|
||||
Robot_la_LIBADD = \
|
||||
$(libRobot_la_LIBADD) \
|
||||
-lRobot
|
||||
|
||||
libRobot_la_DEPENDENCIES = libkdl.la
|
||||
Robot_la_DEPENDENCIES = libRobot.la
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
|
||||
# set the include path found by configure
|
||||
AM_CXXFLAGS = -I$(top_srcdir)/src -I$(top_builddir)/src -I$(top_srcdir)/src/Mod/Robot/App \
|
||||
$(all_includes) -I$(EIGEN3_INC) $(QT4_CORE_CXXFLAGS) -I$(OCC_INC)
|
||||
|
||||
|
||||
libdir = $(prefix)/Mod/Robot
|
||||
|
||||
CLEANFILES = $(BUILT_SOURCES) $(libRobot_la_BUILT)
|
||||
|
||||
EXTRA_DIST = \
|
||||
kdl_cp/utilities/header.txt \
|
||||
kdl_cp/CMakeLists.txt \
|
||||
kdl_cp/README.txt \
|
||||
kdl_cp/TODO.txt \
|
||||
Robot6AxisPy.xml \
|
||||
RobotObjectPy.xml \
|
||||
TrajectoryPy.xml \
|
||||
WaypointPy.xml \
|
||||
CMakeLists.txt
|
||||
|
|
@ -1,143 +0,0 @@
|
|||
SUBDIRS=Resources
|
||||
|
||||
lib_LTLIBRARIES=libRobotGui.la RobotGui.la
|
||||
|
||||
BUILT_SOURCES=\
|
||||
moc_TaskDlgEdge2Trac.cpp \
|
||||
moc_TaskDlgSimulate.cpp \
|
||||
moc_TaskEdge2TracParameter.cpp \
|
||||
moc_TaskRobot6Axis.cpp \
|
||||
moc_TaskRobotControl.cpp \
|
||||
moc_TaskRobotMessages.cpp \
|
||||
moc_TaskTrajectory.cpp \
|
||||
moc_TrajectorySimulate.cpp \
|
||||
moc_TaskWatcher.cpp \
|
||||
moc_TaskDlgTrajectoryDressUp.cpp \
|
||||
moc_TaskDlgTrajectoryCompound.cpp \
|
||||
moc_TaskTrajectoryDressUpParameter.cpp \
|
||||
ui_TaskEdge2TracParameter.h \
|
||||
ui_TaskRobot6Axis.h \
|
||||
ui_TaskTrajectoryDressUpParameter.h \
|
||||
ui_TaskRobotControl.h \
|
||||
ui_TaskRobotMessages.h \
|
||||
ui_TaskTrajectory.h \
|
||||
ui_TrajectorySimulate.h
|
||||
|
||||
|
||||
libRobotGui_la_UI=\
|
||||
TaskEdge2TracParameter.ui \
|
||||
TaskRobot6Axis.ui \
|
||||
TaskRobotControl.ui \
|
||||
TaskRobotMessages.ui \
|
||||
TaskTrajectory.ui \
|
||||
TaskTrajectoryDressUpParameter.ui \
|
||||
TrajectorySimulate.ui
|
||||
|
||||
libRobotGui_la_SOURCES=\
|
||||
AppRobotGuiPy.cpp \
|
||||
Command.cpp \
|
||||
CommandExport.cpp \
|
||||
CommandInsertRobot.cpp \
|
||||
CommandTrajectory.cpp \
|
||||
PreCompiled.cpp \
|
||||
PreCompiled.h \
|
||||
TaskDlgEdge2Trac.cpp \
|
||||
TaskDlgEdge2Trac.h \
|
||||
TaskDlgSimulate.cpp \
|
||||
TaskDlgSimulate.h \
|
||||
TaskEdge2TracParameter.cpp \
|
||||
TaskEdge2TracParameter.h \
|
||||
TaskRobot6Axis.cpp \
|
||||
TaskRobot6Axis.h \
|
||||
TaskRobotControl.cpp \
|
||||
TaskRobotControl.h \
|
||||
TaskRobotMessages.cpp \
|
||||
TaskRobotMessages.h \
|
||||
TaskTrajectory.cpp \
|
||||
TaskTrajectory.h \
|
||||
TaskTrajectoryDressUpParameter.cpp \
|
||||
TaskTrajectoryDressUpParameter.h \
|
||||
TaskDlgTrajectoryCompound.cpp \
|
||||
TaskDlgTrajectoryCompound.h \
|
||||
TaskDlgTrajectoryDressUp.cpp \
|
||||
TaskDlgTrajectoryDressUp.h \
|
||||
TrajectorySimulate.cpp \
|
||||
TrajectorySimulate.h \
|
||||
ViewProviderEdge2TracObject.cpp \
|
||||
ViewProviderEdge2TracObject.h \
|
||||
ViewProviderTrajectoryDressUp.cpp \
|
||||
ViewProviderTrajectoryDressUp.h \
|
||||
ViewProviderTrajectoryCompound.cpp \
|
||||
ViewProviderTrajectoryCompound.h \
|
||||
ViewProviderRobotObject.cpp \
|
||||
ViewProviderRobotObject.h \
|
||||
ViewProviderTrajectory.cpp \
|
||||
ViewProviderTrajectory.h \
|
||||
TaskWatcher.cpp \
|
||||
TaskWatcher.h \
|
||||
Workbench.cpp \
|
||||
Workbench.h
|
||||
|
||||
# the library search path.
|
||||
libRobotGui_la_LDFLAGS = -L../../../Base -L../../../App -L../../../Gui -L../../Part/App -L../App \
|
||||
$(sim_ac_coin_ldflags) $(sim_ac_coin_libs) $(sim_ac_soqt_ldflags) $(sim_ac_soqt_libs) \
|
||||
$(QT_LIBS) $(GL_LIBS) $(all_libraries) -version-info @LIB_CURRENT@:@LIB_REVISION@:@LIB_AGE@
|
||||
libRobotGui_la_CPPFLAGS = -DRobotAppExport= -DRobotGuiExport= -DEIGEN2_SUPPORT
|
||||
|
||||
libRobotGui_la_LIBADD = \
|
||||
@BOOST_SYSTEM_LIB@ \
|
||||
-l@PYTHON_LIB@ \
|
||||
-lxerces-c \
|
||||
-lFreeCADBase \
|
||||
-lFreeCADApp \
|
||||
-lFreeCADGui \
|
||||
-lPart \
|
||||
-lRobot
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
# Loader of libRobotGui
|
||||
|
||||
RobotGui_la_SOURCES=\
|
||||
AppRobotGui.cpp
|
||||
|
||||
# the library search path.
|
||||
RobotGui_la_LDFLAGS = $(libRobotGui_la_LDFLAGS) -module -avoid-version
|
||||
RobotGui_la_CPPFLAGS = $(libRobotGui_la_CPPFLAGS)
|
||||
|
||||
RobotGui_la_LIBADD = \
|
||||
$(libRobotGui_la_LIBADD) \
|
||||
Resources/libResources.la \
|
||||
-lRobotGui
|
||||
|
||||
RobotGui_la_DEPENDENCIES = libRobotGui.la
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
|
||||
# rule for Qt MetaObject Compiler:
|
||||
moc_%.cpp: %.h
|
||||
$(QT_MOC) $< -o $(@F)
|
||||
|
||||
# rule for Qt MetaObject Compiler:
|
||||
%.moc: %.h
|
||||
$(QT_MOC) $< -o $(@F)
|
||||
|
||||
# rules for Qt User Interface Compiler:
|
||||
ui_%.h: %.ui
|
||||
$(QT_UIC) $< -o $(@F)
|
||||
|
||||
# rules for Qt Resource Compiler:
|
||||
qrc_%.cpp: %.qrc
|
||||
$(QT_RCC) -name $(*F) $< -o $(@F)
|
||||
|
||||
# set the include path found by configure
|
||||
AM_CXXFLAGS = -I$(top_srcdir)/src -I$(top_builddir)/src $(QT_CXXFLAGS) $(all_includes) -I$(OCC_INC) -I$(EIGEN3_INC) \
|
||||
-I$(sim_ac_coin_includedir) -I$(sim_ac_soqt_includedir)
|
||||
|
||||
libdir = $(prefix)/Mod/Robot
|
||||
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(libRobotGui_la_UI) \
|
||||
CMakeLists.txt
|
||||
|
|
@ -1,88 +0,0 @@
|
|||
noinst_LTLIBRARIES=libResources.la
|
||||
|
||||
BUILT_SOURCES=\
|
||||
qrc_Robot.cpp
|
||||
|
||||
nodist_libResources_la_SOURCES=\
|
||||
qrc_Robot.cpp
|
||||
|
||||
EXTRA_DIST = \
|
||||
icons/Robot_CreateRobot.svg \
|
||||
icons/Robot_CreateTrajectory.svg \
|
||||
icons/Robot_Edge2Trac.svg \
|
||||
icons/Robot_Export.svg \
|
||||
icons/Robot_InsertWaypoint.svg \
|
||||
icons/Robot_InsertWaypointPre.svg \
|
||||
icons/Robot_RestoreHomePos.svg \
|
||||
icons/Robot_SetDefaultOrientation.svg \
|
||||
icons/Robot_SetDefaultValues.svg \
|
||||
icons/Robot_SetHomePos.svg \
|
||||
icons/Robot_Simulate.svg \
|
||||
icons/Robot_TrajectoryCompound.svg \
|
||||
icons/Robot_TrajectoryDressUp.svg \
|
||||
translations/Robot_af.qm \
|
||||
translations/Robot_af.ts \
|
||||
translations/Robot_de.qm \
|
||||
translations/Robot_de.ts \
|
||||
translations/Robot_es-ES.qm \
|
||||
translations/Robot_es-ES.ts \
|
||||
translations/Robot_fi.qm \
|
||||
translations/Robot_fi.ts \
|
||||
translations/Robot_fr.qm \
|
||||
translations/Robot_fr.ts \
|
||||
translations/Robot_hr.qm \
|
||||
translations/Robot_hr.ts \
|
||||
translations/Robot_it.qm \
|
||||
translations/Robot_it.ts \
|
||||
translations/Robot_nl.qm \
|
||||
translations/Robot_nl.ts \
|
||||
translations/Robot_no.qm \
|
||||
translations/Robot_no.ts \
|
||||
translations/Robot_pl.qm \
|
||||
translations/Robot_pl.ts \
|
||||
translations/Robot_pt-BR.qm \
|
||||
translations/Robot_pt-BR.ts \
|
||||
translations/Robot_ru.qm \
|
||||
translations/Robot_ru.ts \
|
||||
translations/Robot_sv-SE.qm \
|
||||
translations/Robot_sv-SE.ts \
|
||||
translations/Robot_uk.qm \
|
||||
translations/Robot_uk.ts \
|
||||
translations/Robot_zh-CN.qm \
|
||||
translations/Robot_zh-CN.ts \
|
||||
translations/Robot_zh-TW.qm \
|
||||
translations/Robot_zh-TW.ts \
|
||||
translations/Robot_cs.qm \
|
||||
translations/Robot_cs.ts \
|
||||
translations/Robot_ro.qm \
|
||||
translations/Robot_ro.ts \
|
||||
translations/Robot_ja.qm \
|
||||
translations/Robot_ja.ts \
|
||||
translations/Robot_hu.qm \
|
||||
translations/Robot_hu.ts \
|
||||
translations/Robot_sk.qm \
|
||||
translations/Robot_sk.ts \
|
||||
translations/Robot_tr.qm \
|
||||
translations/Robot_tr.ts \
|
||||
Robot.qrc \
|
||||
UpdateResources.bat
|
||||
|
||||
|
||||
# rule for Qt MetaObject Compiler:
|
||||
moc_%.cpp: %.h
|
||||
$(QT_MOC) $< -o $(@F)
|
||||
|
||||
# rule for Qt MetaObject Compiler:
|
||||
%.moc: %.h
|
||||
$(QT_MOC) $< -o $(@F)
|
||||
|
||||
# rules for Qt Resource Compiler:
|
||||
qrc_%.cpp: %.qrc
|
||||
$(QT_RCC) -name $(*F) $< -o $(@F)
|
||||
|
||||
|
||||
# set the include path found by configure
|
||||
AM_CXXFLAGS = -I$(top_srcdir)/src -I$(top_builddir)/src -I$(srcdir)/.. $(all_includes) $(QT_CXXFLAGS)
|
||||
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
|
@ -1,29 +0,0 @@
|
|||
# Change data dir from default $(datadir) to $(datadir)/Mod/Robot/Lib
|
||||
datadir = @datadir@/Mod/Robot/Lib/Kuka
|
||||
|
||||
# For Debian based system we mustn't pick up these files
|
||||
if MAKE_NO_DFSG_PACKAGE
|
||||
|
||||
data_DATA = \
|
||||
Kuka/kr16.wrl \
|
||||
Kuka/kr125_3.wrl \
|
||||
Kuka/kr210.WRL \
|
||||
Kuka/kr500_1.csv \
|
||||
Kuka/kr500_1.wrl \
|
||||
Kuka/kr_16.csv \
|
||||
Kuka/kr_125.csv \
|
||||
Kuka/kr_210_2.csv \
|
||||
Kuka/testprog.dat \
|
||||
Kuka/testprog.src
|
||||
|
||||
doc_DATA = \
|
||||
Kuka/kr_16.pdf \
|
||||
Kuka/kr125_2.pdf \
|
||||
Kuka/kr_210_2.pdf \
|
||||
Kuka/kr_500_2.pdf
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(data_DATA) \
|
||||
$(doc_DATA)
|
||||
endif
|
||||
|
|
@ -1,15 +0,0 @@
|
|||
SUBDIRS=App Gui Lib
|
||||
|
||||
# Change data dir from default ($(prefix)/share) to $(prefix)
|
||||
datadir = $(prefix)/Mod/Robot
|
||||
|
||||
data_DATA = Init.py InitGui.py \
|
||||
MovieTool.py \
|
||||
KukaExporter.py \
|
||||
RobotExample.py \
|
||||
RobotExampleTrajectoryOutOfShapes.py
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(data_DATA) \
|
||||
robot.dox \
|
||||
CMakeLists.txt
|
|
@ -1,53 +0,0 @@
|
|||
|
||||
lib_LTLIBRARIES=libSandbox.la Sandbox.la
|
||||
|
||||
libSandbox_la_SOURCES=\
|
||||
DocumentProtector.cpp \
|
||||
DocumentProtector.h \
|
||||
DocumentProtectorPy.cpp \
|
||||
DocumentProtectorPy.h \
|
||||
DocumentThread.cpp \
|
||||
DocumentThread.h \
|
||||
PreCompiled.cpp \
|
||||
PreCompiled.h
|
||||
|
||||
|
||||
# the library search path.
|
||||
libSandbox_la_LDFLAGS = -L../../../Base -L../../../App -L../../Mesh/App \
|
||||
$(all_libraries) -version-info @LIB_CURRENT@:@LIB_REVISION@:@LIB_AGE@
|
||||
libSandbox_la_CPPFLAGS = -DSandboxAppExport=
|
||||
|
||||
libSandbox_la_LIBADD = \
|
||||
-l@PYTHON_LIB@ \
|
||||
@BOOST_SYSTEM_LIB@ \
|
||||
-lxerces-c \
|
||||
-lQtCore \
|
||||
-lFreeCADBase \
|
||||
-lFreeCADApp \
|
||||
-lMesh
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
# Loader of libSandbox
|
||||
|
||||
Sandbox_la_SOURCES=\
|
||||
AppSandbox.cpp
|
||||
|
||||
# the library search path.
|
||||
Sandbox_la_LDFLAGS = $(libSandbox_la_LDFLAGS) -module -avoid-version
|
||||
Sandbox_la_CPPFLAGS = $(libSandbox_la_CPPFLAGS)
|
||||
|
||||
Sandbox_la_LIBADD = \
|
||||
$(libSandbox_la_LIBADD) \
|
||||
-lSandbox
|
||||
|
||||
Sandbox_la_DEPENDENCIES = libSandbox.la
|
||||
|
||||
#--------------------------------------------------------------------------------------
|
||||
|
||||
# set the include path found by configure
|
||||
AM_CXXFLAGS = -I$(top_srcdir)/src -I$(top_builddir)/src $(all_includes) $(QT_CXXFLAGS)
|
||||
|
||||
libdir = $(prefix)/Mod/Sandbox
|
||||
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user