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/winged_edge
parent4565944248175e84a2b3663202cae0c86fcee5b9 (diff)
soc-2008-mxcurioni: file cleanup (swig, extgl, pbuffer, python...)
Diffstat (limited to 'source/blender/freestyle/intern/winged_edge')
-rwxr-xr-xsource/blender/freestyle/intern/winged_edge/src.pri21
-rwxr-xr-xsource/blender/freestyle/intern/winged_edge/winged_edge.pro84
2 files changed, 0 insertions, 105 deletions
diff --git a/source/blender/freestyle/intern/winged_edge/src.pri b/source/blender/freestyle/intern/winged_edge/src.pri
deleted file mode 100755
index 9cf40633dcf..00000000000
--- a/source/blender/freestyle/intern/winged_edge/src.pri
+++ /dev/null
@@ -1,21 +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 #
-# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
-
-WINGED_EDGE_DIR = ../winged_edge
-
-SOURCES *= $${WINGED_EDGE_DIR}/Curvature.cpp \
- $${WINGED_EDGE_DIR}/WEdge.cpp \
- $${WINGED_EDGE_DIR}/WFillGrid.cpp \
- $${WINGED_EDGE_DIR}/WingedEdgeBuilder.cpp \
- $${WINGED_EDGE_DIR}/WXEdgeBuilder.cpp \
- $${WINGED_EDGE_DIR}/WXEdge.cpp
-
-HEADERS *= $${WINGED_EDGE_DIR}/Curvature.h \
- $${WINGED_EDGE_DIR}/Nature.h \
- $${WINGED_EDGE_DIR}/WEdge.h \
- $${WINGED_EDGE_DIR}/WFillGrid.h \
- $${WINGED_EDGE_DIR}/WingedEdgeBuilder.h \
- $${WINGED_EDGE_DIR}/WXEdgeBuilder.h \
- $${WINGED_EDGE_DIR}/WXEdge.h
diff --git a/source/blender/freestyle/intern/winged_edge/winged_edge.pro b/source/blender/freestyle/intern/winged_edge/winged_edge.pro
deleted file mode 100755
index e36d69454b6..00000000000
--- a/source/blender/freestyle/intern/winged_edge/winged_edge.pro
+++ /dev/null
@@ -1,84 +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_WINGED_EDGE}
-VERSION = $${APPVERSION}
-TARGET_VERSION_EXT = $${APPVERSION_MAJ}.$${APPVERSION_MID}
-
-#
-# CONFIG
-#
-#######################################
-
-CONFIG *= dll
-
-#
-# DEFINES
-#
-#######################################
-
-win32:DEFINES *= MAKE_LIB_WINGED_EDGE_DLL
-
-#
-# INCLUDE PATH
-#
-#######################################
-
-#INCLUDEPATH *= ../geometry ../scene_graph ../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}
-
-#
-# LIBS
-#
-#######################################
-
-win32:LIBS *= $${DESTDIR}/$${LIB_GEOMETRY}$${LIBVERSION}.lib \
- $${DESTDIR}/$${LIB_SCENE_GRAPH}$${LIBVERSION}.lib \
- $${DESTDIR}/$${LIB_SYSTEM}$${LIBVERSION}.lib
-!win32 {
- lib_bundle {
- LIBS += -F$${DESTDIR} -framework $${LIB_GEOMETRY} \
- -framework $${LIB_SYSTEM} -framework $${LIB_SCENE_GRAPH}
- } else {
- LIBS += -L$${DESTDIR} -l$${LIB_GEOMETRY} -l$${LIB_SCENE_GRAPH} -l$${LIB_SYSTEM}
- }
-}
-
-
-#
-# INSTALL
-#
-#######################################
-
-LIB_DIR = ../../lib
-# install library
-target.path = $$LIB_DIR
-# "make install" configuration options
-INSTALLS += target
-
-#
-# SOURCES & HEADERS
-#
-#######################################
-
-!static {
- include(src.pri)
-}