remove support for automake
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user