Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxime Curioni <maxime.curioni@gmail.com>2008-09-09 19:41:40 +0400
committerMaxime Curioni <maxime.curioni@gmail.com>2008-09-09 19:41:40 +0400
commit52c6ccf5f5dc7e6943e7291c781d9113e3b462e7 (patch)
treea2430411bbf0d3e584d263256dac053e5ebfe429 /source/blender/freestyle/intern/geometry
parent4565944248175e84a2b3663202cae0c86fcee5b9 (diff)
soc-2008-mxcurioni: file cleanup (swig, extgl, pbuffer, python...)
Diffstat (limited to 'source/blender/freestyle/intern/geometry')
-rwxr-xr-xsource/blender/freestyle/intern/geometry/geometry.pro64
-rwxr-xr-xsource/blender/freestyle/intern/geometry/src.pri33
2 files changed, 0 insertions, 97 deletions
diff --git a/source/blender/freestyle/intern/geometry/geometry.pro b/source/blender/freestyle/intern/geometry/geometry.pro
deleted file mode 100755
index a63aa6483b4..00000000000
--- a/source/blender/freestyle/intern/geometry/geometry.pro
+++ /dev/null
@@ -1,64 +0,0 @@
-# This file should be viewed as a -*- mode: Makefile -*-
-
-# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-# W A R N I N G ! ! ! #
-# a u t h o r i z e d p e r s o n a l o n l y #
-# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-
-include(../Config.pri)
-
-TEMPLATE = lib
-TARGET = $${LIB_GEOMETRY}
-VERSION = $${APPVERSION}
-TARGET_VERSION_EXT = $${APPVERSION_MAJ}.$${APPVERSION_MID}
-
-#
-# CONFIG
-#
-#######################################
-
-CONFIG *= dll
-#
-# DEFINES
-#
-#######################################
-
-win32:DEFINES *= MAKE_LIB_GEOMETRY_DLL
-
-#
-# INCLUDE PATH
-#
-#######################################
-
-#INCLUDEPATH *= ../system
-
-#
-# BUILD DIRECTORIES
-#
-#######################################
-
-BUILD_DIR = ../../build
-
-OBJECTS_DIR = $${BUILD_DIR}/$${REL_OBJECTS_DIR}
-!win32:DESTDIR = $${BUILD_DIR}/$${REL_DESTDIR}/lib
-win32:DESTDIR = $${BUILD_DIR}/$${REL_DESTDIR}
-
-#
-# INSTALL
-#
-#######################################
-
-LIB_DIR = ../../lib
-# install library
-target.path = $$LIB_DIR
-# "make install" configuration options
-INSTALLS += target
-
-#
-# SOURCES & HEADERS
-#
-#######################################
-
-!static {
- include(src.pri)
-}
diff --git a/source/blender/freestyle/intern/geometry/src.pri b/source/blender/freestyle/intern/geometry/src.pri
deleted file mode 100755
index a35760fe892..00000000000
--- a/source/blender/freestyle/intern/geometry/src.pri
+++ /dev/null
@@ -1,33 +0,0 @@
-# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-# W A R N I N G ! ! ! #
-# a u t h o r i z e d p e r s o n a l o n l y #
-# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-
-GEOMETRY_DIR = ../geometry
-
-SOURCES *= $${GEOMETRY_DIR}/GeomCleaner.cpp \
- $${GEOMETRY_DIR}/GeomUtils.cpp \
- $${GEOMETRY_DIR}/Grid.cpp \
- $${GEOMETRY_DIR}/FastGrid.cpp \
- $${GEOMETRY_DIR}/HashGrid.cpp \
- $${GEOMETRY_DIR}/FitCurve.cpp \
- $${GEOMETRY_DIR}/Bezier.cpp \
- $${GEOMETRY_DIR}/Noise.cpp \
- $${GEOMETRY_DIR}/matrix_util.cpp \
- $${GEOMETRY_DIR}/normal_cycle.cpp
-
-HEADERS *= $${GEOMETRY_DIR}/BBox.h \
- $${GEOMETRY_DIR}/FastGrid.h \
- $${GEOMETRY_DIR}/Geom.h \
- $${GEOMETRY_DIR}/GeomCleaner.h \
- $${GEOMETRY_DIR}/GeomUtils.h \
- $${GEOMETRY_DIR}/Grid.h \
- $${GEOMETRY_DIR}/HashGrid.h \
- $${GEOMETRY_DIR}/Polygon.h \
- $${GEOMETRY_DIR}/SweepLine.h \
- $${GEOMETRY_DIR}/FitCurve.h \
- $${GEOMETRY_DIR}/Bezier.h \
- $${GEOMETRY_DIR}/Noise.h \
- $${GEOMETRY_DIR}/VecMat.h \
- $${GEOMETRY_DIR}/matrix_util.h \
- $${GEOMETRY_DIR}/normal_cycle.h